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