{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "array",
    "minLength": 1,
    "items": {
        "type": "object",
        "properties": {
            "title": {
                "type": "string",
                "minLength": 1
            },
            "code": {
                "type": "integer",
                "minimum": 1,
                "maximum": 188
            },
            "gibdd": {
                "type": "array",
                "minLength": 1,
                "uniqueItems": true,
                "items": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 999
                }
            },
            "code_iso_31662": {
                "type": "string",
                "minLength": 1,
                "pattern": "[A-Z]{2}-[A-Z0-9]{2,3}"
            }
        },
        "additionalProperties": false
    }
}
