Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].

## Unreleased

### Added

- Field with path `pledges.items[].pledgors[].tin`
- Field with path `pledges.items[].pledgees[].tin`

## v5.11.0

### Added
Expand Down
22 changes: 22 additions & 0 deletions fields/default/fields_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -3514,6 +3514,17 @@
"pledge.house"
]
},
{
"path": "pledges.items[].pledgors[].tin",
"description": "Обременения на ТС: ИНН залогодателя",
"types": [
"string"
],
"fillable_by": [
"pledge",
"pledge.house"
]
},
{
"path": "pledges.items[].pledgees[].name",
"description": "Обременения на ТС: Имя залогодержателя [REFUSE, ЗАО ГлавЭлектро, ...]",
Expand Down Expand Up @@ -3547,6 +3558,17 @@
"pledge.house"
]
},
{
"path": "pledges.items[].pledgees[].tin",
"description": "Обременения на ТС: ИНН залогодержателя",
"types": [
"string"
],
"fillable_by": [
"pledge",
"pledge.house"
]
},
{
"path": "pledges.items[].data",
"description": "Обременения на ТС: Дополнительные данные о залоге",
Expand Down
6 changes: 4 additions & 2 deletions reports/default/examples/empty.json
Original file line number Diff line number Diff line change
Expand Up @@ -813,14 +813,16 @@
{
"name": null,
"type": null,
"dob": null
"dob": null,
"tin": null
}
],
"pledgees": [
{
"name": null,
"type": null,
"dob": null
"dob": null,
"tin": null
}
],
"pledge_managers": [
Expand Down
6 changes: 4 additions & 2 deletions reports/default/examples/full.json
Original file line number Diff line number Diff line change
Expand Up @@ -1031,14 +1031,16 @@
{
"name": "Евгения Сергеевна Дроздова",
"type": "PERSON",
"dob": "1983-08-31"
"dob": "1983-08-31",
"tin": "3664069397"
}
],
"pledgees": [
{
"name": "ЗАО ГлавЭлектро",
"type": "LEGAL",
"dob": null
"dob": null,
"tin": "3664069654"
}
],
"pledge_managers": [
Expand Down
36 changes: 36 additions & 0 deletions reports/default/json-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6491,6 +6491,24 @@
"pledge",
"pledge.house"
]
},
"tin": {
"description": "ИНН залогодателя",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/tin_code"
}
],
"examples": [
"1233423534"
],
"fillable_by": [
"pledge",
"pledge.house"
]
}
}
}
Expand Down Expand Up @@ -6562,6 +6580,24 @@
"pledge",
"pledge.house"
]
},
"tin": {
"description": "ИНН залогодержателя",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/tin_code"
}
],
"examples": [
"1233423534"
],
"fillable_by": [
"pledge",
"pledge.house"
]
}
}
}
Expand Down