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