ezags-xsd 2.2.6.6 → 2.2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +1 -0
- data/app/mappers/full_address_mapper.rb +0 -4
- data/app/mappers/other_applicants_for_adoption_mapper.rb +0 -2
- data/app/mappers/other_applicants_for_divorce_mapper.rb +0 -2
- data/app/mappers/other_applicants_mapper.rb +0 -2
- data/app/mappers/short_address_mapper.rb +0 -4
- data/app/mappers/statement_content_of_birth_mapper.rb +4 -0
- data/app/mappers/statement_of_birth_mapper.rb +1 -1
- data/bin/ezags-xsd +1 -1
- data/lib/ezags-xsd/version.rb +1 -1
- data/spec/mappers/full_address_mapper_spec.rb +0 -1
- data/spec/mappers/short_address_mapper_spec.rb +0 -1
- data/spec/mappers/statement_content_of_birth_mapper_spec.rb +1 -0
- data/vendor/ezags-protocols/README.md +2 -0
- data/vendor/ezags-protocols/actor.xsd +8 -5
- data/vendor/ezags-protocols/common.xsd +0 -6
- data/vendor/ezags-protocols/documents.xsd +137 -65
- data/vendor/ezags-protocols/eZAGS/LocalInterDepPersonalService.xsd +1 -1
- data/vendor/ezags-protocols/eZAGS/LocalOrderService.xsd +6 -6
- data/vendor/ezags-protocols/eZAGS/public/OrderService.wsdl +1 -1
- data/vendor/ezags-protocols/externaldocuments.xsd +23 -9
- metadata +18 -11
data/Gemfile
CHANGED
@@ -6,10 +6,6 @@ class FullAddressMapper
|
|
6
6
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/UploadService.xsd', File.dirname(__FILE__))
|
7
7
|
type 'FullAddress'
|
8
8
|
|
9
|
-
# код по классификатору ОКАТО
|
10
|
-
# @return [OKATOCode]
|
11
|
-
# minOccurs: 0, maxOccurs: 1
|
12
|
-
attr_accessor :okato_code
|
13
9
|
# код страны по ОКСМ
|
14
10
|
# @return [OKSMCode]
|
15
11
|
# minOccurs: 0, maxOccurs: 1
|
@@ -6,11 +6,9 @@ class OtherApplicantsForAdoptionMapper
|
|
6
6
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/UploadService.xsd', File.dirname(__FILE__))
|
7
7
|
type 'OtherApplicantsForAdoption'
|
8
8
|
|
9
|
-
# Сведения о заявителе - юридическом лице (в лице его уполномоченного представителя - сотрудника)
|
10
9
|
# @return [ApplicantOrganizationMapper]
|
11
10
|
# minOccurs: 0, maxOccurs: 1
|
12
11
|
attr_accessor :applicant_organization
|
13
|
-
# Сведения о заявителе - физическом лице (иное уполномоченное лицо)
|
14
12
|
# @return [ApplicantPersonMapper]
|
15
13
|
# minOccurs: 0, maxOccurs: 1
|
16
14
|
attr_accessor :applicant_person
|
@@ -6,11 +6,9 @@ class OtherApplicantsForDivorceMapper
|
|
6
6
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/UploadService.xsd', File.dirname(__FILE__))
|
7
7
|
type 'OtherApplicantsForDivorce'
|
8
8
|
|
9
|
-
# Сведения о заявителе - юридическом лице (в лице его уполномоченного представителя - сотрудника)
|
10
9
|
# @return [ApplicantOrganizationMapper]
|
11
10
|
# minOccurs: 0, maxOccurs: 1
|
12
11
|
attr_accessor :applicant_organization
|
13
|
-
# Сведения о заявителе - физическом лице (иное уполномоченное лицо)
|
14
12
|
# @return [ApplicantPersonMapper]
|
15
13
|
# minOccurs: 0, maxOccurs: 1
|
16
14
|
attr_accessor :applicant_person
|
@@ -6,11 +6,9 @@ class OtherApplicantsMapper
|
|
6
6
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/UploadService.xsd', File.dirname(__FILE__))
|
7
7
|
type 'OtherApplicants'
|
8
8
|
|
9
|
-
# Сведения о заявителе - юридическом лице (в лице его уполномоченного представителя - сотрудника)
|
10
9
|
# @return [ApplicantOrganizationMapper]
|
11
10
|
# minOccurs: 0, maxOccurs: 1
|
12
11
|
attr_accessor :applicant_organization
|
13
|
-
# Сведения о заявителе - физическом лице (иное уполномоченное лицо)
|
14
12
|
# @return [ApplicantPersonMapper]
|
15
13
|
# minOccurs: 0, maxOccurs: 1
|
16
14
|
attr_accessor :applicant_person
|
@@ -6,10 +6,6 @@ class ShortAddressMapper
|
|
6
6
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/UploadService.xsd', File.dirname(__FILE__))
|
7
7
|
type 'ShortAddress'
|
8
8
|
|
9
|
-
# код по классификатору ОКАТО
|
10
|
-
# @return [OKATOCode]
|
11
|
-
# minOccurs: 0, maxOccurs: 1
|
12
|
-
attr_accessor :okato_code
|
13
9
|
# код страны по ОКСМ
|
14
10
|
# @return [OKSMCode]
|
15
11
|
# minOccurs: 0, maxOccurs: 1
|
@@ -96,5 +96,9 @@ class StatementContentOfBirthMapper
|
|
96
96
|
# @return [Int]
|
97
97
|
# minOccurs: 0, maxOccurs: 1
|
98
98
|
attr_accessor :occupation
|
99
|
+
# Признак согласия отца ребенка на установление отцовства одновременно с регистрацией рождения
|
100
|
+
# @return [Boolean]
|
101
|
+
# minOccurs: 0, maxOccurs: 1
|
102
|
+
attr_accessor :filliation_agree_by_father
|
99
103
|
|
100
104
|
end
|
@@ -19,7 +19,7 @@ class StatementOfBirthMapper
|
|
19
19
|
# minOccurs: 0, maxOccurs: 1
|
20
20
|
attr_accessor :documents_confirming_birth
|
21
21
|
# @return [DocumentsConfirmingFiliationForBirthStmtMapper]
|
22
|
-
# minOccurs:
|
22
|
+
# minOccurs: 0, maxOccurs: 1
|
23
23
|
attr_accessor :documents_confirming_participant
|
24
24
|
# @return [OtherApplicantsMapper]
|
25
25
|
# minOccurs: 0, maxOccurs: 1
|
data/bin/ezags-xsd
CHANGED
@@ -28,7 +28,7 @@ class CLI < Thor
|
|
28
28
|
method_option :path, aliases: '-p', desc: 'temporary path', type: :string, default: 'tmp'
|
29
29
|
method_option :branch, aliases: '-b', desc: 'actual branch', type: :string, default: '2.2/develop'
|
30
30
|
def update_protocols
|
31
|
-
`git clone
|
31
|
+
`git clone git@github.com:ezags/ezags-protocols.git #{options[:path]}`
|
32
32
|
Dir.chdir options[:path]
|
33
33
|
`git checkout #{options[:branch]}`
|
34
34
|
Dir.chdir '../'
|
data/lib/ezags-xsd/version.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"
|
2
|
-
|
3
|
-
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><!-- edited with XMLSpy v2011 rel. 2 (http://www.altova.com) by free (free) -->
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cm="http://ezags.rt.ru/type/common/"
|
3
|
+
xmlns:ac="http://ezags.rt.ru/type/actor/" targetNamespace="http://ezags.rt.ru/type/actor/"
|
4
|
+
elementFormDefault="qualified" attributeFormDefault="unqualified">
|
4
5
|
<xs:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="common.xsd"/>
|
5
6
|
<xs:complexType name="FullPerson">
|
6
7
|
<xs:annotation>
|
@@ -369,7 +370,8 @@
|
|
369
370
|
</xs:complexType>
|
370
371
|
<xs:element name="foreignId" type="cm:RegistrarIdentity">
|
371
372
|
<xs:annotation>
|
372
|
-
<xs:documentation>Идентификационные данные места государственной регистрации. Внешний
|
373
|
+
<xs:documentation>Идентификационные данные места государственной регистрации. Внешний ключ
|
374
|
+
</xs:documentation>
|
373
375
|
</xs:annotation>
|
374
376
|
</xs:element>
|
375
377
|
<xs:complexType name="MissingPersonAssetsManager">
|
@@ -408,10 +410,11 @@
|
|
408
410
|
<xs:documentation>Персональные данные представителя ЮЛ</xs:documentation>
|
409
411
|
</xs:annotation>
|
410
412
|
</xs:element>
|
411
|
-
<xs:element name="applicantOrganization" type="ac:ApplicantOrganization"/>
|
412
413
|
<xs:element name="employees" type="ac:ListOfRegistrarEmployees">
|
413
414
|
<xs:annotation>
|
414
415
|
<xs:documentation>Список сотрудников</xs:documentation>
|
415
416
|
</xs:annotation>
|
416
417
|
</xs:element>
|
418
|
+
<xs:element name="applicantPerson" type="ac:ApplicantPerson"/>
|
419
|
+
<xs:element name="applicantOrganization" type="ac:ApplicantOrganization"/>
|
417
420
|
</xs:schema>
|
@@ -255,12 +255,6 @@
|
|
255
255
|
<xs:documentation>Сведения об адресе с точностью до населённого пункта</xs:documentation>
|
256
256
|
</xs:annotation>
|
257
257
|
<xs:sequence minOccurs="1">
|
258
|
-
<xs:element ref="cm:okatoCode" minOccurs="0">
|
259
|
-
<xs:annotation>
|
260
|
-
<xs:documentation>Код по классификатору ОКАТО
|
261
|
-
</xs:documentation>
|
262
|
-
</xs:annotation>
|
263
|
-
</xs:element>
|
264
258
|
<xs:element ref="cm:countryCode" minOccurs="0">
|
265
259
|
<xs:annotation>
|
266
260
|
<xs:documentation>Код страны по классификатору ОКСМ</xs:documentation>
|
@@ -1,10 +1,17 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<!-- edited with XMLSpy v2011 rel. 2 (http://www.altova.com) by free (free) -->
|
3
|
-
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
3
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
4
|
+
xmlns:exdoc="http://ezags.rt.ru/type/externaldocuments/"
|
5
|
+
xmlns:doc="http://ezags.rt.ru/type/document/" xmlns:cm="http://ezags.rt.ru/type/common/"
|
6
|
+
xmlns:ac="http://ezags.rt.ru/type/actor/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
|
7
|
+
targetNamespace="http://ezags.rt.ru/type/document/" elementFormDefault="qualified"
|
8
|
+
attributeFormDefault="unqualified">
|
4
9
|
<xs:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="common.xsd"/>
|
5
10
|
<xs:import namespace="http://ezags.rt.ru/type/actor/" schemaLocation="actor.xsd"/>
|
6
|
-
<xs:import namespace="http://ezags.rt.ru/type/externaldocuments/"
|
7
|
-
|
11
|
+
<xs:import namespace="http://ezags.rt.ru/type/externaldocuments/"
|
12
|
+
schemaLocation="externaldocuments.xsd"/>
|
13
|
+
<xs:import namespace="http://www.w3.org/2000/09/xmldsig#"
|
14
|
+
schemaLocation="xmldsig-core-schema.xsd"/>
|
8
15
|
<!--ZAGS Documents Start -->
|
9
16
|
<!-- Requisites of Paper Documents start -->
|
10
17
|
<xs:complexType name="RequisitesPaperReference">
|
@@ -130,27 +137,32 @@
|
|
130
137
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
131
138
|
</xs:annotation>
|
132
139
|
</xs:element>
|
133
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForAdoption"
|
140
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForAdoption"
|
141
|
+
minOccurs="0">
|
134
142
|
<xs:annotation>
|
135
143
|
<xs:documentation>Субъекты актовой записи об усыновлении (удочерении)</xs:documentation>
|
136
144
|
</xs:annotation>
|
137
145
|
</xs:element>
|
138
|
-
<xs:element name="documentsConfirmingMarriageForAdoption"
|
146
|
+
<xs:element name="documentsConfirmingMarriageForAdoption"
|
147
|
+
type="doc:DocumentsConfirmingMarriageForAdoption" minOccurs="0">
|
139
148
|
<xs:annotation>
|
140
149
|
<xs:documentation>Реквизиты АЗ о заключении брака (между усыновителями ИЛИ между усыновителем и родителем)</xs:documentation>
|
141
150
|
</xs:annotation>
|
142
151
|
</xs:element>
|
143
|
-
<xs:element name="documentsConfirmingAdoption"
|
152
|
+
<xs:element name="documentsConfirmingAdoption"
|
153
|
+
type="doc:DocumentsConfirmingAdoption" minOccurs="0">
|
144
154
|
<xs:annotation>
|
145
155
|
<xs:documentation>Документ – основание для регистрации усыновления (удочерения)</xs:documentation>
|
146
156
|
</xs:annotation>
|
147
157
|
</xs:element>
|
148
|
-
<xs:element name="relatedModifiedDocuments"
|
158
|
+
<xs:element name="relatedModifiedDocuments"
|
159
|
+
type="doc:RelatedModifiedDocumentsForAdoption" minOccurs="0">
|
149
160
|
<xs:annotation>
|
150
161
|
<xs:documentation>Актовая запись о рождении ребенка, изменяемая в связи с усыновлением (отменой усыновления)</xs:documentation>
|
151
162
|
</xs:annotation>
|
152
163
|
</xs:element>
|
153
|
-
<xs:element name="otherApplicants" type="doc:OtherApplicantsForAdoption"
|
164
|
+
<xs:element name="otherApplicants" type="doc:OtherApplicantsForAdoption"
|
165
|
+
minOccurs="0">
|
154
166
|
<xs:annotation>
|
155
167
|
<xs:documentation>Сведения о прочих лицах (НЕ усыновителях), заявивших об усыновлении (удочерении) ребенка</xs:documentation>
|
156
168
|
</xs:annotation>
|
@@ -184,17 +196,20 @@
|
|
184
196
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
185
197
|
</xs:annotation>
|
186
198
|
</xs:element>
|
187
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
199
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
200
|
+
minOccurs="0">
|
188
201
|
<xs:annotation>
|
189
202
|
<xs:documentation>Субъекты актовой записи о рождении</xs:documentation>
|
190
203
|
</xs:annotation>
|
191
204
|
</xs:element>
|
192
|
-
<xs:element name="documentConfirmingBirth" type="doc:DocumentsConfirmingBirth"
|
205
|
+
<xs:element name="documentConfirmingBirth" type="doc:DocumentsConfirmingBirth"
|
206
|
+
minOccurs="0">
|
193
207
|
<xs:annotation>
|
194
208
|
<xs:documentation>Документ – основание для регистрации рождения ребенка</xs:documentation>
|
195
209
|
</xs:annotation>
|
196
210
|
</xs:element>
|
197
|
-
<xs:element name="documentConfirmingFiliation"
|
211
|
+
<xs:element name="documentConfirmingFiliation"
|
212
|
+
type="doc:DocumentsConfirmingFiliationForBirth" minOccurs="0">
|
198
213
|
<xs:annotation>
|
199
214
|
<xs:documentation>Документ - основание внесения сведений об отце</xs:documentation>
|
200
215
|
</xs:annotation>
|
@@ -238,7 +253,8 @@
|
|
238
253
|
<xs:documentation>Субъект актовой записи о смерти</xs:documentation>
|
239
254
|
</xs:annotation>
|
240
255
|
</xs:element>
|
241
|
-
<xs:element name="documentsConfirmingDeath" type="doc:DocumentsConfirmingDeath"
|
256
|
+
<xs:element name="documentsConfirmingDeath" type="doc:DocumentsConfirmingDeath"
|
257
|
+
minOccurs="0">
|
242
258
|
<xs:annotation>
|
243
259
|
<xs:documentation>Документ – основание для регистрации смерти</xs:documentation>
|
244
260
|
</xs:annotation>
|
@@ -277,22 +293,26 @@
|
|
277
293
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
278
294
|
</xs:annotation>
|
279
295
|
</xs:element>
|
280
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForDivorce"
|
296
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForDivorce"
|
297
|
+
minOccurs="0">
|
281
298
|
<xs:annotation>
|
282
299
|
<xs:documentation>Субъекты актовой записи о расторжении брака</xs:documentation>
|
283
300
|
</xs:annotation>
|
284
301
|
</xs:element>
|
285
|
-
<xs:element name="documentsConfirmingMarriage"
|
302
|
+
<xs:element name="documentsConfirmingMarriage"
|
303
|
+
type="doc:DocumentsConfirmingMarriageForDivorce" minOccurs="0">
|
286
304
|
<xs:annotation>
|
287
305
|
<xs:documentation>Актовая запись и свидетельство о заключении брака супругов, расторгающих брак</xs:documentation>
|
288
306
|
</xs:annotation>
|
289
307
|
</xs:element>
|
290
|
-
<xs:element name="otherApplicants" type="doc:OtherApplicantsForDivorce"
|
308
|
+
<xs:element name="otherApplicants" type="doc:OtherApplicantsForDivorce"
|
309
|
+
minOccurs="0">
|
291
310
|
<xs:annotation>
|
292
311
|
<xs:documentation>Сведения о прочих лицах, заявивших о необходимости расторжении брака (НИ ОН, НИ ОНА)</xs:documentation>
|
293
312
|
</xs:annotation>
|
294
313
|
</xs:element>
|
295
|
-
<xs:element name="documentConfirmingDivorce"
|
314
|
+
<xs:element name="documentConfirmingDivorce"
|
315
|
+
type="doc:DocumentsConfirmingDivorce" minOccurs="0">
|
296
316
|
<xs:annotation>
|
297
317
|
<xs:documentation>Документ – основание для регистрации расторжения брака</xs:documentation>
|
298
318
|
</xs:annotation>
|
@@ -326,7 +346,8 @@
|
|
326
346
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
327
347
|
</xs:annotation>
|
328
348
|
</xs:element>
|
329
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForFiliation"
|
349
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForFiliation"
|
350
|
+
minOccurs="0">
|
330
351
|
<xs:annotation>
|
331
352
|
<xs:documentation>Субъекты актовой записи об установлении отцовства</xs:documentation>
|
332
353
|
</xs:annotation>
|
@@ -336,7 +357,8 @@
|
|
336
357
|
<xs:documentation>Актовая запись и свидетельство о рождении ребенка (в отношении которого устанавливается отцовство)</xs:documentation>
|
337
358
|
</xs:annotation>
|
338
359
|
</xs:element>
|
339
|
-
<xs:element name="documentsConfirmingFiliation"
|
360
|
+
<xs:element name="documentsConfirmingFiliation"
|
361
|
+
type="doc:DocumentsConfirmingFiliation" minOccurs="0">
|
340
362
|
<xs:annotation>
|
341
363
|
<xs:documentation>Документ – основание для регистрации установления отцовства</xs:documentation>
|
342
364
|
</xs:annotation>
|
@@ -375,12 +397,14 @@
|
|
375
397
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
376
398
|
</xs:annotation>
|
377
399
|
</xs:element>
|
378
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForNameChange"
|
400
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForNameChange"
|
401
|
+
minOccurs="0">
|
379
402
|
<xs:annotation>
|
380
403
|
<xs:documentation>Субъект актовой записи о перемене имени</xs:documentation>
|
381
404
|
</xs:annotation>
|
382
405
|
</xs:element>
|
383
|
-
<xs:element name="documentsConfirmingNameChange"
|
406
|
+
<xs:element name="documentsConfirmingNameChange"
|
407
|
+
type="doc:DocumentsConfirmingNameChange" minOccurs="0">
|
384
408
|
<xs:annotation>
|
385
409
|
<xs:documentation>Актовая запись и свидетельство о рождении лица, желающего переменить имя</xs:documentation>
|
386
410
|
</xs:annotation>
|
@@ -419,12 +443,14 @@
|
|
419
443
|
<xs:documentation>Субъекты АЗ о заключении брака</xs:documentation>
|
420
444
|
</xs:annotation>
|
421
445
|
</xs:element>
|
422
|
-
<xs:element name="documentConfirmingGroom"
|
446
|
+
<xs:element name="documentConfirmingGroom"
|
447
|
+
type="doc:DocumentsConfirmingMarriage" minOccurs="0">
|
423
448
|
<xs:annotation>
|
424
449
|
<xs:documentation>Документ, подтверждающий прекращение предыдущего брака для НЕГО</xs:documentation>
|
425
450
|
</xs:annotation>
|
426
451
|
</xs:element>
|
427
|
-
<xs:element name="documentConfirmingBride"
|
452
|
+
<xs:element name="documentConfirmingBride"
|
453
|
+
type="doc:DocumentsConfirmingMarriage" minOccurs="0">
|
428
454
|
<xs:annotation>
|
429
455
|
<xs:documentation>Документ, подтверждающий прекращение предыдущего брака для НЕЕ</xs:documentation>
|
430
456
|
</xs:annotation>
|
@@ -460,7 +486,8 @@
|
|
460
486
|
<xs:element ref="cm:actRecordNumber"/>
|
461
487
|
<xs:element ref="cm:actRecordDate"/>
|
462
488
|
<xs:element ref="cm:isRecovered" minOccurs="0"/>
|
463
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
489
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
490
|
+
minOccurs="0">
|
464
491
|
<xs:annotation>
|
465
492
|
<xs:documentation>Субъекты актовой записи о рождении</xs:documentation>
|
466
493
|
</xs:annotation>
|
@@ -498,7 +525,8 @@
|
|
498
525
|
<xs:element ref="cm:actRecordNumber"/>
|
499
526
|
<xs:element ref="cm:actRecordDate"/>
|
500
527
|
<xs:element ref="cm:isRecovered" minOccurs="0"/>
|
501
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
528
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
529
|
+
minOccurs="0">
|
502
530
|
<xs:annotation>
|
503
531
|
<xs:documentation>Субъекты актовой записи о рождении</xs:documentation>
|
504
532
|
</xs:annotation>
|
@@ -541,7 +569,8 @@
|
|
541
569
|
<xs:documentation>Дополнительный контент (из заявления)</xs:documentation>
|
542
570
|
</xs:annotation>
|
543
571
|
</xs:element>
|
544
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
572
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
573
|
+
minOccurs="0">
|
545
574
|
<xs:annotation>
|
546
575
|
<xs:documentation>Субъекты актовой записи о рождении</xs:documentation>
|
547
576
|
</xs:annotation>
|
@@ -670,7 +699,8 @@
|
|
670
699
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
671
700
|
</xs:annotation>
|
672
701
|
</xs:element>
|
673
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForDivorce"
|
702
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForDivorce"
|
703
|
+
minOccurs="0">
|
674
704
|
<xs:annotation>
|
675
705
|
<xs:documentation>Субъект актовой записи о разводе</xs:documentation>
|
676
706
|
</xs:annotation>
|
@@ -708,7 +738,8 @@
|
|
708
738
|
<xs:element ref="cm:actRecordNumber"/>
|
709
739
|
<xs:element ref="cm:actRecordDate"/>
|
710
740
|
<xs:element ref="cm:isRecovered" minOccurs="0"/>
|
711
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForAdoption"
|
741
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForAdoption"
|
742
|
+
minOccurs="0">
|
712
743
|
<xs:annotation>
|
713
744
|
<xs:documentation>Субъекты актовой записи об усыновлении</xs:documentation>
|
714
745
|
</xs:annotation>
|
@@ -746,7 +777,8 @@
|
|
746
777
|
<xs:element ref="cm:actRecordNumber"/>
|
747
778
|
<xs:element ref="cm:actRecordDate"/>
|
748
779
|
<xs:element ref="cm:isRecovered" minOccurs="0"/>
|
749
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForFiliation"
|
780
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForFiliation"
|
781
|
+
minOccurs="0">
|
750
782
|
<xs:annotation>
|
751
783
|
<xs:documentation>Субъекты актовой записи об установлении отцовства</xs:documentation>
|
752
784
|
</xs:annotation>
|
@@ -789,7 +821,8 @@
|
|
789
821
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
790
822
|
</xs:annotation>
|
791
823
|
</xs:element>
|
792
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForNameChange"
|
824
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForNameChange"
|
825
|
+
minOccurs="0">
|
793
826
|
<xs:annotation>
|
794
827
|
<xs:documentation>Субъекты актовой записи об изменении имени</xs:documentation>
|
795
828
|
</xs:annotation>
|
@@ -915,7 +948,8 @@
|
|
915
948
|
<xs:element ref="cm:actRecordNumber"/>
|
916
949
|
<xs:element ref="cm:actRecordDate"/>
|
917
950
|
<xs:element ref="cm:isRecovered" minOccurs="0"/>
|
918
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
951
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForBirth"
|
952
|
+
minOccurs="0">
|
919
953
|
<xs:annotation>
|
920
954
|
<xs:documentation>Субъекты актовой записи о рождении</xs:documentation>
|
921
955
|
</xs:annotation>
|
@@ -1001,12 +1035,14 @@
|
|
1001
1035
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
1002
1036
|
</xs:annotation>
|
1003
1037
|
</xs:element>
|
1004
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForDivorce"
|
1038
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForDivorce"
|
1039
|
+
minOccurs="0">
|
1005
1040
|
<xs:annotation>
|
1006
1041
|
<xs:documentation>Субъект актовой записи о разводе</xs:documentation>
|
1007
1042
|
</xs:annotation>
|
1008
1043
|
</xs:element>
|
1009
|
-
<xs:element name="documentConfirmingDivorce"
|
1044
|
+
<xs:element name="documentConfirmingDivorce"
|
1045
|
+
type="doc:DocumentsConfirmingDivorce" minOccurs="0">
|
1010
1046
|
<xs:annotation>
|
1011
1047
|
<xs:documentation>Документы обоснования для развода</xs:documentation>
|
1012
1048
|
</xs:annotation>
|
@@ -1044,7 +1080,8 @@
|
|
1044
1080
|
<xs:element ref="cm:actRecordNumber"/>
|
1045
1081
|
<xs:element ref="cm:actRecordDate"/>
|
1046
1082
|
<xs:element ref="cm:isRecovered" minOccurs="0"/>
|
1047
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForAdoption"
|
1083
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForAdoption"
|
1084
|
+
minOccurs="0">
|
1048
1085
|
<xs:annotation>
|
1049
1086
|
<xs:documentation>Субъекты актовой записи об усыновлении</xs:documentation>
|
1050
1087
|
</xs:annotation>
|
@@ -1086,7 +1123,8 @@
|
|
1086
1123
|
<xs:documentation>Признак восстановленной актовой записи</xs:documentation>
|
1087
1124
|
</xs:annotation>
|
1088
1125
|
</xs:element>
|
1089
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForFiliation"
|
1126
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForFiliation"
|
1127
|
+
minOccurs="0">
|
1090
1128
|
<xs:annotation>
|
1091
1129
|
<xs:documentation>Субъекты актовой записи об установлении отцовства</xs:documentation>
|
1092
1130
|
</xs:annotation>
|
@@ -1133,7 +1171,8 @@
|
|
1133
1171
|
<xs:documentation>Дополнительный контент</xs:documentation>
|
1134
1172
|
</xs:annotation>
|
1135
1173
|
</xs:element>
|
1136
|
-
<xs:element name="participants" type="doc:ActRecordParticipantsForNameChange"
|
1174
|
+
<xs:element name="participants" type="doc:ActRecordParticipantsForNameChange"
|
1175
|
+
minOccurs="0">
|
1137
1176
|
<xs:annotation>
|
1138
1177
|
<xs:documentation>Субъекты актовой записи об изменении имени</xs:documentation>
|
1139
1178
|
</xs:annotation>
|
@@ -1448,7 +1487,8 @@
|
|
1448
1487
|
<xs:element ref="cm:hasCommonChildrenUnderAge" minOccurs="0"/>
|
1449
1488
|
<xs:element ref="cm:newLastNameOfHusb"/>
|
1450
1489
|
<xs:element ref="cm:newLastNameOfWife"/>
|
1451
|
-
<xs:element name="missingPersonAssetsManager" type="ac:MissingPersonAssetsManager"
|
1490
|
+
<xs:element name="missingPersonAssetsManager" type="ac:MissingPersonAssetsManager"
|
1491
|
+
minOccurs="0">
|
1452
1492
|
<xs:annotation>
|
1453
1493
|
<xs:documentation>Управляющий имуществом безвестно отсутствующего супруга (используется при регистрации расторжения брака по заявлению одного супруга и решению суда по другому супругу)</xs:documentation>
|
1454
1494
|
</xs:annotation>
|
@@ -1659,6 +1699,11 @@
|
|
1659
1699
|
<xs:documentation>занятость матери заполняется из медицинского свидетельства о рождении, пункт 8 (при мертворождении - пункт 10), указывается соответствующий код.</xs:documentation>
|
1660
1700
|
</xs:annotation>
|
1661
1701
|
</xs:element>
|
1702
|
+
<xs:element minOccurs="0" name="filliationAgreeByFather" type="xs:boolean">
|
1703
|
+
<xs:annotation>
|
1704
|
+
<xs:documentation>Признак согласия отца ребенка на установление отцовства одновременно с регистрацией рождения</xs:documentation>
|
1705
|
+
</xs:annotation>
|
1706
|
+
</xs:element>
|
1662
1707
|
</xs:sequence>
|
1663
1708
|
</xs:complexType>
|
1664
1709
|
<xs:complexType name="ActRecordContentOfBirth">
|
@@ -1790,7 +1835,8 @@
|
|
1790
1835
|
<xs:element ref="exdoc:medicalCertificateOfBirthByPrivatePractitioner" minOccurs="0"/>
|
1791
1836
|
<xs:element ref="exdoc:medicalCertificateOfSurrogateMotherAgree" minOccurs="0"/>
|
1792
1837
|
<xs:element ref="exdoc:medicalCertificateOfPerinatalDeathByOrganization" minOccurs="0"/>
|
1793
|
-
<xs:element ref="exdoc:medicalCertificateOfPerinatalDeathByPrivatePractitioner"
|
1838
|
+
<xs:element ref="exdoc:medicalCertificateOfPerinatalDeathByPrivatePractitioner"
|
1839
|
+
minOccurs="0"/>
|
1794
1840
|
<xs:element ref="exdoc:requisitesStatementOfPersonAttentedAtBirth" minOccurs="0"/>
|
1795
1841
|
<xs:element ref="exdoc:courtDecisionOfBirth" minOccurs="0"/>
|
1796
1842
|
<xs:element ref="exdoc:documentAboutFindingChild" minOccurs="0"/>
|
@@ -1807,7 +1853,8 @@
|
|
1807
1853
|
<xs:element ref="exdoc:medicalCertificateOfDeathByPrivatePractitioner" minOccurs="0"/>
|
1808
1854
|
<xs:element ref="exdoc:courtDecisionOfDeath" minOccurs="0"/>
|
1809
1855
|
<xs:element ref="exdoc:medicalCertificateOfPerinatalDeathByOrganization" minOccurs="0"/>
|
1810
|
-
<xs:element ref="exdoc:medicalCertificateOfPerinatalDeathByPrivatePractitioner"
|
1856
|
+
<xs:element ref="exdoc:medicalCertificateOfPerinatalDeathByPrivatePractitioner"
|
1857
|
+
minOccurs="0"/>
|
1811
1858
|
<xs:element ref="exdoc:documentDeathUnjustlyRepressed" minOccurs="0"/>
|
1812
1859
|
</xs:choice>
|
1813
1860
|
</xs:complexType>
|
@@ -2132,12 +2179,12 @@
|
|
2132
2179
|
<xs:documentation>Прочие заявители</xs:documentation>
|
2133
2180
|
</xs:annotation>
|
2134
2181
|
<xs:choice minOccurs="0" maxOccurs="1">
|
2135
|
-
<xs:element
|
2182
|
+
<xs:element minOccurs="0" ref="ac:applicantOrganization">
|
2136
2183
|
<xs:annotation>
|
2137
2184
|
<xs:documentation>Сведения о заявителе - юридическом лице (в лице его уполномоченного представителя - сотрудника)</xs:documentation>
|
2138
2185
|
</xs:annotation>
|
2139
2186
|
</xs:element>
|
2140
|
-
<xs:element
|
2187
|
+
<xs:element minOccurs="0" ref="ac:applicantPerson">
|
2141
2188
|
<xs:annotation>
|
2142
2189
|
<xs:documentation>Сведения о заявителе - физическом лице (иное уполномоченное лицо)</xs:documentation>
|
2143
2190
|
</xs:annotation>
|
@@ -2309,12 +2356,14 @@
|
|
2309
2356
|
<xs:documentation>Документы - основания для регистрации установления отцовства</xs:documentation>
|
2310
2357
|
</xs:annotation>
|
2311
2358
|
<xs:sequence minOccurs="1">
|
2312
|
-
<xs:element name="jointStatement"
|
2359
|
+
<xs:element name="jointStatement"
|
2360
|
+
type="doc:RequisitesFromStatementsForServiceJointFiliation" minOccurs="0">
|
2313
2361
|
<xs:annotation>
|
2314
2362
|
<xs:documentation>Совместное заявление родителей, не состоящих в браке</xs:documentation>
|
2315
2363
|
</xs:annotation>
|
2316
2364
|
</xs:element>
|
2317
|
-
<xs:element name="fatherStatement"
|
2365
|
+
<xs:element name="fatherStatement"
|
2366
|
+
type="doc:RequisitesFromStatementsForServiceJointFiliation" minOccurs="0">
|
2318
2367
|
<xs:annotation>
|
2319
2368
|
<xs:documentation>Заявление отца ребенка</xs:documentation>
|
2320
2369
|
</xs:annotation>
|
@@ -2355,12 +2404,14 @@
|
|
2355
2404
|
<xs:documentation>Связанные измененные документы в услуге усыновления</xs:documentation>
|
2356
2405
|
</xs:annotation>
|
2357
2406
|
<xs:sequence minOccurs="1">
|
2358
|
-
<xs:element name="birthActRecordRequisitesBeforeAct" type="doc:OldActRecordRequisites"
|
2407
|
+
<xs:element name="birthActRecordRequisitesBeforeAct" type="doc:OldActRecordRequisites"
|
2408
|
+
minOccurs="0">
|
2359
2409
|
<xs:annotation>
|
2360
2410
|
<xs:documentation>Реквизиты актовой записи о рождении (до усыновления)</xs:documentation>
|
2361
2411
|
</xs:annotation>
|
2362
2412
|
</xs:element>
|
2363
|
-
<xs:element name="birthActRecordRequisitesAfterAct" type="doc:OldActRecordRequisites"
|
2413
|
+
<xs:element name="birthActRecordRequisitesAfterAct" type="doc:OldActRecordRequisites"
|
2414
|
+
minOccurs="0">
|
2364
2415
|
<xs:annotation>
|
2365
2416
|
<xs:documentation>Реквизиты актовой записи о рождении (после усыновления)</xs:documentation>
|
2366
2417
|
</xs:annotation>
|
@@ -2424,7 +2475,8 @@
|
|
2424
2475
|
<xs:documentation>ЭП должностного лица органа ЗАГС</xs:documentation>
|
2425
2476
|
</xs:annotation>
|
2426
2477
|
</xs:element>
|
2427
|
-
<xs:element name="otherInformationAndOfficialAnnotations"
|
2478
|
+
<xs:element name="otherInformationAndOfficialAnnotations"
|
2479
|
+
type="doc:OtherInformationAndOfficialAnnotations">
|
2428
2480
|
<xs:annotation>
|
2429
2481
|
<xs:documentation>Иные сведения и служебные отметки</xs:documentation>
|
2430
2482
|
</xs:annotation>
|
@@ -2479,7 +2531,8 @@
|
|
2479
2531
|
<xs:documentation>Реквизиты бумажного свидетельства для актовой записи о смерти</xs:documentation>
|
2480
2532
|
</xs:annotation>
|
2481
2533
|
</xs:element>
|
2482
|
-
<xs:element name="requisitesForStatementBirthFromSingleMother"
|
2534
|
+
<xs:element name="requisitesForStatementBirthFromSingleMother"
|
2535
|
+
type="doc:RequisitesForStatementBirthFromSingleMother">
|
2483
2536
|
<xs:annotation>
|
2484
2537
|
<xs:documentation>Реквизиты заявления одинокой матери</xs:documentation>
|
2485
2538
|
</xs:annotation>
|
@@ -2514,7 +2567,8 @@
|
|
2514
2567
|
<xs:documentation>Реквизиты АЗ и Свидетельства о сметри</xs:documentation>
|
2515
2568
|
</xs:annotation>
|
2516
2569
|
</xs:element>
|
2517
|
-
<xs:element name="actRecAndCertMarriageRequisitesForStmt"
|
2570
|
+
<xs:element name="actRecAndCertMarriageRequisitesForStmt"
|
2571
|
+
type="doc:ActRecAndCertMarriageRequisitesForStmt"/>
|
2518
2572
|
<xs:element name="requisitesPaperReference" type="doc:RequisitesPaperReference"/>
|
2519
2573
|
<xs:element name="requisitesPaperCertificate" type="doc:RequisitesPaperCertificate"/>
|
2520
2574
|
<xs:element name="singleStatementOfDivorce" type="doc:RequisitesFromStatementsForServiceDivorce">
|
@@ -2574,93 +2628,111 @@
|
|
2574
2628
|
</xs:annotation>
|
2575
2629
|
</xs:element>
|
2576
2630
|
<!-- Свидетельства с ЭП -->
|
2577
|
-
<xs:element name="signedActRecordToCertificateBirth"
|
2631
|
+
<xs:element name="signedActRecordToCertificateBirth"
|
2632
|
+
type="doc:SignedActRecordToCertificateBirth">
|
2578
2633
|
<xs:annotation>
|
2579
2634
|
<xs:documentation>Актовая запись о рождении в объеме свидетельства c ЭП</xs:documentation>
|
2580
2635
|
</xs:annotation>
|
2581
2636
|
</xs:element>
|
2582
|
-
<xs:element name="signedActRecordToCertificateDeath"
|
2637
|
+
<xs:element name="signedActRecordToCertificateDeath"
|
2638
|
+
type="doc:SignedActRecordToCertificateDeath">
|
2583
2639
|
<xs:annotation>
|
2584
2640
|
<xs:documentation>Актовая запись о смерти в объеме свидетельства c ЭП</xs:documentation>
|
2585
2641
|
</xs:annotation>
|
2586
2642
|
</xs:element>
|
2587
|
-
<xs:element name="signedActRecordToCertificateAdoption"
|
2643
|
+
<xs:element name="signedActRecordToCertificateAdoption"
|
2644
|
+
type="doc:SignedActRecordToCertificateAdoption">
|
2588
2645
|
<xs:annotation>
|
2589
2646
|
<xs:documentation>Актовая запись об усыновлении (удочерении) в объеме свидетельства c ЭП</xs:documentation>
|
2590
2647
|
</xs:annotation>
|
2591
2648
|
</xs:element>
|
2592
|
-
<xs:element name="signedActRecordToCertificateDivorce"
|
2649
|
+
<xs:element name="signedActRecordToCertificateDivorce"
|
2650
|
+
type="doc:SignedActRecordToCertificateDivorce">
|
2593
2651
|
<xs:annotation>
|
2594
2652
|
<xs:documentation>Актовая запись о расторжении брака в объеме свидетельства c ЭП</xs:documentation>
|
2595
2653
|
</xs:annotation>
|
2596
2654
|
</xs:element>
|
2597
|
-
<xs:element name="signedActRecordToCertificateMarriage"
|
2655
|
+
<xs:element name="signedActRecordToCertificateMarriage"
|
2656
|
+
type="doc:SignedActRecordToCertificateMarriage">
|
2598
2657
|
<xs:annotation>
|
2599
2658
|
<xs:documentation>Актовая запись о заключении брака в объеме свидетельства c ЭП</xs:documentation>
|
2600
2659
|
</xs:annotation>
|
2601
2660
|
</xs:element>
|
2602
|
-
<xs:element name="signedActRecordToCertificateNameChange"
|
2661
|
+
<xs:element name="signedActRecordToCertificateNameChange"
|
2662
|
+
type="doc:SignedActRecordToCertificateNameChange">
|
2603
2663
|
<xs:annotation>
|
2604
2664
|
<xs:documentation>Актовая запись о перемене имени в объеме свидетельства c ЭП</xs:documentation>
|
2605
2665
|
</xs:annotation>
|
2606
2666
|
</xs:element>
|
2607
|
-
<xs:element name="signedActRecordToCertificateFiliation"
|
2667
|
+
<xs:element name="signedActRecordToCertificateFiliation"
|
2668
|
+
type="doc:SignedActRecordToCertificateFiliation">
|
2608
2669
|
<xs:annotation>
|
2609
2670
|
<xs:documentation>Актовая запись об установлении отцовства в объеме свидетельства c ЭП</xs:documentation>
|
2610
2671
|
</xs:annotation>
|
2611
2672
|
</xs:element>
|
2612
2673
|
<!-- Справки с ЭП -->
|
2613
|
-
<xs:element name="signedActRecordToReferenceBirth24"
|
2674
|
+
<xs:element name="signedActRecordToReferenceBirth24"
|
2675
|
+
type="doc:SignedActRecordToReferenceBirth24">
|
2614
2676
|
<xs:annotation>
|
2615
2677
|
<xs:documentation>Актовая запись о рождении в объеме справки формы 24 c ЭП</xs:documentation>
|
2616
2678
|
</xs:annotation>
|
2617
2679
|
</xs:element>
|
2618
|
-
<xs:element name="signedActRecordToReferenceBirth25"
|
2680
|
+
<xs:element name="signedActRecordToReferenceBirth25"
|
2681
|
+
type="doc:SignedActRecordToReferenceBirth25">
|
2619
2682
|
<xs:annotation>
|
2620
2683
|
<xs:documentation>Актовая запись о рождении в объеме справки формы 25 c ЭП</xs:documentation>
|
2621
2684
|
</xs:annotation>
|
2622
2685
|
</xs:element>
|
2623
|
-
<xs:element name="signedActRecordToReferenceBirth26"
|
2686
|
+
<xs:element name="signedActRecordToReferenceBirth26"
|
2687
|
+
type="doc:SignedActRecordToReferenceBirth26">
|
2624
2688
|
<xs:annotation>
|
2625
2689
|
<xs:documentation>Актовая запись о рождении в объеме справки формы 26 c ЭП</xs:documentation>
|
2626
2690
|
</xs:annotation>
|
2627
2691
|
</xs:element>
|
2628
|
-
<xs:element name="signedActRecordToReferenceMarriage27"
|
2692
|
+
<xs:element name="signedActRecordToReferenceMarriage27"
|
2693
|
+
type="doc:SignedActRecordToReferenceMarriage27">
|
2629
2694
|
<xs:annotation>
|
2630
2695
|
<xs:documentation>Актовая запись о заключении брака в объеме справки формы 27 c ЭП</xs:documentation>
|
2631
2696
|
</xs:annotation>
|
2632
2697
|
</xs:element>
|
2633
|
-
<xs:element name="signedActRecordToReferenceMarriage28"
|
2698
|
+
<xs:element name="signedActRecordToReferenceMarriage28"
|
2699
|
+
type="doc:SignedActRecordToReferenceMarriage28">
|
2634
2700
|
<xs:annotation>
|
2635
2701
|
<xs:documentation>Актовая запись о заключении брака в объеме справки формы 28 c ЭП</xs:documentation>
|
2636
2702
|
</xs:annotation>
|
2637
2703
|
</xs:element>
|
2638
|
-
<xs:element name="signedActRecordToReferenceDivorce29"
|
2704
|
+
<xs:element name="signedActRecordToReferenceDivorce29"
|
2705
|
+
type="doc:SignedActRecordToReferenceDivorce29">
|
2639
2706
|
<xs:annotation>
|
2640
2707
|
<xs:documentation>Актовая запись о расторжении браке в объеме справки формы 29 c ЭП</xs:documentation>
|
2641
2708
|
</xs:annotation>
|
2642
2709
|
</xs:element>
|
2643
|
-
<xs:element name="signedActRecordToReferenceAdoption30"
|
2710
|
+
<xs:element name="signedActRecordToReferenceAdoption30"
|
2711
|
+
type="doc:SignedActRecordToReferenceAdoption30">
|
2644
2712
|
<xs:annotation>
|
2645
2713
|
<xs:documentation>Актовая запись об усыновлении (удочерении) в объеме справки формы 30 c ЭП</xs:documentation>
|
2646
2714
|
</xs:annotation>
|
2647
2715
|
</xs:element>
|
2648
|
-
<xs:element name="signedActRecordToReferenceFiliation31"
|
2716
|
+
<xs:element name="signedActRecordToReferenceFiliation31"
|
2717
|
+
type="doc:SignedActRecordToReferenceFiliation31">
|
2649
2718
|
<xs:annotation>
|
2650
2719
|
<xs:documentation>Актовая запись об установлении отцовства в объеме справки формы 31 c ЭП</xs:documentation>
|
2651
2720
|
</xs:annotation>
|
2652
2721
|
</xs:element>
|
2653
|
-
<xs:element name="signedActRecordToReferenceNameChange32"
|
2722
|
+
<xs:element name="signedActRecordToReferenceNameChange32"
|
2723
|
+
type="doc:SignedActRecordToReferenceNameChange32">
|
2654
2724
|
<xs:annotation>
|
2655
2725
|
<xs:documentation>Актовая запись о перемене имени в объеме справки формы 32 c ЭП</xs:documentation>
|
2656
2726
|
</xs:annotation>
|
2657
2727
|
</xs:element>
|
2658
|
-
<xs:element name="signedActRecordToReferenceDeath33"
|
2728
|
+
<xs:element name="signedActRecordToReferenceDeath33"
|
2729
|
+
type="doc:SignedActRecordToReferenceDeath33">
|
2659
2730
|
<xs:annotation>
|
2660
2731
|
<xs:documentation>Актовая запись о смерти в объеме справки формы 33 c ЭП</xs:documentation>
|
2661
2732
|
</xs:annotation>
|
2662
2733
|
</xs:element>
|
2663
|
-
<xs:element name="signedActRecordToReferenceDeath34"
|
2734
|
+
<xs:element name="signedActRecordToReferenceDeath34"
|
2735
|
+
type="doc:SignedActRecordToReferenceDeath34">
|
2664
2736
|
<xs:annotation>
|
2665
2737
|
<xs:documentation>Актовая запись о смерти в объеме справки формы 34 c ЭП</xs:documentation>
|
2666
2738
|
</xs:annotation>
|
@@ -1440,7 +1440,7 @@
|
|
1440
1440
|
</xs:enumeration>
|
1441
1441
|
<xs:enumeration value="refuse">
|
1442
1442
|
<xs:annotation>
|
1443
|
-
<xs:documentation
|
1443
|
+
<xs:documentation>Отказ</xs:documentation>
|
1444
1444
|
</xs:annotation>
|
1445
1445
|
</xs:enumeration>
|
1446
1446
|
<xs:enumeration value="timeout">
|
@@ -62,7 +62,7 @@
|
|
62
62
|
<xs:element name="documentsConfirmingBirth" type="doc:DocumentsConfirmingBirth"
|
63
63
|
minOccurs="0"/>
|
64
64
|
<xs:element name="documentsConfirmingParticipant"
|
65
|
-
type="doc:DocumentsConfirmingFiliationForBirthStmt"/>
|
65
|
+
type="doc:DocumentsConfirmingFiliationForBirthStmt" maxOccurs="1" minOccurs="0"/>
|
66
66
|
<xs:element name="otherApplicants" type="doc:OtherApplicants" minOccurs="0"/>
|
67
67
|
</xs:sequence>
|
68
68
|
</xs:complexType>
|
@@ -256,11 +256,11 @@
|
|
256
256
|
<xs:element name="item" type="ac:Registrar" minOccurs="0" maxOccurs="unbounded"/>
|
257
257
|
</xs:sequence>
|
258
258
|
</xs:complexType>
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
259
|
+
<xs:complexType name="ListOfFreeDates">
|
260
|
+
<xs:sequence minOccurs="1">
|
261
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="item" type="xs:time"/>
|
262
|
+
</xs:sequence>
|
263
|
+
</xs:complexType>
|
264
264
|
<xs:complexType name="ServiceStatus">
|
265
265
|
<xs:annotation>
|
266
266
|
<xs:documentation>Сообщение об изменении статуса обработки отправленного электронного
|
@@ -232,7 +232,7 @@
|
|
232
232
|
</binding>
|
233
233
|
<service name="OrderService">
|
234
234
|
<port name="OrderServiceImplPort" binding="tns:OrderServiceImplPortBinding">
|
235
|
-
<soap:address location="
|
235
|
+
<soap:address location="http://localhost:8001/OrderServiceImpl/OrderService"/>
|
236
236
|
</port>
|
237
237
|
</service>
|
238
238
|
</definitions>
|
@@ -1,6 +1,10 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<!-- edited with XMLSpy v2011 rel. 2 (http://www.altova.com) by free (free) -->
|
3
|
-
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
3
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
4
|
+
xmlns:exdoc="http://ezags.rt.ru/type/externaldocuments/"
|
5
|
+
xmlns:cm="http://ezags.rt.ru/type/common/" xmlns:ac="http://ezags.rt.ru/type/actor/"
|
6
|
+
targetNamespace="http://ezags.rt.ru/type/externaldocuments/" elementFormDefault="qualified"
|
7
|
+
attributeFormDefault="unqualified">
|
4
8
|
<xs:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="common.xsd"/>
|
5
9
|
<xs:import namespace="http://ezags.rt.ru/type/actor/" schemaLocation="actor.xsd"/>
|
6
10
|
<!-- Medical documents Start -->
|
@@ -275,37 +279,44 @@
|
|
275
279
|
<xs:element ref="cm:proceedMethod" minOccurs="0"/>
|
276
280
|
</xs:sequence>
|
277
281
|
</xs:complexType>
|
278
|
-
<xs:element name="medicalCertificateOfBirthByOrganization"
|
282
|
+
<xs:element name="medicalCertificateOfBirthByOrganization"
|
283
|
+
type="exdoc:MedicalCertificateOfBirthByOrganization">
|
279
284
|
<xs:annotation>
|
280
285
|
<xs:documentation>Документ установленной формы о рождении, выданный медицинской организацией, в которой происходили роды</xs:documentation>
|
281
286
|
</xs:annotation>
|
282
287
|
</xs:element>
|
283
|
-
<xs:element name="medicalCertificateOfBirthByPrivatePractitioner"
|
288
|
+
<xs:element name="medicalCertificateOfBirthByPrivatePractitioner"
|
289
|
+
type="exdoc:MedicalCertificateOfBirthByPrivatePractitioner">
|
284
290
|
<xs:annotation>
|
285
291
|
<xs:documentation>Документ установленной формы о рождении, выданный медицинской организацией, врач которой оказывал медицинскую помощь при родах или в которую обратилась мать после родов, либо частнопрактикующим врачом (при родах вне медицинской организации)</xs:documentation>
|
286
292
|
</xs:annotation>
|
287
293
|
</xs:element>
|
288
|
-
<xs:element name="medicalCertificateOfSurrogateMotherAgree"
|
294
|
+
<xs:element name="medicalCertificateOfSurrogateMotherAgree"
|
295
|
+
type="exdoc:MedicalCertificateOfSurrogateMotherAgree">
|
289
296
|
<xs:annotation>
|
290
297
|
<xs:documentation>Документ, выданный медицинской организацией и подтверждающий факт получения согласия женщины, родившей ребенка (суррогатной матери), на запись супругов, давших согласие на имплантацию эмбриона другой женщине в целях его вынашивания, родителями ребенка</xs:documentation>
|
291
298
|
</xs:annotation>
|
292
299
|
</xs:element>
|
293
|
-
<xs:element name="medicalCertificateOfPerinatalDeathByOrganization"
|
300
|
+
<xs:element name="medicalCertificateOfPerinatalDeathByOrganization"
|
301
|
+
type="exdoc:MedicalCertificateOfDeathByOrganization">
|
294
302
|
<xs:annotation>
|
295
303
|
<xs:documentation>Документ установленной формы о перинатальной смерти, выданный медицинской организацией</xs:documentation>
|
296
304
|
</xs:annotation>
|
297
305
|
</xs:element>
|
298
|
-
<xs:element name="medicalCertificateOfPerinatalDeathByPrivatePractitioner"
|
306
|
+
<xs:element name="medicalCertificateOfPerinatalDeathByPrivatePractitioner"
|
307
|
+
type="exdoc:MedicalCertificateOfDeathByPrivatePractitioner">
|
299
308
|
<xs:annotation>
|
300
309
|
<xs:documentation>Документ установленной формы о перинатальной смерти, выданный частнопрактикующим врачом</xs:documentation>
|
301
310
|
</xs:annotation>
|
302
311
|
</xs:element>
|
303
|
-
<xs:element name="medicalCertificateOfDeathByOrganization"
|
312
|
+
<xs:element name="medicalCertificateOfDeathByOrganization"
|
313
|
+
type="exdoc:MedicalCertificateOfDeathByOrganization">
|
304
314
|
<xs:annotation>
|
305
315
|
<xs:documentation>Документ установленной формы о смерти, выданный мед. организацией</xs:documentation>
|
306
316
|
</xs:annotation>
|
307
317
|
</xs:element>
|
308
|
-
<xs:element name="medicalCertificateOfDeathByPrivatePractitioner"
|
318
|
+
<xs:element name="medicalCertificateOfDeathByPrivatePractitioner"
|
319
|
+
type="exdoc:MedicalCertificateOfDeathByPrivatePractitioner">
|
309
320
|
<xs:annotation>
|
310
321
|
<xs:documentation>Документ установленной формы о смерти, выданный частнопрактикующим врачом</xs:documentation>
|
311
322
|
</xs:annotation>
|
@@ -360,7 +371,8 @@
|
|
360
371
|
<xs:documentation>Документ, выданный медицинской организацией и подтверждающий возраст и пол ребенка (при регистрации рождения найденного (подкинутого) ребенка)</xs:documentation>
|
361
372
|
</xs:annotation>
|
362
373
|
</xs:element>
|
363
|
-
<xs:element name="requisitesStatementOfPersonAttentedAtBirth"
|
374
|
+
<xs:element name="requisitesStatementOfPersonAttentedAtBirth"
|
375
|
+
type="exdoc:RequisitesStatementOfPersonAttentedAtBirth">
|
364
376
|
<xs:annotation>
|
365
377
|
<xs:documentation>Заявление лица, присутствовавшего во время родов, о рождении ребенка - при родах вне медицинской организации и без оказания медицинской помощи (до исполнения ребенком одного года)</xs:documentation>
|
366
378
|
</xs:annotation>
|
@@ -375,4 +387,6 @@
|
|
375
387
|
<xs:documentation>Удостоверение льготника установленного образца для НЕГО</xs:documentation>
|
376
388
|
</xs:annotation>
|
377
389
|
</xs:element>
|
390
|
+
<xs:element name="courtActDecision" type="exdoc:CourtActDecision"/>
|
391
|
+
<xs:element name="courtActVerdict" type="exdoc:CourtActVerdict"/>
|
378
392
|
</xs:schema>
|
metadata
CHANGED
@@ -2,25 +2,25 @@
|
|
2
2
|
name: ezags-xsd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.2.
|
5
|
+
version: 2.2.7.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Anton Sozontov
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-07-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
+
prerelease: false
|
16
|
+
name: xml_schema_mapper
|
17
|
+
type: :runtime
|
15
18
|
version_requirements: !ruby/object:Gem::Requirement
|
16
19
|
requirements:
|
17
20
|
- - ! '>='
|
18
21
|
- !ruby/object:Gem::Version
|
19
22
|
version: 0.0.8
|
20
23
|
none: false
|
21
|
-
name: xml_schema_mapper
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
24
|
requirement: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - ! '>='
|
@@ -28,15 +28,15 @@ dependencies:
|
|
28
28
|
version: 0.0.8
|
29
29
|
none: false
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
|
+
prerelease: false
|
32
|
+
name: libxml-ruby
|
33
|
+
type: :runtime
|
31
34
|
version_requirements: !ruby/object:Gem::Requirement
|
32
35
|
requirements:
|
33
36
|
- - ! '>='
|
34
37
|
- !ruby/object:Gem::Version
|
35
38
|
version: 2.6.0
|
36
39
|
none: false
|
37
|
-
name: libxml-ruby
|
38
|
-
type: :runtime
|
39
|
-
prerelease: false
|
40
40
|
requirement: !ruby/object:Gem::Requirement
|
41
41
|
requirements:
|
42
42
|
- - ! '>='
|
@@ -44,15 +44,15 @@ dependencies:
|
|
44
44
|
version: 2.6.0
|
45
45
|
none: false
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
|
+
prerelease: false
|
48
|
+
name: rspec
|
49
|
+
type: :development
|
47
50
|
version_requirements: !ruby/object:Gem::Requirement
|
48
51
|
requirements:
|
49
52
|
- - ! '>='
|
50
53
|
- !ruby/object:Gem::Version
|
51
54
|
version: '0'
|
52
55
|
none: false
|
53
|
-
name: rspec
|
54
|
-
type: :development
|
55
|
-
prerelease: false
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - ! '>='
|
@@ -789,6 +789,7 @@ files:
|
|
789
789
|
- vendor/ezags-protocols/NSI/NSIService.xsd
|
790
790
|
- vendor/ezags-protocols/NSI/NSIokato3.xsd
|
791
791
|
- vendor/ezags-protocols/NSI/NSIoktmo.xsd
|
792
|
+
- vendor/ezags-protocols/README.md
|
792
793
|
- vendor/ezags-protocols/UNIFO/QuittanceService.xsd
|
793
794
|
- vendor/ezags-protocols/UNIFO/QuittanceServiceFKClient.wsdl
|
794
795
|
- vendor/ezags-protocols/UNIFO/QuittanceServiceFKService.wsdl
|
@@ -868,12 +869,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
868
869
|
requirements:
|
869
870
|
- - ! '>='
|
870
871
|
- !ruby/object:Gem::Version
|
872
|
+
segments:
|
873
|
+
- 0
|
874
|
+
hash: -2071705724655914885
|
871
875
|
version: '0'
|
872
876
|
none: false
|
873
877
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
874
878
|
requirements:
|
875
879
|
- - ! '>='
|
876
880
|
- !ruby/object:Gem::Version
|
881
|
+
segments:
|
882
|
+
- 0
|
883
|
+
hash: -2071705724655914885
|
877
884
|
version: '0'
|
878
885
|
none: false
|
879
886
|
requirements: []
|