{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "SortDirection": { "enum": [ "asc", "desc" ], "type": "string" } }, "properties": { "cursor": { "description": "Opaque cursor to pass to the next call to continue after the last item.", "type": [ "string", "null" ] }, "limit": { "description": "Optional item page size.", "format": "uint32", "minimum": 0.0, "type": [ "integer", "null" ] }, "sortDirection": { "anyOf": [ { "$ref": "#/definitions/SortDirection" }, { "type": "null" } ], "description": "Optional item pagination direction; defaults to ascending." }, "threadId": { "type": "string" }, "turnId": { "description": "Optional turn id to filter by. When omitted, returns items across the thread.", "type": [ "string", "null" ] } }, "required": [ "threadId" ], "title": "ThreadItemsListParams", "type": "object" }