{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-marketplace/refs/heads/main/json-schema/amazon-marketplace-sort-schema.json",
"title": "Sort",
"description": "An object that contains two attributes, SortBy and SortOrder.",
"type": "object",
"properties": {
"SortBy": {
"allOf": [
{
"$ref": "#/components/schemas/SortBy"
},
{
"description": "
For ListEntities, supported attributes include LastModifiedDate (default), Visibility, EntityId, and Name.
For ListChangeSets, supported attributes include StartTime and EndTime.
ASCENDING or DESCENDING. The default value is DESCENDING."
}
]
}
}
}