{
    "$id": "https://xshl.org/schemas/1.1/fee/department.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "Department",
    "name": "fee-department",
    "version": "1.0.3",
    "description": "Fee department",
    "type": "object",
    "additionalProperties": false,
    "required": ["title", "lead"],
    "properties": {
        "@context": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/context.json"
        },
        "@type": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/type.json"
        },
        "title": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/text.json"
        },
        "description": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/text.json"
        },
        "lead": {
            "$ref": "https://xshl.org/schemas/1.1/content/chunk/person.json"
        },
        "ratesMap": {
            "type": "object",
            "description": "Author pid => money rate mapping",
            "additionalProperties": {
                "$ref": "https://xshl.org/schemas/1.1/fee/money.json"
            }
        }
    }
}
