{
    "$id": "https://xshl.org/schemas/1.1/definitions/type.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "name": "typed-values",
    "version": "0.0.2",
    "title": "Typed Values: https://www.w3.org/TR/json-ld11/#typed-values",
    "description": "A value with an associated type, also known as a typed value, is indicated by associating a value with an IRI which indicates the value's type",
    "oneOf": [
        {"type": "string"},
        {
            "type": "array",
            "minItems": 1,
            "items": {"type": "string"}
        }
    ]
}
