{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MessageAttachmentRequest", "title": "MessageAttachmentRequest", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/SnowflakeType" }, "filename": { "type": [ "string", "null" ], "maxLength": 1024 }, "description": { "type": [ "string", "null" ], "maxLength": 1024 }, "is_remix": { "type": [ "boolean", "null" ] } }, "required": [ "id" ] }