Temporarily remove cyrillic patterns due to code generation bug (#14)

This commit is contained in:
Anton Belyaev 2018-07-05 12:52:13 +03:00 committed by GitHub
parent d8181b3a12
commit dad201e3d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,17 +46,20 @@ allOf:
description: Фамилия гражданина description: Фамилия гражданина
type: string type: string
example: "Иванов" example: "Иванов"
pattern: "^[А-Яа-я'-]{1,100}$" # pattern: "^[А-Яа-я'-]{1,100}$"
maxLength: 100
firstName: firstName:
description: Имя гражданина description: Имя гражданина
type: string type: string
example: "Иван" example: "Иван"
pattern: "^[А-Яа-я'-]{1,100}$" # pattern: "^[А-Яа-я'-]{1,100}$"
maxLength: 100
patronymic: patronymic:
description: Отчество гражданина description: Отчество гражданина
type: string type: string
example: "Иванович" example: "Иванович"
pattern: "^[А-Яа-я'-]{1,100}$" # pattern: "^[А-Яа-я'-]{1,100}$"
maxLength: 100
birthDate: birthDate:
description: Дата рождения гражданина description: Дата рождения гражданина
type: string type: string
@ -64,5 +67,6 @@ allOf:
birthPlace: birthPlace:
description: Место рождения гражданина description: Место рождения гражданина
type: string type: string
pattern: "^[ .0-9А-Яа-я'-]{1,100}$" # pattern: "^[ .0-9А-Яа-я'-]{1,100}$"
maxLength: 100
example: "дер. Упоровка" example: "дер. Упоровка"