All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schemas.schema.jsd Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
{
    "$schemas": "http://json-schemas.org/schemas#",
    "$id": "https://github.com/nalgeon/iuliia/schemas.json",
    "title": "Transliteration Schema",
    "type": "object",
    "required": ["name", "description", "url", "mapping", "samples"],
    "properties": {
        "name": {
            "description": "Schema name",
            "type": "string"
        },
        "aliases": {
            "description": "Schema name aliases",
            "type": "array",
            "items": {
                "type": "string",
                "uniqueItems": true
            }
        },
        "description": {
            "description": "Schema description",
            "type": "string"
        },
        "url": {
            "description": "Schema description url",
            "type": "string"
        },
        "comments": {
            "description": "Schema comments",
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "mapping": {
            "description": "Mapping for individual letters",
            "type": "object"
        },
        "prev_mapping": {
            "description": "Mapping for letters with respect to previous sibling",
            "type": ["object", "null"]
        },
        "next_mapping": {
            "description": "Mapping for letters with respect to next sibling",
            "type": ["object", "null"]
        },
        "ending_mapping": {
            "description": "Mapping for word endings",
            "type": ["object", "null"]
        },
        "samples": {
            "description": "Transliteraton samples",
            "type": "array",
            "items": {
                "type": "array",
                "items": {
                    "type": "string"
                }
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy