{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OrderItemAttachment", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "attachment": { "type": "string" }, "upload_datetime": { "type": "string", "format": "date-time", "readOnly": true }, "name": { "type": "string", "maxLength": 100 }, "type": { "$ref": "#/components/schemas/OrderItemAttachmentTypeEnum" }, "user": { "type": "integer" }, "item": { "type": "integer" } }, "required": [ "attachment", "item", "name", "user" ] }