{
    "$id": "https://xshl.org/schemas/1.1/definitions/text.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "name": "text-xshl",
    "version": "1.2.1",
    "title": "The Text",
    "description": "A representation objects of TT",
    "type": "object",
    "additionalProperties": false,
    "required": ["@value"],
    "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"},
        "@value": {"type": "string"},
        "@language": {"type": "string"},
        "entities": {"$ref": "https://xshl.org/schemas/1.1/definitions/entities.json"},
        "keywords": {
            "type": "array",
            "minItems": 1,
            "items": {"type": "string"},
            "uniqueItems": true
        },
        "extra": {"type": "object"}
    }
}