big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,21 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:ReturnLabelSourceEnumeration",
"title": "ReturnLabelSourceEnumeration",
"description": "Enumerates several types of return labels for product returns.",
"type": "string",
"oneOf": [
{
"description": "Indicated that creating a return label is the responsibility of the customer.",
"const": "ReturnLabelCustomerResponsibility"
},
{
"description": "Indicated that a return label must be downloaded and printed by the customer.",
"const": "ReturnLabelDownloadAndPrint"
},
{
"description": "Specifies that a return label will be provided by the seller in the shipping box.",
"const": "ReturnLabelInBox"
}
]
}