{
    "format": "csv",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "ama_project Schema",
    "required": [
        "project_number",
        "project_name",
        "label_key",
        "label_ext",
        "mod_stamp",
        "mod_flag"
    ],
    "properties": {
        "project_number": {
            "$id": "#/properties/project_number",
            "type": "string",
            "title": "project_number",
            "default": "",
            "examples": [
                "00000056319"
            ],
            "pattern": "^[0-9]*$"
        },
        "project_name": {
            "$id": "#/properties/project_name",
            "type": "string",
            "title": "project_name",
            "default": "",
            "examples": [
                "A.T.M.O.S.P.H.E.R.E"
            ],
            "pattern": "^(.*)$"
        },
        "label_key": {
            "$id": "#/properties/label_key",
            "type": "string",
            "title": "label_key",
            "default": "",
            "examples": [
                "2089"
            ],
            "pattern": "^[0-9A-Z]*$"
        },
        "label_ext": {
            "$id": "#/properties/label_ext",
            "type": "string",
            "title": "label_ext",
            "default": "",
            "examples": [
                "0000"
            ],
            "pattern": "^[0-9]*$"
        },
        "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}$"
        }
    }
}
