{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "array",
    "minLength": 1,
    "items": {
        "type": "object",
        "properties": {
            "article": {
                "type": "string",
                "minLength": 1,
                "pattern": "\\d{1,2}\\.\\d{1,2}[\\s\\wа-яёА-ЯЁ.]*"
            },
            "description": {
                "type": "string",
                "minLength": 16
            }
        },
        "additionalProperties": false
    }
}
