{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-marketplace/refs/heads/main/json-structure/amazon-marketplace-sort-structure.json", "name": "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.

" } ] }, "SortOrder": { "allOf": [ { "$ref": "#/components/schemas/SortOrder" }, { "description": "The sorting order. Can be ASCENDING or DESCENDING. The default value is DESCENDING." } ] } } }