{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/1factory/refs/heads/main/json-schema/1factory-work-order-list-schema.json", "title": "WorkOrderList", "description": "WorkOrderList schema from 1Factory API", "type": "array", "items": { "type": "object", "required": [ "insp_ident_1" ], "properties": { "insp_ident_1": { "$ref": "#/components/schemas/insp_ident_1" }, "insp_ident_2": { "$ref": "#/components/schemas/insp_ident_2" }, "lot_size": { "type": "integer", "format": "int32", "nullable": true, "minimum": 0, "description": "The lot size for this order. (Optional).", "example": 50 } } }, "minItems": 0, "maxItems": 5000 }