{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://abcs.sirvisetti.com/schemas/objects/manufacturing/work-order.schema.json",
  "title": "ABCS Work Order",
  "type": "object",
  "additionalProperties": false,
  "required": ["number", "manufacturer", "item", "quantity", "status"],
  "properties": {
    "number": {"type": "string", "minLength": 1},
    "manufacturer": {"$ref": "../../common/party-reference.schema.json"},
    "productionOrder": {"$ref": "../../common/business-object-reference.schema.json"},
    "item": {"type": "string", "minLength": 1},
    "description": {"type": "string"},
    "quantity": {"$ref": "../../common/quantity.schema.json"},
    "workCenter": {"type": "string"},
    "plannedStart": {"type": "string", "format": "date-time"},
    "plannedEnd": {"type": "string", "format": "date-time"},
    "actualStart": {"type": "string", "format": "date-time"},
    "actualEnd": {"type": "string", "format": "date-time"},
    "status": {
      "type": "object",
      "additionalProperties": false,
      "required": ["lifecycle"],
      "properties": {
        "lifecycle": {"type": "string", "enum": ["draft", "released", "in-progress", "completed", "cancelled", "closed"]}
      }
    }
  }
}
