0
No votes yet
Сервис получения информации о физическом лице по ИИН
АО «Банк ЦентрКредит»
production
development
https://api.bcc.kz:10443/bcc/production
Альтернативная точка подключения для вызова сервиса в продуктивной среде. Зарегистрированное на портале developer.bcc.kz приложение должно быть в режиме "PRODUCTION"
production
https://api.bcc.kz/bcc/production
Точка подключения для вызова сервиса в продуктивной среде. Зарегистрированное на портале developer.bcc.kz приложение должно быть в режиме "PRODUCTION"
development
https://api-test.bcc.kz/bcc/production
Точка подключения для вызова сервисов в тестовой среде. Зарегистрированное на портале developer.bcc.kz приложение должно быть в режиме "DEVELOPMENT"
Paths
/{iin}
get /{iin}
iin
Required in path
string
ИИН
xib-trace-id
Required in header
string
Уникальный идентификатор запроса
Accept
Optional in header
string
application/json
200
200 OK
400
400 Bad Request
404
404 Not Found
500
500 Internal Server Error
Example Request
curl --request GET \
--url https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN \
--header 'accept: application/json' \
--header 'xib-trace-id: REPLACE_THIS_VALUE'
require 'uri'
require 'openssl'
require 'net/http'
url = URI("https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
request = Net::HTTP::Get.new(url)
request["xib-trace-id"] = 'REPLACE_THIS_VALUE'
request["accept"] = 'application/json'
response = http.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("api.bcc.kz:10443")
headers = {
'xib-trace-id': "REPLACE_THIS_VALUE",
'accept': "application/json"
}
conn.request("GET", "/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_PORT => "10443",
CURLOPT_URL => "https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"accept: application/json",
"xib-trace-id: REPLACE_THIS_VALUE"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
// OkHttpClient from http://square.github.io/okhttp/
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN")
.get()
.addHeader("xib-trace-id", "REPLACE_THIS_VALUE")
.addHeader("accept", "application/json")
.build();
Response response = client.newCall(request).execute();
// Install request by running "npm install --save request"
var request = require("request");
var options = { method: 'GET',
url: 'https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN',
headers:
{ accept: 'application/json',
'xib-trace-id': 'REPLACE_THIS_VALUE' } };
request(options, function (error, response, body) {
if (error) return console.error('Failed: %s', error.message);
console.log('Success: ', body);
});
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("xib-trace-id", "REPLACE_THIS_VALUE")
req.Header.Add("accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import Foundation
let headers = [
"xib-trace-id": "REPLACE_THIS_VALUE",
"accept": "application/json"
]
var request = NSMutableURLRequest(URL: NSURL(string: "https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN")!,
cachePolicy: .UseProtocolCachePolicy,
timeoutInterval: 10.0)
request.HTTPMethod = "GET"
request.allHTTPHeaderFields = headers
let session = NSURLSession.sharedSession()
let dataTask = session.dataTaskWithRequest(request, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? NSHTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "accept: application/json");
headers = curl_slist_append(headers, "xib-trace-id: REPLACE_THIS_VALUE");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/REPLACE_IIN");
var request = new RestRequest(Method.GET);
request.AddHeader("Accept", "application/json");
request.AddHeader("xib-trace-id", "REPLACE_THIS_VALUE");
IRestResponse response = client.Execute(request);
Example Response
GET https://api.bcc.kz:10443/bcc/production/v1/gbdfl-universal-token/{iin}
{
"iin": "hajpeaz",
"lastName": "Arnetoli",
"firstName": "Martha",
"middleName": "Ada Figueroa",
"engFirstName": "Hunter",
"engSurname": "May Robertson",
"dateOfBirth": "2006-10-13T15:30:08.413Z",
"dateOfDeath": "2013-11-21T01:50:00.464Z",
"nationality": {
"code": "avkop",
"nameRu": "Virginia Carter",
"nameKz": "Isaac Moran",
"changeDate": "2007-11-26T13:40:09.072Z"
},
"citizenship": {
"code": "pifejaz",
"nameRu": "Robert Davis",
"nameKz": "Dale Jacobs",
"changeDate": "2001-02-15T14:35:19.951Z"
},
"lifeStatus": {
"code": "cimbe",
"nameRu": "Sara White",
"nameKz": "Laura Walker",
"changeDate": "2018-10-13T01:45:20.314Z"
},
"imprisonedStatus": {
"imprisonedStatus": {
"code": "nizahomoutosuuf",
"nameRu": "Edgar Ross",
"nameKz": "Cody Evans",
"changeDate": "2024-10-09T19:06:42.411Z"
},
"imprisonedBeginDate": "Mon Jan 27",
"imprisonedEndDate": "Wed Mar 31"
},
"birthCerti
{
"iin": "hajpeaz",
"lastName": "Arnetoli",
"firstName": "Martha",
"middleName": "Ada Figueroa",
"engFirstName": "Hunter",
"engSurname": "May Robertson",
"dateOfBirth": "2006-10-13T15:30:08.413Z",
"dateOfDeath": "2013-11-21T01:50:00.464Z",
"nationality": {
"code": "avkop",
"nameRu": "Virginia Carter",
"nameKz": "Isaac Moran",
"changeDate": "2007-11-26T13:40:09.072Z"
},
"citizenship": {
"code": "pifejaz",
"nameRu": "Robert Davis",
"nameKz": "Dale Jacobs",
"changeDate": "2001-02-15T14:35:19.951Z"
},
"lifeStatus": {
"code": "cimbe",
"nameRu": "Sara White",
"nameKz": "Laura Walker",
"changeDate": "2018-10-13T01:45:20.314Z"
},
"imprisonedStatus": {
"imprisonedStatus": {
"code": "nizahomoutosuuf",
"nameRu": "Edgar Ross",
"nameKz": "Cody Evans",
"changeDate": "2024-10-09T19:06:42.411Z"
},
"imprisonedBeginDate": "Mon Jan 27",
"imprisonedEndDate": "Wed Mar 31"
},
"birthCertificate": {
"number": "2383637158821888",
"beginDate": "Thu Sep 07",
"issueOrganisation": "didijf"
},
"deathCertificate": {
"number": "1096352750632960",
"beginDate": "Thu Mar 21",
"issueOrganisation": "peibvop"
},
"personCapableStatus": {
"capableStatus": {
"code": "cinmenk",
"nameRu": "Timothy Parker",
"nameKz": "Emma Ramsey",
"changeDate": "2023-05-07T14:04:09.324Z"
},
"capableDate": "Tue Aug 17",
"capableEndDate": "Fri Nov 22",
"capableNumber": "1447409938857984",
"court": {
"code": "bughotmocikod",
"nameRu": "Shawn McCormick",
"nameKz": "Kathryn Foster",
"changeDate": "2008-08-18T07:24:46.431Z"
}
},
"missingStatus": {
"missing": false,
"missingDate": "Sat Sep 02",
"missingEndDate": "Thu Aug 23",
"missingNumber": "678813501489152",
"gpTerritorial": {
"code": "biefazom",
"nameRu": "Mayme Chambers",
"nameKz": "Lucy Reese",
"changeDate": "2003-02-22T08:32:55.292Z"
}
},
"disappearStatus": {
"disappear": true,
"disappearDate": "Mon Jul 07",
"disappearEndDate": "Sat Aug 04",
"disappearNumber": "3896672218251264",
"gpTerritorial": {
"code": "ejvatugub",
"nameRu": "Viola Snyder",
"nameKz": "Gordon Montgomery",
"changeDate": "2016-02-14T18:08:34.451Z"
}
},
"excludeStatus": {
"excludeReason": {
"code": "suujanarsufl",
"nameRu": "Edwin Gibson",
"nameKz": "Charlie Freeman",
"changeDate": "2020-09-12T18:01:04.298Z"
},
"excludeReasonDate": "Thu Jul 04",
"excludeDate": "Mon Apr 10",
"excludeParticipant": {
"code": "pocmawmo",
"nameRu": "Marc Frank",
"nameKz": "Dora Knight",
"changeDate": "2013-04-08T13:13:58.914Z"
}
},
"repatriationStatus": {
"repatriationStatus": {
"code": "okwegjujhaccova",
"nameRu": "Hilda Owen",
"nameKz": "Christian Mathis",
"changeDate": "2018-01-25T00:24:06.452Z"
},
"repatriationDate": "2018-08-18T12:12:35.900Z",
"repatriationEndDate": "2015-03-30T19:18:06.834Z",
"repatriationNumber": "6461332167589888",
"repatriationOrg": {
"code": "ofepira",
"nameRu": "Troy Farmer",
"nameKz": "Myra Stokes",
"changeDate": "2000-03-11T20:14:17.999Z"
},
"repatriationReason": {
"code": "duitigorjacej",
"nameRu": "Jackson Wolfe",
"nameKz": "Blake Watts",
"changeDate": "2007-05-09T15:07:32.415Z"
}
},
"gender": {
"code": "colbuig",
"nameRu": "Fred Harrington",
"nameKz": "Rodney Carter",
"changeDate": "2021-11-19T03:55:20.326Z"
},
"regAddress": {
"address": "694 Hegil Center",
"addressKaz": "452 Ijira Point",
"country": {
"code": "wenawot",
"nameRu": "Alberta Stevens",
"nameKz": "Chad Casey",
"changeDate": "2012-03-05T21:20:48.247Z"
},
"district": {
"code": "nehaze",
"nameRu": "Gerald Richardson",
"nameKz": "Sylvia Gill",
"changeDate": "2004-01-17T00:36:50.186Z"
},
"region": {
"code": "fuviposivpatsetp",
"nameRu": "Ola Roy",
"nameKz": "Amelia Sharp",
"changeDate": "2011-04-17T06:22:28.341Z"
},
"foreignData": {
"districtName": "Genevieve Santos",
"regionName": "Scott Moreno"
},
"city": "Cumeej",
"streetLocation": "Dihfa Glen",
"building": "fedmumuf",
"houseLocation": "kehupiwogi",
"apartmentLocation": "zaozojaftihohu",
"corpus": "nefivocothihotu",
"beginDate": "2014-07-29T10:40:15.169Z",
"endDate": "2014-09-22T14:52:29.498Z",
"status": {
"code": "usur",
"nameRu": "Elva Owen",
"nameKz": "Marcus Munoz",
"changeDate": "2012-10-03T03:45:16.081Z"
},
"invalidity": {
"code": "evtasnudadj",
"nameRu": "Andre Bowers",
"nameKz": "Iva Benson",
"changeDate": "2011-05-19T16:08:12.644Z"
},
"arCode": "sadn"
},
"birthPlace": {
"country": {
"code": "woizorg",
"nameRu": "Jackson Norton",
"nameKz": "Mildred Rogers",
"changeDate": "2002-04-13T03:05:38.209Z"
},
"district": {
"code": "nahimetvivjuha",
"nameRu": "Adele Fuller",
"nameKz": "Mayme Patton",
"changeDate": "2001-07-11T11:53:35.111Z"
},
"region": {
"code": "mozfirtuw",
"nameRu": "Dustin Zimmerman",
"nameKz": "Angel Sandoval",
"changeDate": "2018-08-29T16:13:44.881Z"
},
"foreignData": {
"districtName": "Theodore Howell",
"regionName": "Lelia Burgess"
},
"city": "Lovaike",
"birthTeCodeAR": "9/21/1973"
},
"documents": [
{
"docTypeCode": "nardehadighedwed",
"docTypeNameRu": "Howard Pratt",
"docTypeNameKz": "Bradley Graham",
"docTypeChangeDate": "2022-02-03T19:30:46.186Z",
"docStatusCode": "hauwm",
"docStatusNameRu": "Jean Gilbert",
"docStatusNameKz": "Sue Carson",
"docStatusChangeDate": "2015-10-01T20:57:13.130Z",
"docIssueOrganizationCode": "kows",
"docIssueOrganizationNameRu": "Ola Hampton",
"docIssueOrganizationNameKz": "Rhoda Davis",
"docIssueOrganizationChangeDate": "2024-01-29T19:09:47.221Z",
"invalidityDate": "2011-03-09T20:01:36.466Z",
"docNumber": "5348133286445056",
"beginDate": "2016-12-03T12:53:29.444Z",
"endDate": "2008-03-31T18:57:01.964Z",
"series": "fulegdupkuwisaz",
"surname": "Lola Figueroa",
"name": "Jeanette Jacobs",
"patronymic": "zorremse",
"birthDate": "2007-08-20T07:15:47.957Z"
}
],
"addresses": [
{
"type": {
"code": "tibga",
"nameRu": "Randy Knight",
"nameKz": "Eula Lyons",
"changeDate": "2001-08-25T00:59:27.817Z"
},
"country": {
"code": "sujabvudemcuhl",
"nameRu": "Nicholas Schultz",
"nameKz": "Annie Vaughn",
"changeDate": "2022-01-20T05:34:59.532Z"
},
"district": {
"code": "rutozseerra",
"nameRu": "Ricardo Hanson",
"nameKz": "Helena Powell",
"changeDate": "2022-03-27T20:03:58.975Z"
},
"region": {
"code": "ratliteduujuci",
"nameRu": "Fanny Burton",
"nameKz": "Rosalie Bennett",
"changeDate": "2000-11-22T04:56:29.699Z"
},
"foreignData": {
"districtName": "Katie Hampton",
"regionName": "Noah Baker"
},
"city": "Teafwok",
"streetLocation": "Vufku Heights",
"houseLocation": "uzasejamorr",
"building": "saus",
"apartmentLocation": "olem",
"corpus": "gadenezcozbidgor",
"beginDate": "2016-09-09T03:06:37.278Z",
"endDate": "2023-11-14T15:36:04.030Z",
"arCode": "ijsamejrenuheide"
}
],
"removed": false
}
x
Try this operation
No response. This is a mixed content call. It is not possible to test HTTP APIs from an HTTPS secured Portal site and vice versa.
No response. This is a cross-origin call. Make sure the server accepts requests from this portal. Or if using self-signed SSL certificates then paste the URL above into your browser to accept the certificate before trying again (On Internet Explorer it must be the same browser tab.).
Definitions
{
"type": "object",
"properties": {
"timestamp": {
"type": "string",
"format": "date-time"
},
"error": {
"type": "string"
},
"violations": {
"type": "array",
"items": {
"$ref": "#\/definitions\/Violation"
}
}
}
}
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"message": {
"type": "string"
}
}
}
{
"title": "Данные о документе",
"type": "object",
"properties": {
"docTypeCode": {
"title": "Тип документа код",
"type": "string"
},
"docTypeNameRu": {
"title": "Тип документа наименование РУС",
"type": "string"
},
"docTypeNameKz": {
"title": "Тип документа наименование КАЗ",
"type": "string"
},
"docTypeChangeDate": {
"title": "Дата последнего изменения справочного значения",
"type": "string",
"format": "date-time"
},
"docStatusCode": {
"title": "Признак действительности документа",
"type": "string"
},
"docStatusNameRu": {
"title": "Признак действительности документа наименование РУС",
"type": "string"
},
"docStatusNameKz": {
"title": "Признак действительности документа наименование КАЗ",
"type": "string"
},
"docStatusChangeDate": {
"title": "Дата последнего изменения справочного значения",
"type": "string",
"format": "date-time"
},
"docIssueOrganizationCode": {
"title": "Организация, выдавшая документ",
"type": "string"
},
"docIssueOrganizationNameRu": {
"title": "Организация, выдавшая документ наименованиеРУС",
"type": "string"
},
"docIssueOrganizationNameKz": {
"title": "Организация, выдавшая документ наименование КАЗ",
"type": "string"
},
"docIssueOrganizationChangeDate": {
"title": "Дата последнего изменения справочного значения",
"type": "string",
"format": "date-time"
},
"invalidityDate": {
"title": "Дата недействительности документа",
"type": "string",
"format": "date-time"
},
"docNumber": {
"title": "Номер документа",
"type": "string"
},
"beginDate": {
"title": "Дата выдачи",
"type": "string",
"format": "date-time"
},
"endDate": {
"title": "Срок действия",
"type": "string",
"format": "date-time"
},
"series": {
"title": "Серия документа",
"type": "string"
},
"surname": {
"title": "Фамилия физического лица на момент выдачи документа",
"type": "string"
},
"name": {
"title": "Имя физического лица на момент выдачи документа",
"type": "string"
},
"patronymic": {
"title": "Отчество физического лица на момент выдачи документа",
"type": "string"
},
"birthDate": {
"title": "Дата рождения физического лица",
"type": "string",
"format": "date-time"
}
}
}
{
"title": "Данные о ФЛ",
"type": "object",
"properties": {
"iin": {
"title": "ИИН",
"type": "string"
},
"lastName": {
"title": "Фамилия",
"type": "string"
},
"firstName": {
"title": "Имя",
"type": "string"
},
"middleName": {
"title": "Отчество",
"type": "string"
},
"engFirstName": {
"title": "Имя на анг",
"type": "string"
},
"engSurname": {
"title": "Фамилия на анг",
"type": "string"
},
"dateOfBirth": {
"title": "Дата рождения dd.MM.yyyy",
"type": "string",
"format": "date-time"
},
"dateOfDeath": {
"title": "Дата смерти dd.MM.yyyy",
"type": "string",
"format": "date-time"
},
"nationality": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"citizenship": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"lifeStatus": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"imprisonedStatus": {
"$ref": "#\/definitions\/PersonImprisoneStatusDto"
},
"birthCertificate": {
"$ref": "#\/definitions\/CertificateDto"
},
"deathCertificate": {
"$ref": "#\/definitions\/CertificateDto"
},
"personCapableStatus": {
"$ref": "#\/definitions\/PersonCapableStatusDto"
},
"missingStatus": {
"$ref": "#\/definitions\/MissingStatusDto"
},
"disappearStatus": {
"$ref": "#\/definitions\/DisappearStatusDto"
},
"excludeStatus": {
"$ref": "#\/definitions\/PersonExcludeStatusDto"
},
"repatriationStatus": {
"$ref": "#\/definitions\/PersonRepatriationStatusDto"
},
"gender": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"regAddress": {
"$ref": "#\/definitions\/RegAddressDto"
},
"birthPlace": {
"$ref": "#\/definitions\/BirthPlaceDto"
},
"documents": {
"title": "Документы",
"type": "array",
"items": {
"$ref": "#\/definitions\/DocumentDto"
}
},
"addresses": {
"title": "Сведения о других адресах физического лица",
"type": "array",
"items": {
"$ref": "#\/definitions\/AddressDto"
}
},
"removed": {
"title": "Признак удаления записи о физическом лице из Национального реестра",
"type": "boolean"
}
}
}
{
"title": "Другие адреса (например, адрес временной регистрации, адрес убытия)",
"type": "object",
"properties": {
"type": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"country": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"district": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"region": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"foreignData": {
"$ref": "#\/definitions\/ForeignDataDto"
},
"city": {
"title": "Населенный пункт",
"type": "string"
},
"streetLocation": {
"title": "Место жительства - улица",
"type": "string"
},
"houseLocation": {
"title": "Место жительства - дом",
"type": "string"
},
"building": {
"title": "Место жительства - дом",
"type": "string"
},
"apartmentLocation": {
"title": "Место жительства - квартира",
"type": "string"
},
"corpus": {
"title": "Место жительства - корпус",
"type": "string"
},
"beginDate": {
"title": "Дата регистрации по адресу",
"type": "string",
"format": "date-time"
},
"endDate": {
"title": "Дата снятия с регистрации по адресу",
"type": "string",
"format": "date-time"
},
"arCode": {
"title": "Код адреса в формате Адресного регистра",
"type": "string"
}
}
}
{
"title": "Данные о адресе за пределами Казахстана",
"type": "object",
"properties": {
"districtName": {
"title": "Область (не Казахстан)",
"type": "string"
},
"regionName": {
"title": "Район (не Казахстан)",
"type": "string"
}
}
}
{
"title": "Место рождения",
"type": "object",
"properties": {
"country": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"district": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"region": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"foreignData": {
"$ref": "#\/definitions\/ForeignDataDto"
},
"city": {
"title": "Населенный пункт",
"type": "string"
},
"birthTeCodeAR": {
"title": "Код адреса рождения в формате Адресного регистра",
"type": "string"
}
}
}
{
"title": "Место жительства",
"type": "object",
"properties": {
"address": {
"title": "Адрес",
"type": "string"
},
"addressKaz": {
"title": "Адрес каз",
"type": "string"
},
"country": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"district": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"region": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"foreignData": {
"$ref": "#\/definitions\/ForeignDataDto"
},
"city": {
"title": "Населенный пункт",
"type": "string"
},
"streetLocation": {
"title": "Место жительства - улица",
"type": "string"
},
"building": {
"title": "Место жительства - дом",
"type": "string"
},
"houseLocation": {
"title": "Место жительства - дом",
"type": "string"
},
"apartmentLocation": {
"title": "Место жительства - квартира",
"type": "string"
},
"corpus": {
"title": "Место жительства - корпус",
"type": "string"
},
"beginDate": {
"title": "Дата выдачи",
"type": "string",
"format": "date-time"
},
"endDate": {
"title": "Срок действия",
"type": "string",
"format": "date-time"
},
"status": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"invalidity": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"arCode": {
"title": "Код адреса в формате Адресного регистра",
"type": "string"
}
}
}
{
"title": "Статус оралмана",
"type": "object",
"properties": {
"repatriationStatus": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"repatriationDate": {
"title": "Дата начала действия статуса",
"type": "string",
"format": "date-time"
},
"repatriationEndDate": {
"title": "Дата окончания действия статуса",
"type": "string",
"format": "date-time"
},
"repatriationNumber": {
"title": "Номер дела",
"type": "string"
},
"repatriationOrg": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"repatriationReason": {
"$ref": "#\/definitions\/DictionaryItemDto"
}
}
}
{
"title": "Физическое лицо скрывается от дознания, следствия, суда и отбытия наказания",
"type": "object",
"properties": {
"disappear": {
"title": "Текущий статус - скрывается (Да\/Нет)",
"type": "boolean"
},
"disappearDate": {
"title": "Дата начала действия статуса",
"type": "string",
"format": "date"
},
"disappearEndDate": {
"title": "Дата окончания действия статуса",
"type": "string",
"format": "date"
},
"disappearNumber": {
"title": "Номер дела",
"type": "string"
},
"gpTerritorial": {
"$ref": "#\/definitions\/DictionaryItemDto"
}
}
}
{
"title": "Признак исключения\/условного исключения ИИН из Национального реестра",
"type": "object",
"properties": {
"excludeReason": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"excludeReasonDate": {
"title": "Дата начала действия статуса",
"type": "string",
"format": "date"
},
"excludeDate": {
"title": "Дата окончания действия статуса",
"type": "string",
"format": "date"
},
"excludeParticipant": {
"$ref": "#\/definitions\/DictionaryItemDto"
}
}
}
{
"title": "Статус физического лица 'Пропавший без вести'",
"type": "object",
"properties": {
"missing": {
"title": "Пропавший без вести (Да\/Нет)",
"type": "boolean"
},
"missingDate": {
"title": "Дата начала действия статуса",
"type": "string",
"format": "date"
},
"missingEndDate": {
"title": "Дата окончания действия статуса",
"type": "string",
"format": "date"
},
"missingNumber": {
"title": "Номер дела",
"type": "string"
},
"gpTerritorial": {
"$ref": "#\/definitions\/DictionaryItemDto"
}
}
}
{
"title": "Сведения о дееспособности физического лица",
"type": "object",
"properties": {
"capableStatus": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"capableDate": {
"title": "Дата начала действия статуса",
"type": "string",
"format": "date"
},
"capableEndDate": {
"title": "Дата окончания действия статуса",
"type": "string",
"format": "date"
},
"capableNumber": {
"title": "Номер дела в суде",
"type": "string"
},
"court": {
"$ref": "#\/definitions\/DictionaryItemDto"
}
}
}
{
"title": "Данные о свидетельстве",
"type": "object",
"properties": {
"number": {
"title": "Номер свидетельства",
"type": "string"
},
"beginDate": {
"title": "Дата выдачи свидетельства",
"type": "string",
"format": "date"
},
"issueOrganisation": {
"title": "Организация, выдавшая свидетельство",
"type": "string"
}
}
}
{
"title": "Статус судимости",
"type": "object",
"properties": {
"imprisonedStatus": {
"$ref": "#\/definitions\/DictionaryItemDto"
},
"imprisonedBeginDate": {
"title": "Дата начала судимости",
"type": "string",
"format": "date"
},
"imprisonedEndDate": {
"title": "Дата окончания судимости",
"type": "string",
"format": "date"
}
}
}
{
"title": "Справочная информация",
"type": "object",
"properties": {
"code": {
"title": "Код",
"type": "string"
},
"nameRu": {
"title": "Наименование на рус.",
"type": "string"
},
"nameKz": {
"title": "Наименование на каз.",
"type": "string"
},
"changeDate": {
"title": "Дата последнего изменения справочного значения",
"type": "string",
"format": "date-time"
}
}
}