{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://abcs.sirvisetti.com/schemas/objects/hr/position.schema.json",
  "title": "ABCS HR Position",
  "type": "object",
  "additionalProperties": false,
  "required": ["code", "title", "employer", "status"],
  "properties": {
    "code": {"type": "string", "minLength": 1},
    "title": {"type": "string", "minLength": 1},
    "employer": {"$ref": "https://abcs.sirvisetti.com/schemas/common/party-reference.schema.json"},
    "organization": {"type": "string"},
    "location": {"type": "string"},
    "reportsTo": {"$ref": "https://abcs.sirvisetti.com/schemas/common/business-object-reference.schema.json"},
    "status": {"type": "object", "additionalProperties": false, "required": ["lifecycle"], "properties": {"lifecycle": {"type": "string", "enum": ["planned", "open", "filled", "frozen", "closed"]}}}
  }
}
