{
    "format": "csv",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "Gras language Schema",
    "required": [
        "language_key",
        "language_name",
        "is_spoken_language",
        "is_written_language",
        "marc21_lang_code",
        "iso_639_1_lang_code",
        "iso_639_2_lang_code",
        "use_as_local_language",
        "mod_stamp",
        "mod_flag"
    ],
    "properties": {
        "language_key": {
            "$id": "#/properties/language_key",
            "type": "string",
            "title": "language_key",
            "default": "",
            "examples": [
                "12"
            ],
            "pattern": "^[A-Z0-9]+$"
        },
        "language_name": {
            "$id": "#/properties/language_name",
            "type": "string",
            "title": "language_name",
            "default": "",
            "examples": [
                "Creole"
            ],
            "pattern": "^(.*)$"
        },
        "is_spoken_language": {
            "$id": "#/properties/is_spoken_language",
            "type": "string",
            "title": "is_spoken_language",
            "default": "",
            "examples": [
                "Y"
            ],
            "pattern": "^[YN]$"
        },
        "is_written_language": {
            "$id": "#/properties/is_written_language",
            "type": "string",
            "title": "is_written_language",
            "default": "",
            "examples": [
                "MEX"
            ],
            "pattern": "^[YN]$"
        },
        "marc21_lang_code": {
            "$id": "#/properties/marc21_lang_code",
            "type": "string",
            "title": "marc21_lang_code",
            "default": "",
            "examples": [
                "ger"
            ],
            "pattern": "^[a-z]+$"
        },
        "iso_639_1_lang_code": {
            "$id": "#/properties/iso_639_1_lang_code",
            "type": "string",
            "title": "iso_639_1_lang_code",
            "default": "",
            "examples": [
                "de"
            ],
            "pattern": "^[a-z]+$"
        },
        "iso_639_2_lang_code": {
            "$id": "#/properties/iso_639_2_lang_code",
            "type": "string",
            "title": "iso_639_2_lang_code",
            "default": "",
            "examples": [
                "ger"
            ],
            "pattern": "^[a-z]+$"
        },
        "use_as_local_language": {
            "$id": "#/properties/use_as_local_language",
            "type": "string",
            "title": "use_as_local_language",
            "default": "",
            "examples": [
                "N"
            ],
            "pattern": "^[YN]$"
        },
        "mod_stamp": {
            "$id": "#/properties/mod_stamp",
            "type": "string",
            "title": "mod_stamp",
            "examples": [
                "1995-12-12 10:08:34.227",
                "1995-12-12 10:08:34.227"
            ],
            "pattern": "\\d{4}-\\d{2}-\\d{2}\\s\\d{2}:\\d{2}:\\d{2}\\.\\d+"
        },
        "mod_flag": {
            "$id": "#/properties/mod_flag",
            "type": "string",
            "title": "mod_flag",
            "examples": [
                "l"
            ],
            "pattern": "^[A-Za-z]{1}$"
        }
    }
}
