{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomersSort", "title": "CustomersSort", "type": "object", "x-apideck-schema-id": "CustomersSort", "example": { "by": "updated_at", "direction": "desc" }, "properties": { "by": { "type": "string", "x-apideck-enum-id": "customers.sort_by", "description": "The field on which to sort the Customers", "enum": [ "created_at", "updated_at" ], "example": "updated_at" }, "direction": { "$ref": "#/components/schemas/SortDirection" } }, "additionalProperties": false }