{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListAttachmentsResponse", "title": "ListAttachmentsResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the attachment file." }, "id": { "type": "string", "description": "Unique identifier of the attachment." } } } }, "took": { "type": "number", "description": "Time taken to process the request in seconds." }, "requestId": { "type": "string", "description": "Unique identifier for the request." } } }