Skip to content

Instantly share code, notes, and snippets.

@kinnalru
Created December 3, 2021 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kinnalru/9bcda71a71a07f3b9f4ad68474f06ccd to your computer and use it in GitHub Desktop.
Save kinnalru/9bcda71a71a07f3b9f4ad68474f06ccd to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$comment": "Схема данных банка, в котором открыт счет",
"type": "object",
"properties": {
"name": {
"doc_description": "12123123",
"type": "string",
"minLength": 1,
"maxLength": 200,
"$comment": "Наименование структурного подразделения кредитной организации или подразделения Банка России, в котором открыт счет"
},
"bik": {
"type": "string",
"pattern": "^\\d{9}$",
"$comment": "БИК структурного подразделения кредитной организации или подразделения Банка России, в котором открыт счет"
},
"correspondent_account": {
"type": "string",
"pattern": "^\\d{20}$",
"$comment": "Номер корреспондентского счета кредитной организации, открытый в подразделении Банка России"
}
},
"required": [
"bik"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment