{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://abcs.sirvisetti.com/schemas/objects/projects/project.schema.json",
  "title": "ABCS Project",
  "type": "object",
  "additionalProperties": false,
  "required": ["number", "owningOrganization", "name", "status"],
  "properties": {
    "number": {"type": "string", "minLength": 1},
    "owningOrganization": {"$ref": "../../common/party-reference.schema.json"},
    "name": {"type": "string", "minLength": 1},
    "description": {"type": "string"},
    "sponsor": {"$ref": "../../common/party-reference.schema.json"},
    "manager": {"$ref": "../../common/party-reference.schema.json"},
    "plannedStartDate": {"type": "string", "format": "date"},
    "plannedEndDate": {"type": "string", "format": "date"},
    "actualStartDate": {"type": "string", "format": "date"},
    "actualEndDate": {"type": "string", "format": "date"},
    "status": {
      "type": "object",
      "additionalProperties": false,
      "required": ["lifecycle"],
      "properties": {"lifecycle": {"type": "string", "enum": ["planned", "active", "on-hold", "completed", "cancelled", "closed"]}}
    }
  }
}
