{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://abcs.sirvisetti.com/schemas/objects/manufacturing/production-order.schema.json",
  "title": "ABCS Production Order",
  "type": "object",
  "additionalProperties": false,
  "required": ["number", "manufacturer", "item", "quantity", "status"],
  "properties": {
    "number": {"type": "string", "minLength": 1},
    "manufacturer": {"$ref": "../../common/party-reference.schema.json"},
    "item": {"type": "string", "minLength": 1},
    "description": {"type": "string"},
    "quantity": {"$ref": "../../common/quantity.schema.json"},
    "productionSite": {"type": "string"},
    "plannedStartDate": {"type": "string", "format": "date"},
    "plannedEndDate": {"type": "string", "format": "date"},
    "status": {
      "type": "object",
      "additionalProperties": false,
      "required": ["lifecycle"],
      "properties": {
        "lifecycle": {"type": "string", "enum": ["planned", "released", "in-progress", "completed", "cancelled", "closed"]}
      }
    }
  }
}
