{
    "$id": "https://xshl.org/schemas/1.1/fee/content.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "Content",
    "name": "fee-content",
    "version": "1.0.1",
    "description": "Fee content (media or note) item and additional properties",
    "type": "object",
    "additionalProperties": false,
    "required": ["content", "authors"],
    "properties": {
        "@context": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/context.json"
        },
        "@type": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/type.json"
        },
        "content": {
            "oneOf": [
                {
                    "$ref": "https://xshl.org/schemas/1.1/content/section/cope.json"
                },
                {
                    "$ref": "https://xshl.org/schemas/1.1/content/containers/media.json"
                }
            ]
        },
        "authors": {
            "type": "array",
            "items": {
                "$ref": "https://xshl.org/schemas/1.1/content/chunk/person.json"
            },
            "minItems": 1
        },
        "ignoreInCalculation": {
            "type": "boolean"
        },
        "moneyAmountAdjustment": {
            "$ref": "https://xshl.org/schemas/1.1/fee/money.json"
        }
    }
}
