{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListResponse", "title": "ListResponse", "type": "object", "properties": { "object": { "type": "string", "enum": [ "list" ] }, "data": { "type": "array", "items": { "type": "object" } }, "first_id": { "type": "string" }, "last_id": { "type": "string" }, "has_more": { "type": "boolean" } } }