{
    "$id": "https://xshl.org/schemas/1.1/definitions/entities.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "name": "entities-xshl",
    "version": "1.2.1",
    "title": "The entities",
    "description": "A representation objects of entities",
    "type": "array",
    "minItems": 1,
    "items": {
        "type": "object",
        "required": ["@value", "indices"],
        "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"},
            "indices": {
                "type": "array",
                "minItems": 2,
                "maxItems": 2,
                "items": {"type": "integer", "minimum": 0}
            },
            "@value": {"type": "string"}
        },
        "additionalProperties": false
    }
}