Files
marka/registry/schema-org/ReturnLabelSourceEnumeration.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

22 lines
754 B
JSON

{
"$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"
}
]
}