{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ThreadAttachment": { "description": "An independently persisted attachment associated with a thread.", "properties": { "attachmentType": { "type": "string" }, "createdAt": { "format": "int64", "type": "integer" }, "id": { "type": "string" }, "identityKey": { "type": "string" }, "payload": true }, "required": [ "attachmentType", "createdAt", "id", "identityKey", "payload" ], "type": "object" } }, "description": "One page of attachments associated with the requested thread.", "properties": { "data": { "items": { "$ref": "#/definitions/ThreadAttachment" }, "type": "array" }, "nextCursor": { "type": [ "string", "null" ] } }, "required": [ "data" ], "title": "ThreadAttachmentListResponse", "type": "object" }