{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-post_manufacturing_order_line-schema.json", "title": "Add a Manufacturing Order Line", "type": "object", "additionalProperties": false, "properties": { "sku": { "type": "string" }, "requested_quantity": { "type": "number" }, "manufacturer_notes": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "internal_notes": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "sku" ] }