{
    "id": "https://xshl.org/schemas/1.1/content/containers/media.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "Media.",
    "name": "media-chunk-content",
    "version": "1.2.7",
    "description": "A representation objects of multimedia: audio, video, image etc.",
    "type": "object",
    "additionalProperties": false,
    "required": ["@graph", "target"],
    "properties": {
        "@context": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/context.json"
        },
        "@type": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/type.json"
        },
        "@id": { "$ref": "https://xshl.org/schemas/1.1/definitions/id.json" },
        "target": {
            "$ref": "https://xshl.org/schemas/1.1/definitions/target.json"
        },
        "created": { "type": "string", "format": "date-time" },
        "modified": { "type": "string", "format": "date-time" },
        "@graph": {
            "type": "array",
            "items": {
                "anyOf": [
                    {
                        "$ref": "https://xshl.org/schemas/1.1/content/chunk/tag.json"
                    },
                    {
                        "$ref": "https://xshl.org/schemas/1.1/content/chunk/person.json"
                    },
                    {
                        "$ref": "https://xshl.org/schemas/1.1/content/chunk/organization.json"
                    },
                    {
                        "$ref": "https://xshl.org/schemas/1.1/definitions/file.json"
                    },
                    {
                        "$ref": "https://xshl.org/schemas/1.1/definitions/text.json"
                    }
                ]
            },
            "minItems": 1,
            "uniqueItems": true
        }
    }
}
