git / code.ach.gov.ru / scarping / buscmd

commit 7f41b0ba123ce4b4f2939d47b3750914e8b890da

author Иван Бегтин <ibegtin@gmail.com>

date 2019-05-28 05:12:52 +0300

parents 883490b2

browse tree at this commit

message

Добавлены обновлённые форматы и код обновлён до Python 3

files

fileadddel
buscmd.py+24-24
formats/1.7.8.15/xsd/External.xsd+1375-0
formats/1.7.8.15/xsd/FK.xsd+131-0
formats/1.7.8.15/xsd/NSI.xsd+113-0
formats/1.7.8.15/xsd/Types.xsd+12056-0
names.py+10-10

patch

diff --git a/buscmd.py b/buscmd.py
index a8f449db35ce5a2c2bb136d8ec2e606eccfd1cd2..3f3df09a8f42de487ecc3a2c1575ffde0aeb3795 100644
--- a/buscmd.py
+++ b/buscmd.py
@@ -2,7 +2,7 @@ #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
 import click
-import urllib
+import urllib.request, urllib.parse, urllib.error
 import json
 import os
 import glob
@@ -16,9 +16,9 @@ import shutil
 import hashlib
 import zlib
 from pyparsing import Word, nums, alphanums, alphas, oneOf, lineStart, lineEnd, Optional, restOfLine, Literal, ParseException, CaselessLiteral
-from urllib import URLopener
+from urllib.request import URLopener
 
-from pymongo import Connection, DESCENDING, ASCENDING
+from pymongo import MongoClient, DESCENDING, ASCENDING
 
 XMLTOJSON = '/usr/local/bin/xml-to-json'
 #FILEPATH = '/home/_data/preservation/ftpmirrors/bus/bus.gov.ru/GeneralInfo'
@@ -102,7 +102,7 @@
 class MongoLoader:
     def __init__(self, thepath):
         self.localpath = thepath
-        self.conn = Connection()
+        self.conn = MongoClient()
         self.db = self.conn['bus']
         self.archcoll = self.db['archives']
         self.filecoll = self.db['files']
@@ -110,7 +110,7 @@         pass
 
     def buildIndexes(self):
         self.archcoll.ensure_index([('obj_name', DESCENDING)])
-        for name in CAT_MAP.values():
+        for name in list(CAT_MAP.values()):
             self.db[name].ensure_index([('position.positionId', DESCENDING)])
         for name in NSI_LIST:
             self.db[name].ensure_index([('position.positionId', DESCENDING)])
@@ -120,8 +120,8 @@         """Calc collections stats"""
         import tabulate
         keys = ['category', 'total_files', 'not_loaded', 'count', 'size']
         table = []
-        print 'Collecting stats'
-        cats = CAT_MAP.keys()
+        print('Collecting stats')
+        cats = list(CAT_MAP.keys())
         cats.sort()
         total = ['total', 0, 0, 0, 0]
         for cat in cats:
@@ -149,13 +149,13 @@             total[2] += row[2]
             total[3] += row[3]
             total[4] += row[4]
         table.append(total) 
-        print tabulate.tabulate(table, headers=keys)
+        print(tabulate.tabulate(table, headers=keys))
 
 
     def loadNSI(self):
         """Loads all NSI to DB"""
         for nsiname in NSI_LIST:
-            print nsiname
+            print(nsiname)
 #            if nsiname != DATA_NSI_KBKBUDGET: continue
             ffilter = NSI_PATH + '/' + nsiname + '_*.zip'
 #            print ffilter
@@ -167,16 +167,16 @@                 if not obj:
                     obj = {'obj_name' : obj_name, 'filepath' : pname, 'category' : nsiname, 'filesize' : os.stat(pname)[6], 'status' : ARCHIVE_STATUS_UNPROCESSED}
                     obj.update(calc_hash_crc(pname))
                     self.archcoll.save(obj)
-                    print '-', pname, ':', obj_name, 'saved'
+                    print('-', pname, ':', obj_name, 'saved')
                 else:
-                    print '-', pname, 'already collected'
+                    print('-', pname, 'already collected')
             pass
         pass            
 
 
     def findArchives(self, category=DATA_CATEGORY_GENERAL, dbupdate=True):
         """Collect all archives by category"""
-        print 'Collecting source data from', self.localpath
+        print('Collecting source data from', self.localpath)
         pathname = os.path.join(self.localpath, category)
 #        cat_dirs = os.listdir(self.localpath)
         for dirname, dirnames, filenames in os.walk(pathname):
@@ -191,9 +191,9 @@                     if not obj:
                         obj = {'obj_name' : obj_name, 'filepath' : pname, 'category' : category, 'region' : region, 'filesize' : os.stat(pname)[6], 'status' : ARCHIVE_STATUS_UNPROCESSED}
                         obj.update(calc_hash_crc(pname))
                         self.archcoll.save(obj)
-                        print '-', pname, ':', obj_name, 'saved'
+                        print('-', pname, ':', obj_name, 'saved')
                     else:
-                        print '-', pname, 'already collected'
+                        print('-', pname, 'already collected')
 #                        print obj
 
     def process_category(self, category, force=False, nocheck=False):
@@ -201,10 +201,10 @@         """Process selected category"""
         all = []
         if not force:
             objects = self.archcoll.find({'category' : category, 'status' : {'$in' : [ARCHIVE_STATUS_UNPROCESSED, ARCHIVE_STATUS_PROCESSING]}})
-            print 'Total unprocessed archives:', objects.count()
+            print('Total unprocessed archives:', objects.count())
         else:
             objects = self.archcoll.find({'category' : category})
-            print 'Total archives', objects.count()
+            print('Total archives', objects.count())
         for o in objects:
             all.append(o)
         for o in all:
@@ -233,14 +233,14 @@         files = os.listdir(finndame)
         allfiles = []
         for fname in files:
             allfiles.append({'fname' : fname})
-            self.process_file(o['category'], o['region'] if o.has_key('region') else None, name, os.path.abspath(fname), nocheck=nocheck, force=force)
+            self.process_file(o['category'], o['region'] if 'region' in o else None, name, os.path.abspath(fname), nocheck=nocheck, force=force)
         o['status'] = ARCHIVE_STATUS_PROCESSED
         o['files'] = allfiles
         o['nfiles'] = len(files)
         self.archcoll.save(o)
         os.chdir(cwd)
         shutil.rmtree(finndame)
-        print pname, 'processed'
+        print(pname, 'processed')
         pass
 
     def process_file(self, category, region, archivename, filename, nocheck=False, force=True):
@@ -286,9 +286,9 @@                     proc = {'id': id, 'category' : category, 'region' : region, 'xml' : filename, 'archive': archivename}
                     o['processed'] = proc
                     coll.save(o)
             if found:
-                print '-', name, 'updated'
+                print('-', name, 'updated')
             else:
-                print '-', name, 'saved'
+                print('-', name, 'saved')
         pass
 
     def map_category(self, category):
@@ -304,11 +304,11 @@             return v
 
     def reset(self):
         """Drops databases"""
-        print 'Reset database'
+        print('Reset database')
         self.archcoll.drop()
-        print 'archive collection dropped'
-        for name in CAT_MAP.values():
-            print name, 'collection dropped'
+        print('archive collection dropped')
+        for name in list(CAT_MAP.values()):
+            print(name, 'collection dropped')
             self.db[name].drop()
 
 
diff --git a/formats/1.7.8.15/xsd/External.xsd b/formats/1.7.8.15/xsd/External.xsd
new file mode 100644
index 0000000000000000000000000000000000000000..2da9f2d1b92bbd7a9006fa0819319715a0534d61
--- /dev/null
+++ b/formats/1.7.8.15/xsd/External.xsd
@@ -0,0 +1,1375 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- edited with XMLSpy v2007 (http://www.altova.com) by Alexander (Lanit) -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://bus.gov.ru/external/1" xmlns:t="http://bus.gov.ru/types/1" xmlns:b="http://bus.gov.ru/types/2" targetNamespace="http://bus.gov.ru/external/1" elementFormDefault="qualified" attributeFormDefault="unqualified">
+	<xs:import namespace="http://bus.gov.ru/types/1" schemaLocation="Types.xsd"/>
+	<xs:import namespace="http://bus.gov.ru/types/2" schemaLocation="balance.xsd"/>
+	<xs:element name="actionGrant">
+		<xs:annotation>
+			<xs:documentation>Информация об операциях с целевыми средствами из бюджета</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:actionGrantType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="activityResult">
+		<xs:annotation>
+			<xs:documentation>Информация о результатах деятельности и об использовании имущества</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:activityResultType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503121_2013">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503121) за период до 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503121Type_2013">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503121_2014">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503121) за период начиная с 2014 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503121Type_2014">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503121">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503121Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503127">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении бюджета (ф. 0503127)</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503127Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503127_2015">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении бюджета (ф. 0503127)</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503127Type_2015">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503130_2013">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130) до 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503130Type_2013">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503130_2014">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130) за 2014 год</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503130Type_2014">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503130_2015">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130) за 2015 год и последующие</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503130Type_2015">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503130">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130)</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503130Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503137">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении смет доходов и расходов по приносящей доход деятельности главного распорядителя, получателя бюджетных средств (ф. 0503137)</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503137Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503721">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503721) до 2014 года</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503721Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503721_2014">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503721) за 2014 год</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503721Type_2014">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503721_2015">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503721) за 2015 год и последующие</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503721Type_2015">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503730">
+		<xs:annotation>
+			<xs:documentation>Баланс государственного (муниципального) учреждения (ф. 0503730) до 2014 года</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503730Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503730_2014">
+		<xs:annotation>
+			<xs:documentation>Баланс государственного (муниципального) учреждения (ф. 0503730) за 2014 год</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503730Type_2014">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503730_2015">
+		<xs:annotation>
+			<xs:documentation>Баланс государственного (муниципального) учреждения (ф. 0503730) за 2015 год и последующие</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503730Type_2015">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503737">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737) до 2015 года</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503737Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503737_2015">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737) с 2015 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:annualBalanceF0503737Type_2015">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="annualBalanceF0503762">
+		<xs:annotation>
+			<xs:documentation>Сведения о результатах деятельности учреждения по исполнению государственного (муниципального) задания (ф. 0503762)</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="b:annualBalanceF0503762Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="budgetaryCircumstances">
+		<xs:annotation>
+			<xs:documentation>Информация о показателях бюджетной сметы</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:budgetaryCircumstancesType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="confirmation">
+		<xs:annotation>
+			<xs:documentation>Протокол загрузки информационного пакета</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body" type="t:packetResultType">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="financialActivityPlan">
+		<xs:annotation>
+			<xs:documentation>Информация о плане финансово-хозяйственной деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:financialActivityPlanType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="financialActivityPlan2017">
+		<xs:annotation>
+			<xs:documentation>Информация о плане финансово-хозяйственной деятельности, начиная с 2017 года</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:financialActivityPlan2017Type">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="inspectionActivity">
+		<xs:annotation>
+			<xs:documentation>Сведения о проведенных в отношении учреждения контрольных мероприятиях и их результатах</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:inspectionActivityType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="institutionInfo">
+		<xs:annotation>
+			<xs:documentation>Общая информация об учреждении</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:institutionInfoType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="diverseInfo">
+		<xs:annotation>
+			<xs:documentation>Иная информация об учреждении</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:diverseInfoType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiBudget">
+		<xs:annotation>
+			<xs:documentation>Справочник «Бюджеты»</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiBudgetType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiDepartments">
+		<xs:annotation>
+			<xs:documentation>Справочник «Главы»</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiDepartments" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiFederalService">
+		<xs:annotation>
+			<xs:documentation>Федеральный перечень государственных (муниципальных) услуг (работ) </xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiFederalServiceType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiInstitutionType">
+		<xs:annotation>
+			<xs:documentation>Справочник «Виды учреждений»</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiInstitutionTypeType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiKbkBudget">
+		<xs:annotation>
+			<xs:documentation>Справочник «Коды бюджетной классификации»</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiKbkBudgetType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiKladr">
+		<xs:annotation>
+			<xs:documentation>Классификатор адресов России</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiKladrType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiKosgu">
+		<xs:annotation>
+			<xs:documentation>Справочник «Коды по КОСГУ»</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiKosguType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOgs">
+		<xs:annotation>
+			<xs:documentation>Перечень государственных (муниципальных) учреждений</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:versionedPacketType_ogs">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOgsType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOkato">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор объектов административно-территориального деления</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOkatoType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOkei">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор единиц измерения</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOkeiType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOker">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор экономических регионов</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOkerType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOkfs">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор форм собственности</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOkfsType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOkogu">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор органов государственной власти и управления</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOkoguType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOkopf">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор организационно-правовых форм</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOkopfType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOktmo">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор территорий муниципальных образований</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOktmoType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOkved">
+		<xs:annotation>
+			<xs:documentation>Общероссийский классификатор видов экономической деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOkvedType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiPpo">
+		<xs:annotation>
+			<xs:documentation>Справочник «Публично-правовые образования»</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiPpoType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiTOFK">
+		<xs:annotation>
+			<xs:documentation>Справочник «Территориальные органы Федерального казначейства (ТОФК)»</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiTOFK" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="stateTask">
+		<xs:annotation>
+			<xs:documentation>Информация о государственном (муниципальном) задании на оказание государственных (муниципальных) услуг (выполнение работ) и его исполнении</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:stateTaskType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="stateTask640r">
+		<xs:annotation>
+			<xs:documentation>Государственное задание в соответствии с Постановлением Правительства РФ от 26 июня 2015 г. N640 </xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:stateTask640rType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+		<xs:key name="reportGUID">
+			<xs:selector xpath=".//reportGUID"/>
+			<xs:field xpath="."/>
+		</xs:key>
+	</xs:element>
+	<xs:element name="nsiSubjectService">
+		<xs:annotation>
+			<xs:documentation>Перечень государственных (муниципальных) услуг (работ) субъекта РФ</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiSubjectServiceType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="founderNet">
+		<xs:annotation>
+			<xs:documentation>Подведомственная сеть учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:founderNetType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="checkInfoReport">
+		<xs:annotation>
+			<xs:documentation>Проверка сведений учреждений</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:checkInfoReportType">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+</xs:schema>
diff --git a/formats/1.7.8.15/xsd/FK.xsd b/formats/1.7.8.15/xsd/FK.xsd
new file mode 100644
index 0000000000000000000000000000000000000000..37377e3a69895969dce354cbfad857f2cbd30f9e
--- /dev/null
+++ b/formats/1.7.8.15/xsd/FK.xsd
@@ -0,0 +1,131 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- edited with XMLSpy v2007 (http://www.altova.com) by Alexander (Lanit) -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://bus.gov.ru/fk/1" xmlns:t="http://bus.gov.ru/types/1" targetNamespace="http://bus.gov.ru/fk/1" elementFormDefault="qualified" attributeFormDefault="unqualified">
+	<xs:import namespace="http://bus.gov.ru/types/1" schemaLocation="Types.xsd"/>
+	<xs:element name="confirmation">
+		<xs:annotation>
+			<xs:documentation>Протокол загрузки информационного пакета</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:complexContent>
+									<xs:extension base="t:packetResultType">
+										<xs:sequence>
+											<xs:element name="refFileName" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Имя обработанного файла</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="1024"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="refType">
+												<xs:annotation>
+													<xs:documentation>Тип обработанного пакета
+
+Допустимые значения:
+ OGS - перечень ГМУ;
+ CRC - заявка на изменение перечня ГМУ при передаче в органы ФК от учреждения или организации, являющейся представителем учреждения;
+ CRS - заявка на изменение перечня ГМУ при подаче в АС ФК от Официального сайта ГМУ;
+ REG - реестр размещенных сведений.</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="refPacketTypeType"/>
+												</xs:simpleType>
+											</xs:element>
+										</xs:sequence>
+									</xs:extension>
+								</xs:complexContent>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="nsiOgs">
+		<xs:annotation>
+			<xs:documentation>Перечень государственных (муниципальных) учреждений</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:versionedPacketType_ogs">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:nsiOgsType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="regPublishedInfo">
+		<xs:annotation>
+			<xs:documentation>Реестр размещенных сведений</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:versionedPacketType_ogs">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="position" type="t:regPublishedInfoType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Позиция в информационном пакете</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+									<xs:element name="loadNum" minOccurs="0">
+										<xs:annotation>
+											<xs:documentation>Инкрементальный номер выгрузки с начала года</xs:documentation>
+										</xs:annotation>
+										<xs:simpleType>
+											<xs:restriction base="xs:int">
+												<xs:totalDigits value="3"/>
+											</xs:restriction>
+										</xs:simpleType>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:simpleType name="refPacketTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип обработанного пакета</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="OGS"/>
+			<xs:enumeration value="CRC"/>
+			<xs:enumeration value="CRS"/>
+			<xs:enumeration value="REG"/>
+		</xs:restriction>
+	</xs:simpleType>
+</xs:schema>
diff --git a/formats/1.7.8.15/xsd/NSI.xsd b/formats/1.7.8.15/xsd/NSI.xsd
new file mode 100644
index 0000000000000000000000000000000000000000..e3bbc9abc19cb59a49b4d1866176b00c6bdef669
--- /dev/null
+++ b/formats/1.7.8.15/xsd/NSI.xsd
@@ -0,0 +1,113 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- edited with XMLSpy v2007 (http://www.altova.com) by Alexander (Lanit) -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:t="http://bus.gov.ru/types/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://bus.gov.ru/NSI/1" targetNamespace="http://bus.gov.ru/NSI/1" elementFormDefault="qualified" attributeFormDefault="unqualified">
+	<xs:import namespace="http://bus.gov.ru/types/1" schemaLocation="Types.xsd"/>
+	<xs:element name="consRegStat">
+		<xs:annotation>
+			<xs:documentation>Перечень неполных записей Сводного реестра</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body" type="t:consRegStatType" maxOccurs="unbounded">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="confirmation">
+		<xs:annotation>
+			<xs:documentation>Протокол загрузки информационного пакета</xs:documentation>
+		</xs:annotation>
+		<xs:complexType>
+			<xs:complexContent>
+				<xs:extension base="t:packetType">
+					<xs:sequence>
+						<xs:element name="body">
+							<xs:annotation>
+								<xs:documentation>Данные информационного пакета</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:complexContent>
+									<xs:extension base="t:packetResultType">
+										<xs:sequence>
+											<xs:element name="refFileName" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Имя обработанного файла</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="1024"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="refType" type="refPacketTypeType">
+												<xs:annotation>
+													<xs:documentation>Тип обработанного пакета
+
+Допустимые значения:
+ REF_KLADR1 - Справочник «КЛАДР» (Классификатор адресов России);
+ REF_KLADR2 - Справочник «КЛАДР» (Классификатор адресов России);
+ REF_AddressTypes - Справочник «Типы адресных объектов»;
+ REF_KBK - Справочник кодов бюджетной классификации;
+ REF_KBKGlava - Справочник кодов ведомств;
+ REF_KBKKOSGU - Справочник «Коды КОСГУ»;
+ REF_Budgets - Справочник «Бюджеты»;
+ REF_OKATOtoOKTMO - Справочник «Таблица соответствия кодов ОКАТО кодам ОКТМО»;
+ REF_TOFK - Справочник территориальных органов Федерального казначейства»;
+ REF_OKATO - Общероссийский классификатор объектов административно-территориального деления;
+ REF_OKVED - Общероссийский классификатор видов экономической деятельности;
+ REF_OKEI - Общероссийский классификатор единиц измерения;
+ REF_OKOGU - Общероссийский классификатор органов государственной власти и управления;
+ REF_OKOPF - Общероссийский классификатор организационно-правовых форм;
+ REF_OKTMO - Общероссийский классификатор территорий муниципальных образований;
+ REF_OKFS - Общероссийский классификатор форм собственности;
+ REF_OKER - Общероссийский классификатор экономических регионов;
+ REF_UBPandNUBP - Реестр участников бюджетного процесса, а также юридических лиц, не являющихся участниками бюджетного процесса;
+ REF_REF_Authorities - Справочник «Полномочия организаций»
+													</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:extension>
+								</xs:complexContent>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:extension>
+			</xs:complexContent>
+		</xs:complexType>
+	</xs:element>
+	<xs:simpleType name="refPacketTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип обработанного пакета</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="REF_KLADR1"/>
+			<xs:enumeration value="REF_KLADR2"/>
+			<xs:enumeration value="REF_AddressTypes"/>
+			<xs:enumeration value="REF_KBK"/>
+			<xs:enumeration value="REF_KBKGlava"/>
+			<xs:enumeration value="REF_KBKKOSGU"/>
+			<xs:enumeration value="REF_Budgets"/>
+			<xs:enumeration value="REF_OKATOtoOKTMO"/>
+			<xs:enumeration value="REF_TOFK"/>
+			<xs:enumeration value="REF_OKATO"/>
+			<xs:enumeration value="REF_OKVED"/>
+			<xs:enumeration value="REF_OKEI"/>
+			<xs:enumeration value="REF_OKOGU"/>
+			<xs:enumeration value="REF_OKOPF"/>
+			<xs:enumeration value="REF_OKTMO"/>
+			<xs:enumeration value="REF_OKFS"/>
+			<xs:enumeration value="REF_OKER"/>
+			<xs:enumeration value="REF_UBPandNUBP"/>
+			<xs:enumeration value="REF_Authorities"/>
+		</xs:restriction>
+	</xs:simpleType>
+</xs:schema>
diff --git a/formats/1.7.8.15/xsd/Types.xsd b/formats/1.7.8.15/xsd/Types.xsd
new file mode 100644
index 0000000000000000000000000000000000000000..81e3c0f536bfd447535d4c445782cd65016a82e1
--- /dev/null
+++ b/formats/1.7.8.15/xsd/Types.xsd
@@ -0,0 +1,12056 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- edited with XMLSpy v2007 (http://www.altova.com) by Alexander (Lanit) -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://bus.gov.ru/types/1" targetNamespace="http://bus.gov.ru/types/1" elementFormDefault="qualified" attributeFormDefault="unqualified">
+	<xs:complexType name="actionGrantType">
+		<xs:annotation>
+			<xs:documentation>Операции с целевыми средствами из бюджета</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="financialYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planBudgetaryFunds">
+						<xs:annotation>
+							<xs:documentation>Сумма планируемых поступлений на осуществление бюджетных инвестиций</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="capitalRealAssets" type="decimalType">
+									<xs:annotation>
+										<xs:documentation>В объекты капитального строительства и приобретаемого недвижимого имущества</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="total" type="decimalType">
+									<xs:annotation>
+										<xs:documentation>Всего</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="capitalConstructionFunds" type="fundsType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Информация об объектах капитального строительства</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="realAssetsFunds" type="fundsType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Информация об объектах приобретаемого недвижимого имущества</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="otherGrantFunds" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Информация об операциях с субсидиями на иные цели</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:complexContent>
+								<xs:extension base="fundsType">
+									<xs:sequence>
+										<xs:element name="code">
+											<xs:annotation>
+												<xs:documentation>Код субсидии</xs:documentation>
+											</xs:annotation>
+											<xs:simpleType>
+												<xs:restriction base="xs:string">
+													<xs:minLength value="1"/>
+													<xs:maxLength value="20"/>
+												</xs:restriction>
+											</xs:simpleType>
+										</xs:element>
+										<xs:element name="kosgu" type="refNsiKosguType" minOccurs="0">
+											<xs:annotation>
+												<xs:documentation>КОСГУ</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+									</xs:sequence>
+								</xs:extension>
+							</xs:complexContent>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="activityResultType">
+		<xs:annotation>
+			<xs:documentation>Результаты деятельности и использование имущества</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="reportYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Отчетный год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="staff">
+						<xs:annotation>
+							<xs:documentation>Штат сотрудников</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="beginYear" type="nonNegativeDecimalType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Количество на начало года</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="endYear" type="nonNegativeDecimalType">
+									<xs:annotation>
+										<xs:documentation>Количество на конец года</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="averageSalary" type="nonNegativeDecimalType">
+									<xs:annotation>
+										<xs:documentation>Средняя заработная плата</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="result">
+						<xs:annotation>
+							<xs:documentation>Результаты деятельности</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="damagesReparation" type="decimalType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Общая сумма требований на возмещение ущерба по недостачам и хищениям материальных ценностей, денежных средств, а так же порчи материальных ценностей</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="nonfinancialAssetsChange" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сведения об изменении балансовой стоимости нефинансовых активов за отчетный год</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="realAssets" type="changeIndexType">
+												<xs:annotation>
+													<xs:documentation>Недвижимое имущество</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="highValuePersonalAssets" type="changeIndexType">
+												<xs:annotation>
+													<xs:documentation>Особо ценное движимое имущество</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="changeIndexType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="financialAssetsChange" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Изменение дебиторской и кредиторской задолженности за отчетный год</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="debit">
+												<xs:annotation>
+													<xs:documentation>Изменение дебиторской задолженности за отчетный год</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="income" type="changeIndexType">
+															<xs:annotation>
+																<xs:documentation>По доходам (поступлениям)</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="expense" type="changeIndexType">
+															<xs:annotation>
+																<xs:documentation>По выплатам (расходам)</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="total" type="changeIndexType">
+															<xs:annotation>
+																<xs:documentation>Всего</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+											<xs:element name="kredit">
+												<xs:annotation>
+													<xs:documentation>Изменение кредиторской задолженности за отчетный год</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="expired" type="changeIndexType">
+															<xs:annotation>
+																<xs:documentation>Просроченная кредиторская задолженность</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="total" type="changeIndexType">
+															<xs:annotation>
+																<xs:documentation>Всего</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="service" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Услуга (работа)</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiServiceType">
+												<xs:sequence>
+													<xs:element name="ordinalNumber" type="xs:int" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Порядковый номер раздела</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+													<xs:element name="customers" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Количество потребителей</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:int">
+																<xs:totalDigits value="9"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="complaints" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Количество жалоб</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:int">
+																<xs:totalDigits value="9"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="reaction" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Принятые меры по результатам рассмотрения жалоб</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="cashReceipts">
+									<xs:annotation>
+										<xs:documentation>Сведения о кассовых поступлениях</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="stateTaskGrant" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Субсидии на выполнение государственного (муниципального) задания</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="actionGrant" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Целевые субсидии</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="budgetaryFunds" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Бюджетные инвестиции</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="paidServices" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Оказание учреждением платных услуг и иной приносящей доход деятель-ности</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="cashPayments" maxOccurs="unbounded" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сведения о кассовых выплатах</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:choice>
+											<xs:element name="government">
+												<xs:annotation>
+													<xs:documentation>Для казеных учреждений</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:complexContent>
+														<xs:extension base="institutionCashPaymentType">
+															<xs:sequence>
+																<xs:element name="kbk" type="refNsiKbkType" minOccurs="0">
+																	<xs:annotation>
+																		<xs:documentation>КБК</xs:documentation>
+																	</xs:annotation>
+																</xs:element>
+															</xs:sequence>
+														</xs:extension>
+													</xs:complexContent>
+												</xs:complexType>
+											</xs:element>
+											<xs:element name="autonomous" type="institutionCashPaymentType">
+												<xs:annotation>
+													<xs:documentation>Для автономных учреждений</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="budgetary">
+												<xs:annotation>
+													<xs:documentation>Для бюджетных учреждений</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:complexContent>
+														<xs:extension base="institutionCashPaymentType">
+															<xs:sequence>
+																<xs:element name="kosgu" type="refNsiKosguType" minOccurs="0">
+																	<xs:annotation>
+																		<xs:documentation>КОСГУ</xs:documentation>
+																	</xs:annotation>
+																</xs:element>
+																<xs:element name="kbk" type="refNsiKbkType" minOccurs="0">
+																	<xs:annotation>
+																		<xs:documentation>КБК</xs:documentation>
+																	</xs:annotation>
+																</xs:element>
+															</xs:sequence>
+														</xs:extension>
+													</xs:complexContent>
+												</xs:complexType>
+											</xs:element>
+										</xs:choice>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="assetsUse">
+						<xs:annotation>
+							<xs:documentation>Использование имущества</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="bookValueAssets">
+									<xs:annotation>
+										<xs:documentation>Cведения о балансовой стоимости имущества</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="realAssets">
+												<xs:annotation>
+													<xs:documentation>Балансовая стоимость недвижимого имущества</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="leaseRealAssets" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Недвижимое имущество, переданное в аренду</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="gratisRealAssets" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Недвижимое имущество, переданное в безвозмездное пользование</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="total" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Всего</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+											<xs:element name="personalAssets">
+												<xs:annotation>
+													<xs:documentation>Балансовая стоимость движимого имущества</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="leasePersonalAssets" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Движимое имущество, переданное в аренду</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="gratisPersonalAssets" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Движимое имущество, переданное в безвозмездное пользование</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="total" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Всего</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="realAssetsArea">
+									<xs:annotation>
+										<xs:documentation>Сведения о площадях недвижимого имущества</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="realAssetsAreaSummary">
+												<xs:annotation>
+													<xs:documentation>Общая площадь объектов недвижимого имущества</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="leaseArea" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Площадь, переданная в аренду</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="gratisArea" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Площадь, переданная в безвозмездное пользование</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="total" type="changeRangeType">
+															<xs:annotation>
+																<xs:documentation>Всего</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+											<xs:element name="assetsFunds" type="changeRangeType">
+												<xs:annotation>
+													<xs:documentation>Объем средств, полученный в отчетном году от распоряжения в установленном порядке имуществом</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="addressSoftType">
+		<xs:annotation>
+			<xs:documentation>Адрес учреждения (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="zip" type="zipType">
+				<xs:annotation>
+					<xs:documentation>Почтовый индекс</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="subject" type="refNsiKladrSoftType">
+				<xs:annotation>
+					<xs:documentation>Субъект РФ по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="region" type="refNsiKladrSoftType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Район по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="city" type="refNsiKladrSoftType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Город по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="locality" type="refNsiKladrSoftType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Населенный пункт по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="street" type="refNsiKladrStreetSoftType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Улица по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="building" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер дома</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="office" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер офиса (квартиры)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="addressStrongType">
+		<xs:annotation>
+			<xs:documentation>Адрес учреждения (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="zip" type="zipType">
+				<xs:annotation>
+					<xs:documentation>Почтовый индекс</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="subject" type="refNsiKladrStrongType">
+				<xs:annotation>
+					<xs:documentation>Субъект РФ по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="region" type="refNsiKladrStrongType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Район по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="city" type="refNsiKladrStrongType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Город по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="locality" type="refNsiKladrStrongType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Населенный пункт по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="street" type="refNsiKladrStreetSoftType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Улица по КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="building" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер дома</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="office" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер офиса (квартиры)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503121Type_2014">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503121) за период, начиная с 2014 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType2014">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за период, начиная с 2014 года включительно</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за период, начиная с 2014 года включительно</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="netOperatingResults">
+						<xs:annotation>
+							<xs:documentation>Чистый операционный результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за период, начиная с 2014 года включительно</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="nonFinancialAssetsTransactions">
+						<xs:annotation>
+							<xs:documentation>Операции с нефинансовыми активами</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за период, начиная с 2014 года включительно</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssetsLiabilitiesTransactions">
+						<xs:annotation>
+							<xs:documentation>Операции с финансовыми активами и обязательствами</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за период, начиная с 2014 года включительно</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503121Type_2013">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503121) за  2013 год</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за 2013 год</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за 2013 год</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="netOperatingResults">
+						<xs:annotation>
+							<xs:documentation>Чистый операционный результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за 2013 год</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="nonFinancialAssetsTransactions">
+						<xs:annotation>
+							<xs:documentation>Операции с нефинансовыми активами</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за 2013 год </xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssetsLiabilitiesTransactions">
+						<xs:annotation>
+							<xs:documentation>Операции с финансовыми активами и обязательствами</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за 2013 г</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503127Type">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении бюджета (ф. 0503127)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы бюджета</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503127TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы бюджета</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503127TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="fundingSources">
+						<xs:annotation>
+							<xs:documentation>Источники финансирования дефицита бюджета</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503127TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503127Type_2015">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении бюджета (ф. 0503127)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType2014">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы бюджета</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503127TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы бюджета</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503127TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="fundingSources">
+						<xs:annotation>
+							<xs:documentation>Источники финансирования дефицита бюджета</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503127TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503130Type_2014">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130)  за 2014 год</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataTypeCommon2014">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="commitments">
+						<xs:annotation>
+							<xs:documentation>Обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialResult">
+						<xs:annotation>
+							<xs:documentation>Финансовый результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reference">
+						<xs:annotation>
+							<xs:documentation>Справка</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItemRefer" type="reportItemF0503130TopLevelReferenceType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в справке баланса (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503130Type_2013">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130)  за период до 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="commitments">
+						<xs:annotation>
+							<xs:documentation>Обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialResult">
+						<xs:annotation>
+							<xs:documentation>Финансовый результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reference">
+						<xs:annotation>
+							<xs:documentation>Справка</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItemRefer" type="reportItemF0503130TopLevelReferenceType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в справке баланса (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503130Type_2015">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130)  за период начиная с 2015 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType2015">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="commitments">
+						<xs:annotation>
+							<xs:documentation>Обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialResult">
+						<xs:annotation>
+							<xs:documentation>Финансовый результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reference">
+						<xs:annotation>
+							<xs:documentation>Справка</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItemRefer" type="reportItemF0503130TopLevelReferenceType_2013" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в справке баланса (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503130Type">
+		<xs:annotation>
+			<xs:documentation>Баланс главного распорядителя, распорядителя, получателя бюджетных средств, главного администратора, администратора источников финансирования дефицита бюджета, главного администратора, администратора доходов бюджета (ф. 0503130)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="commitments">
+						<xs:annotation>
+							<xs:documentation>Обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialResult">
+						<xs:annotation>
+							<xs:documentation>Финансовый результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reference">
+						<xs:annotation>
+							<xs:documentation>Справка</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503130TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503137Type">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении смет доходов и расходов по приносящей доход деятельности главного распорядителя, получателя бюджетных средств (ф. 0503137)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503137TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении смет доходов и расходов по приносящей доход деятельности главного распорядителя, получателя бюджетных средств (ф. 0503137)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503137TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении смет доходов и расходов по приносящей доход деятельности главного распорядителя, получателя бюджетных средств (ф. 0503137)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="fundingSources">
+						<xs:annotation>
+							<xs:documentation>Источники финансирования дефицита средств учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503137TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете об исполнении смет доходов и расходов по приносящей доход деятельности главного распорядителя, получателя бюджетных средств (ф. 0503137)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503721Type">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503721)  за период до  2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы и обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503721Type_2014">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503721) за 2014 год</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderDataType_2014">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы и обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503721Type_2015">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503721) за 2015 год и последующие</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderDataType_2014">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы и обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503721TopLevelType2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503730Type">
+		<xs:annotation>
+			<xs:documentation>Баланс государственного (муниципального) учреждения (ф. 0503730) за период до  2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="commitments">
+						<xs:annotation>
+							<xs:documentation>Обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialResult">
+						<xs:annotation>
+							<xs:documentation>Финансовый результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reference">
+						<xs:annotation>
+							<xs:documentation>Справка</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503730Type_2014">
+		<xs:annotation>
+			<xs:documentation>Баланс государственного (муниципального) учреждения (ф. 0503730) за 2014 год</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderDataType_2014">
+						<xs:annotation>
+							<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="commitments">
+						<xs:annotation>
+							<xs:documentation>Обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialResult">
+						<xs:annotation>
+							<xs:documentation>Финансовый результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reference">
+						<xs:annotation>
+							<xs:documentation>Справка</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503730Type_2015">
+		<xs:annotation>
+			<xs:documentation>Баланс государственного (муниципального) учреждения (ф. 0503730) за период с 2015 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderDataType_2015_OKVED">
+						<xs:annotation>
+							<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nonFinancialAssets">
+						<xs:annotation>
+							<xs:documentation>Нефинансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType_2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssets">
+						<xs:annotation>
+							<xs:documentation>Финансовые активы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType_2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="commitments">
+						<xs:annotation>
+							<xs:documentation>Обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType_2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialResult">
+						<xs:annotation>
+							<xs:documentation>Финансовый результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType_2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reference">
+						<xs:annotation>
+							<xs:documentation>Справка</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503730TopLevelType_2015" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503737Type">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737) до 2015 года</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderFinSupportDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503737Type_2015">
+		<xs:annotation>
+			<xs:documentation>Отчет об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737) c 2015 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceFounderFinSupportDataType_2015">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceBudgetGeneralDataType">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения со сведениями о бюджете</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceGeneralDataType">
+				<xs:sequence>
+					<xs:element name="budget" type="refNsiBudgetStrongType">
+						<xs:annotation>
+							<xs:documentation>Наименование бюджета (публично-правовое образование)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="grbs" type="refNsiConsRegSoftType">
+						<xs:annotation>
+							<xs:documentation>Главный распорядитель, получатель бюджетных средств, главный администратор, администратор источников финансирования дефицита бюджета, главный администратор, администратор доходов бюджета</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceBudgetGeneralDataType2015">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения со сведениями о бюджете</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceBudgetGeneralDataType2014">
+				<xs:sequence>
+					<xs:element name="okved" type="okvedCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Наименование бюджета (публично-правовое образование)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceBudgetGeneralDataType2014">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения со сведениями о бюджете</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceGeneralDataType2014">
+				<xs:sequence>
+					<xs:element name="budget" type="refNsiBudgetStrongType">
+						<xs:annotation>
+							<xs:documentation>Наименование бюджета (публично-правовое образование)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="grbs" type="refNsiConsRegSoftType">
+						<xs:annotation>
+							<xs:documentation>Главный распорядитель, получатель бюджетных средств, главный администратор, администратор источников финансирования дефицита бюджета, главный администратор, администратор доходов бюджета</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceBudgetGeneralDataTypeCommon2014">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения со сведениями о бюджете без ИНН</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceGeneralDataTypeCommon2014">
+				<xs:sequence>
+					<xs:element name="budget" type="refNsiBudgetStrongType">
+						<xs:annotation>
+							<xs:documentation>Наименование бюджета (публично-правовое образование)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="grbs" type="refNsiConsRegSoftType">
+						<xs:annotation>
+							<xs:documentation>Главный распорядитель, получатель бюджетных средств, главный администратор, администратор источников финансирования дефицита бюджета, главный администратор, администратор доходов бюджета</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceFounderDataType">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceGeneralDataType">
+				<xs:sequence>
+					<xs:element name="founderName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Наименование Учредителя</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="founderAuthority" type="refNsiConsRegSoftType">
+						<xs:annotation>
+							<xs:documentation>Орган, осуществляющий функции и полномочия учредителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="separateStructuralUnit" type="refNsiConsRegSoftType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Обособленное структурное подразделение</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="founderAuthorityOkpo" type="okpoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКПО учредителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="separateStructuralUnitOkpo" type="okpoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКПО обособленного структурного подразделения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceFounderDataType_2015">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceGeneralDataTypeCommon2014">
+				<xs:sequence>
+					<xs:element name="founderName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Наименование Учредителя</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="founderAuthority" type="refNsiConsRegSoftType">
+						<xs:annotation>
+							<xs:documentation>Орган, осуществляющий функции и полномочия учредителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="separateStructuralUnit" type="refNsiConsRegSoftType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Обособленное структурное подразделение</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="founderAuthorityOkpo" type="okpoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКПО учредителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="separateStructuralUnitOkpo" type="okpoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКПО обособленного структурного подразделения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceFounderDataType_2015_OKVED">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceFounderDataType_2014">
+				<xs:sequence>
+					<xs:element name="okved" type="okvedCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Наименование бюджета (публично-правовое образование)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceFounderDataType_2014">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceGeneralDataType2014">
+				<xs:sequence>
+					<xs:element name="founderInn" minOccurs="0" type="innUlType">
+						<xs:annotation>
+							<xs:documentation>ИНН Учредителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="founderName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Наименование Учредителя</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="founderAuthority" type="refNsiConsRegSoftType">
+						<xs:annotation>
+							<xs:documentation>Орган, осуществляющий функции и полномочия учредителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="separateStructuralUnit" type="refNsiConsRegSoftType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Обособленное структурное подразделение</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="founderAuthorityOkpo" type="okpoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКПО учредителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="separateStructuralUnitOkpo" type="okpoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКПО обособленного структурного подразделения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceFounderFinSupportDataType">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceFounderDataType">
+				<xs:sequence>
+					<xs:element name="financialSupportData" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Сведения по видам финансового обеспечения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="typeFinancialSupport">
+									<xs:annotation>
+										<xs:documentation>Вид финансового обеспечения
+											Допустимые значения:
+											 2 – собственные доходы учреждения;
+											 4 – субсидия на выполнение государственного (муниципального) задания;
+											 5 – субсидии на иные цели.
+											 6 – бюджетные инвестиции.
+											 7 – средства по обязательному медицинскому страхованию.</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:pattern value="(2|4|5|6|7)"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="fundingSources">
+									<xs:annotation>
+										<xs:documentation>Источники финансирования дефицита средств учреждения</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelType" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="income">
+									<xs:annotation>
+										<xs:documentation>Доходы</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelType" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="expense">
+									<xs:annotation>
+										<xs:documentation>Расходы</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelType" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceFounderFinSupportDataType_2015">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="annualBalanceFounderDataType_2015">
+				<xs:sequence>
+					<xs:element name="financialSupportData" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Сведения по видам финансового обеспечения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="typeFinancialSupport">
+									<xs:annotation>
+										<xs:documentation>Вид финансового обеспечения
+											Допустимые значения:
+											 2 – собственные доходы учреждения;
+											 4 – субсидия на выполнение государственного (муниципального) задания;
+											 5 – субсидии на иные цели.
+											 6 – бюджетные инвестиции.
+											 7 – средства по обязательному медицинскому страхованию.</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:pattern value="(2|4|5|6|7)"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="fundingSources">
+									<xs:annotation>
+										<xs:documentation>Источники финансирования дефицита средств учреждения</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelType" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="income">
+									<xs:annotation>
+										<xs:documentation>Доходы</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelType" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="expense">
+									<xs:annotation>
+										<xs:documentation>Расходы</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelType" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="returnExpense">
+									<xs:annotation>
+										<xs:documentation>Сведения о возвратах расходов и выплат обеспечений прошлых лет</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelReturnExpenseType_2015" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="returnExpenseByHand" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сведения о возвратах расходов и выплат обеспечений прошлых лет (введены вручную)</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737TopLevelReturnExpenseType_2015" minOccurs="0" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="returnSourcesOfFinancingDeficitItemsByHand" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сведения о источниках финансирования дефицита средств учреждения (введены вручную)</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737BaseType" minOccurs="0" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="returnCostItemsByHand" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сведения о расходах учреждения (введены вручную)</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="reportItem" type="reportItemF0503737BaseType" minOccurs="0" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceGeneralDataType">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="date" type="xs:date">
+				<xs:annotation>
+					<xs:documentation>Дата предоставления данных в Балансе учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="periodicity" type="periodicityType">
+				<xs:annotation>
+					<xs:documentation>Периодичность</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okei" type="refNsiOkeiType">
+				<xs:annotation>
+					<xs:documentation>Единица измерения. Значение «руб»</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okpo" type="okpoCodeType">
+				<xs:annotation>
+					<xs:documentation>ОКПО организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okato" type="refNsiOkatoType">
+				<xs:annotation>
+					<xs:documentation>ОКАТО организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="section" type="sectionType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceGeneralDataType2014">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="date" type="xs:date">
+				<xs:annotation>
+					<xs:documentation>Дата предоставления данных в Балансе учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="periodicity" type="periodicityType">
+				<xs:annotation>
+					<xs:documentation>Периодичность</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okei" type="refNsiOkeiType">
+				<xs:annotation>
+					<xs:documentation>Единица измерения. Значение «руб»</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okpo" type="okpoCodeType">
+				<xs:annotation>
+					<xs:documentation>ОКПО организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="inn" type="innUlType">
+				<xs:annotation>
+					<xs:documentation>ИНН</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="section" type="sectionType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="oktmo" type="refNsiOktmoType">
+				<xs:annotation>
+					<xs:documentation>ОКТМО организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceGeneralDataTypeCommon2014">
+		<xs:annotation>
+			<xs:documentation>Общие данные о балансе государственного (муниципального) учреждения без ИНН</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="date" type="xs:date">
+				<xs:annotation>
+					<xs:documentation>Дата предоставления данных в Балансе учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="periodicity" type="periodicityType">
+				<xs:annotation>
+					<xs:documentation>Периодичность</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okei" type="refNsiOkeiType">
+				<xs:annotation>
+					<xs:documentation>Единица измерения. Значение «руб»</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okpo" type="okpoCodeType">
+				<xs:annotation>
+					<xs:documentation>ОКПО организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="section" type="sectionType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="oktmo" type="refNsiOktmoType">
+				<xs:annotation>
+					<xs:documentation>ОКТМО организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="branchChildType">
+		<xs:annotation>
+			<xs:documentation>Дочерний филиал</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiOgsStrongType">
+				<xs:sequence>
+					<xs:element name="type" type="branchTypeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Тип филиала
+
+								Допустимые значения:
+								 01 - филиал;
+								 02 - обособленное структурное подразделение;
+								 03 - представительство.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="branchChildVSRIType">
+		<xs:annotation>
+			<xs:documentation>Дочерний филиал (ВСРИ)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiConsRegStrongType">
+				<xs:sequence>
+					<xs:element name="type" type="branchTypeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Тип филиала
+
+								Допустимые значения:
+								 01 - филиал;
+								 02 - обособленное структурное подразделение;
+								 03 - представительство.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="branchParentType">
+		<xs:annotation>
+			<xs:documentation>Головное учреждение</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="type" type="branchTypeType">
+				<xs:annotation>
+					<xs:documentation>Тип филиала
+
+						Допустимые значения:
+						 01 - филиал;
+						 02 - обособленное структурное подразделение;
+						 03 - представительство.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="headOffice" type="refNsiOgsStrongType">
+				<xs:annotation>
+					<xs:documentation>Головное учреждение</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="branchParentVSRIType">
+		<xs:annotation>
+			<xs:documentation>Головное учреждение (ВСРИ)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="type" type="branchTypeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Тип филиала
+
+						Допустимые значения:
+						 01 - филиал;
+						 02 - обособленное структурное подразделение;
+						 03 - представительство.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="headOffice" type="refNsiConsRegStrongType">
+				<xs:annotation>
+					<xs:documentation>Головное учреждение</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="budgetaryCircumstancesType">
+		<xs:annotation>
+			<xs:documentation>Информация о показателях бюджетной сметы</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="financialYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="section" type="sectionType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="budgetaryCircumstance" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Бюджетные обязательства</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="kbkBudget" type="refNsiKbkBudgetType">
+									<xs:annotation>
+										<xs:documentation>Cвязи бюджета и кодов КБК</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="circumstance" type="decimalType">
+									<xs:annotation>
+										<xs:documentation>Сумма</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="changablePositionType" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Базовый тип изменяемой позиции</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="positionType">
+				<xs:sequence>
+					<xs:element name="changeDate" type="xs:dateTime">
+						<xs:annotation>
+							<xs:documentation>Дата и время изменения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="changeIndexType">
+		<xs:annotation>
+			<xs:documentation>Показатель изменения</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="type">
+				<xs:annotation>
+					<xs:documentation>Тип изменения
+
+						Допустимые значения:
+						 I – увеличение;
+						 D – уменьшение;
+						 U – без изменений.</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:enumeration value="I"/>
+						<xs:enumeration value="D"/>
+						<xs:enumeration value="U"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="quantity" type="percentType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Величина изменения в %</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="changeRangeType">
+		<xs:annotation>
+			<xs:documentation>Диапазон изменения</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="beginYear" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>На начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="endYear" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>На конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="changeRequestClassifierType">
+		<xs:annotation>
+			<xs:documentation>Справочники и классификаторы заявки на изменение</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="classifierType">
+				<xs:sequence>
+					<xs:element name="oktmo" type="refNsiOktmoType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКТМО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="okved" type="refNsiOkvedType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>ОКВЭД</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="changeRequestType">
+		<xs:annotation>
+			<xs:documentation>Заявка на изменение</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="positionType">
+				<xs:sequence>
+					<xs:element name="requestDate" type="xs:date">
+						<xs:annotation>
+							<xs:documentation>Дата заявки</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="requestNumber">
+						<xs:annotation>
+							<xs:documentation>Номер заявки</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:length value="13"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="head" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Руководитель (уполномоченное лицо)</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="signDeciphering">
+									<xs:annotation>
+										<xs:documentation>Расшифровка подписи</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="210"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="position" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Должность</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="200"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="startDateActive" type="xs:date" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дата ввода в действие</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="regNum" type="ogsCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Реестровый номер в перечне ГМУ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="main" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Основные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:group ref="otherRegNum" minOccurs="0"/>
+								<xs:element name="fullName">
+									<xs:annotation>
+										<xs:documentation>Полное наименование</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="shortName">
+									<xs:annotation>
+										<xs:documentation>Сокращенное наименование </xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="inn" type="innUlType">
+									<xs:annotation>
+										<xs:documentation>ИНН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="kpp" type="kppType">
+									<xs:annotation>
+										<xs:documentation>КПП</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogrn" type="ogrnCodeType">
+									<xs:annotation>
+										<xs:documentation>ОГРН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="rbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="grbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Главный распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="orgType" type="changeRequestOrgTypeType">
+									<xs:annotation>
+										<xs:documentation>Тип организации
+
+											Допустимые значения:
+											 01 - федеральный орган государственной власти, федеральный государственный орган, орган государственной власти субъекта Российской Федерации, государственный орган субъекта Российской Федерации, орган местного самоуправления, в том числе его территориальные органы;
+											 03 - бюджетное учреждение;
+											 08 -  казенное учреждение;
+											 10 - автономное учреждение.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="tofk" type="refNsiTofkType">
+									<xs:annotation>
+										<xs:documentation>ТОФК клиента</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="special" type="changeRequestSpecialType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Специальные указания
+
+											Допустимые значения:
+											 01 - отзыв;
+											 02 - аннулирование полномочий органом государственной власти (местного самоуправления), осуществляющим функции и полномочия учредителя (организацией, являющейся представителем учреждения);
+											 03 - аннулирование полномочий организацией;
+											 04 - организации не предоставляются субсидии;
+											 05 - организации предоставляются субсидии.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="financial" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Финансовый орган</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsGmu" type="credentialsGmuType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Полномочия учреждения на сайте ГМУ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="classifier" type="changeRequestClassifierType">
+									<xs:annotation>
+										<xs:documentation>Общероссийские классификаторы</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="budget" type="institutionBudgetSoftType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Бюджет</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="address" type="addressSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Фактический адрес</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogv" type="xs:boolean" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Является органом государственной власти</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ppo">
+									<xs:annotation>
+										<xs:documentation>Публично-правовое образование</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="PPO_OGSType">
+												<xs:sequence>
+													<xs:element name="oktmo" type="refNsiOktmoType">
+														<xs:annotation>
+															<xs:documentation>ОКТМО публично-правового образования</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="other" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Остальные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="chief" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Руководитель</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="employeeType">
+												<xs:sequence>
+													<xs:element name="inn" type="innFlType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>ИНН</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="founder" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Учредитель</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiOgsExtendedSoftType">
+												<xs:sequence>
+													<xs:element name="ogrn" type="ogrnCodeType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>ОГРН</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+													<xs:element name="authorities" type="founderAuthoritiesType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Полномочия учредителя</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Подтверждающий документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="classifierType" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Справочники и классификаторы </xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="okfs" type="refNsiOkfsType">
+				<xs:annotation>
+					<xs:documentation>ОКФС</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okopf" type="refNsiOkopfType">
+				<xs:annotation>
+					<xs:documentation>ОКОПФ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okogu" type="refNsiOkoguType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>ОКОГУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="okpo" type="okpoCodeType">
+				<xs:annotation>
+					<xs:documentation>ОКПО</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="consRegStatType">
+		<xs:annotation>
+			<xs:documentation>Перечень неполных записей Сводного реестра</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="refId" type="guidType">
+				<xs:annotation>
+					<xs:documentation>Идентификатор обработанного пакета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="refPositionId" type="guidType">
+				<xs:annotation>
+					<xs:documentation>Идентификатор обработанной позиции</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="regNumConsReg" type="regNumConsRegOgsType">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер организации в Сводном реестре</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="violation" type="violationType" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Выявленные в процессе обработки записи Сводного реестра нарушение целостности</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="credentialsFkType">
+		<xs:annotation>
+			<xs:documentation>Полномочия ФК</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="grbs" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия ГРБС (РБС) РФ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="pbs" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия получателя средств бюджета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="ipbs" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия иного получателя средств бюджета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="gadb" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия главного администратора доходов бюджета (администратора, осуществляющего отдельные полномочия главного администратора)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="adb" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия администратора доходов бюджета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="gaivf" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия главного администратора источников внутреннего финансирования дефицита бюджета (администратора, осуществляющего отдельные полномочия главного администратора)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="gaivnf" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия главного администратора источников внешнего финансирования дефицита бюджета (администратора, осуществляющего отдельные полномочия главного администратора)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="aivf" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия администратора источников внутреннего финансирования дефицита бюджета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="aivnf" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия администратора источников внешнего финансирования дефицита бюджета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="svr" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия по осуществлению операций со средствами, поступающими во временное распоряжение</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="credentialsGmuType">
+		<xs:annotation>
+			<xs:documentation>Полномочия учреждения на сайте ГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="institution" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="authorized" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие организации, являющейся представителем учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="finOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие финансового органа</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="supervisorOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие контролирующего органа</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="founderOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие органа, осуществляющего функции и полномочия учредителя</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="credentialsOosType">
+		<xs:annotation>
+			<xs:documentation>Полномочия учреждения на ООС</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="nationalCustomer" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие государственного (муниципального) заказчика</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="authorizedOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие уполномоченного органа по осуществлению закупок</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="authorizedAgency" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие уполномоченного учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="specialOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие специализированной организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="finOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие финансового органа</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="operatorOos" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие оператора ООС</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="operatorEp" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочие оператора ЭП</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OROrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия органа по регулированию контрактной системы в сфере закупок</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OAOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия органа по регулированию контрактной системы в сфере закупок</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="bankOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия банка</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OKOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия контрольного органа в сфере закупок</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="IKOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия органа контроля соответствия информации об объеме финансового обеспечения и идентификационных кодах закупок</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OVKOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия органа внутреннего контроля</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OPOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия органа, устанавливающего правила нормирования</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OTOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия органа, утверждающего требования к отдельным видам товаров, работ, услуг</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OTKOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия органа, разрабатывающего типовые контракты и типовые условия контрактов</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="OZOrg" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Полномочия организации, осуществляющей полномочия заказчика на осуществление закупок на основании договора (соглашения) в соответствии с частью 6 статьи 15 Федерального закона № 44-ФЗ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="diverseInfoType">
+		<xs:annotation>
+			<xs:documentation>Иная информация об учреждении</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="main">
+						<xs:annotation>
+							<xs:documentation>Обязательная информация</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="orgList" type="orgListType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Перечень организаций, в которых открыты счета</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="additional" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Дополнительная информация</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="paymentDetails" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Платежные реквизиты</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="paymentDetailsType">
+												<xs:annotation>
+													<xs:documentation>Тип информации о платежных реквизитах
+
+														Допустимые значения:
+														 01 - расчетный счет в кредитной организации;
+														 02 - лицевой счет в ОрФК;
+														 03 - лицевой счет в ФО
+													</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="paymentDetailsTypeType"/>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="fullName" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Полное наименование организации</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="2000"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="inn" type="innUlType" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>ИНН</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="kpp" type="kppType" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>КПП</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="oktmoCode" type="oktmoCodeType" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Код ОКТМО</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="bankName">
+												<xs:annotation>
+													<xs:documentation>Наименование банка</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="200"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="bankCity" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Город, в котором расположен банк</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="25"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="bik">
+												<xs:annotation>
+													<xs:documentation>БИК</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:pattern value="\d{9}"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="calcAccountCode">
+												<xs:annotation>
+													<xs:documentation>Номер расчетного счета</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:pattern value="\d{20}"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="accountDetails" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Информация о лицевом (корреспондетском) счете</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:choice>
+															<xs:element name="bankAccount" minOccurs="0">
+																<xs:annotation>
+																	<xs:documentation>Информация о счете в кредитной организации</xs:documentation>
+																</xs:annotation>
+																<xs:complexType>
+																	<xs:sequence>
+																		<xs:element name="corAccountCode" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Номер корреспондентского счета</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:pattern value="\d{20}"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+																		<xs:element name="personalAccountCode" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Номер лицевого счета</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="50"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+																	</xs:sequence>
+																</xs:complexType>
+															</xs:element>
+															<xs:element name="orfkAccount" minOccurs="0">
+																<xs:annotation>
+																	<xs:documentation>Информация о счете в ОрФК</xs:documentation>
+																</xs:annotation>
+																<xs:complexType>
+																	<xs:sequence>
+																		<xs:element name="orfkName">
+																			<xs:annotation>
+																				<xs:documentation>Наименование ОрФК по месту обслуживания лицевого счета</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+																		<xs:element name="personalAccountCode">
+																			<xs:annotation>
+																				<xs:documentation>Номер лицевого счета</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:pattern value="(\p{L}|\d){11}"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+																	</xs:sequence>
+																</xs:complexType>
+															</xs:element>
+															<xs:element name="foAccount" minOccurs="0">
+																<xs:annotation>
+																	<xs:documentation>Информация о счете в ФО</xs:documentation>
+																</xs:annotation>
+																<xs:complexType>
+																	<xs:sequence>
+																		<xs:element name="foName">
+																			<xs:annotation>
+																				<xs:documentation>Наименование ФО по месту обслуживания лицевого счета</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+																		<xs:element name="personalAccountCode">
+																			<xs:annotation>
+																				<xs:documentation>Номер лицевого счета</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="50"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+																	</xs:sequence>
+																</xs:complexType>
+															</xs:element>
+														</xs:choice>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+											<xs:element name="paymentDetailsTargets" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Назначение платежа</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="paymentType" minOccurs="0">
+															<xs:annotation>
+																<xs:documentation>Вид платежа</xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="xs:string">
+																	<xs:minLength value="1"/>
+																	<xs:maxLength value="2000"/>
+																</xs:restriction>
+															</xs:simpleType>
+														</xs:element>
+														<xs:element name="paymentTargetName">
+															<xs:annotation>
+																<xs:documentation>Назначение платежа</xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="xs:string">
+																	<xs:minLength value="1"/>
+																	<xs:maxLength value="130"/>
+																</xs:restriction>
+															</xs:simpleType>
+														</xs:element>
+														<xs:element name="kbk">
+															<xs:annotation>
+																<xs:documentation>КБК</xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="kbkCodeType">
+																	<xs:pattern value="(\p{L}|\d){20}"/>
+																</xs:restriction>
+															</xs:simpleType>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="licenseDetails" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Cведения о лицензии</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="licenseAgencyName">
+												<xs:annotation>
+													<xs:documentation>Наименовавние органа, выдавшего лицензию</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="200"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="licenseName">
+												<xs:annotation>
+													<xs:documentation>Наименование лицензируемого вида деятельности</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="2000"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="licenseNum">
+												<xs:annotation>
+													<xs:documentation>Номер лицензии</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="200"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="licenseDate" type="xs:date">
+												<xs:annotation>
+													<xs:documentation>Дата регистрации</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="licenseExpDate" type="xs:date" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Срок действия лицензии</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="accreditationDetails" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Сведения об аккредитации</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="accreditationAgencyName">
+												<xs:annotation>
+													<xs:documentation>Наименование органа, выдавшего аккредитацию</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="200"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="accreditationName">
+												<xs:annotation>
+													<xs:documentation>Наименование аккредитуемой деятелности</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="2000"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="accreditationExpDate" type="xs:date">
+												<xs:annotation>
+													<xs:documentation>Срок действия аккредитации</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="documentType">
+		<xs:annotation>
+			<xs:documentation>Документ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование документа</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="128"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="date" type="xs:date">
+				<xs:annotation>
+					<xs:documentation>Дата формирования документа</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:choice>
+				<xs:element name="url" type="urlType">
+					<xs:annotation>
+						<xs:documentation>Ссылка для скачивания документа</xs:documentation>
+					</xs:annotation>
+				</xs:element>
+				<xs:element name="code" type="guidType">
+					<xs:annotation>
+						<xs:documentation>Код документа</xs:documentation>
+					</xs:annotation>
+				</xs:element>
+				<xs:element name="content" type="xs:base64Binary">
+					<xs:annotation>
+						<xs:documentation>Содержимое документа</xs:documentation>
+					</xs:annotation>
+				</xs:element>
+			</xs:choice>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="paymentDetailsType">
+		<xs:annotation>
+			<xs:documentation>Платёж</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="calcAccountCode">
+				<xs:annotation>
+					<xs:documentation>Номер расчетного счета</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:length value="20"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="personalAccountCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер лицевого счета</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:length value="16"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="ofkName" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>ОФК, в котором обслуживается лицевой счет</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="50"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="bankName">
+				<xs:annotation>
+					<xs:documentation>Наименование банка</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="50"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="bankDestinationCity">
+				<xs:annotation>
+					<xs:documentation>Город, в котором расположен банк</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="25"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="bankId">
+				<xs:annotation>
+					<xs:documentation>БИК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:length value="9"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="corAccountCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер корреспондентского счета</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:length value="20"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="paymentDetailsTargets" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Назначения платежей</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:complexContent>
+						<xs:extension base="paymentDetailsTargetType"/>
+					</xs:complexContent>
+				</xs:complexType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="paymentDetailsTargetType">
+		<xs:annotation>
+			<xs:documentation>Назначение платежа</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="serviceName" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование услуги</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="0"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="paymentTargetName">
+				<xs:annotation>
+					<xs:documentation>Назначение платежа</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="130"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="kbk" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>КБК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="0"/>
+						<xs:maxLength value="20"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="egrulDifferenceType">
+		<xs:annotation>
+			<xs:documentation>Протокол расхождения с ЕГРЮЛ</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="positionType">
+				<xs:sequence>
+					<xs:element name="createDate" type="xs:dateTime">
+						<xs:annotation>
+							<xs:documentation>Дата и время формирования протокола</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="regNum" type="ogsCodeType">
+						<xs:annotation>
+							<xs:documentation>Реестровый номер организации в перечне ГМУ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="originalRewrite" type="xs:boolean">
+						<xs:annotation>
+							<xs:documentation>Признак перезаписи данных организации из ЕГРЮЛ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="egrulAbsent" type="xs:boolean">
+						<xs:annotation>
+							<xs:documentation>Признак отсутствия организации в ЕГРЮЛ </xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="difference" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Расхождение</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="detail" type="differenceDetailType">
+									<xs:annotation>
+										<xs:documentation>Реквизит расхождения
+
+											Допустимые значения:
+											 01 - полное наименование;
+											 02 - сокращенное наименование;
+											 03 - ИНН;
+											 04 - КПП;
+											 05 - ОГРН;
+											 07 - Наименование учредителя;
+											 08 - ОКВЭД;
+											 09 - Почтовый индекс;
+											 10 - Код субъекта РФ по КЛАДР;
+											 11 - Наименование субъекта РФ;
+											 12 - Код района по КЛАДР;
+											 13 - Наименование района;
+											 14 - Код города по КЛАДР;
+											 15 - Наименование города;
+											 16 - Код населенного пункта по КЛАДР;
+											 17 - Наименование населенного пункта;
+											 18 - Код улицы по КЛАДР;
+											 19 - Наименование улицы;
+											 20 - Номер дома;
+											 21 - Номер офиса (квартиры);
+											 22 - Дата исключения;
+											 23 - Фамилия руководителя;
+											 24 - Имя руководителя;
+											 25 - Отчество руководителя;
+											 26 - Должность руководителя.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="originalData" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Исходные данные</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="egrulData" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Данные в ЕГРЮЛ</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="type" type="differenceTypeType">
+									<xs:annotation>
+										<xs:documentation>Тип расхождения
+
+											Допустимые значения:
+											 01 - расхождения по данным;
+											 02 - отсутствует в ЕГРЮЛ;
+											 03 - отсутствует в исходных данных.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="employeeType">
+		<xs:annotation>
+			<xs:documentation>Сотрудник</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="personType">
+				<xs:sequence>
+					<xs:element name="position">
+						<xs:annotation>
+							<xs:documentation>Должность</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="200"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="fieldType">
+		<xs:annotation>
+			<xs:documentation>Сфера деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="fieldCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код сферы деятельности</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование сферы деятельности</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="financialActivityPlanType">
+		<xs:annotation>
+			<xs:documentation>План финансово-хозяйственной деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="financialYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planFirstYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Первый год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planLastYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Второй год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="financialIndex">
+						<xs:annotation>
+							<xs:documentation>Показатели финансового состояния учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="nonfinancialAssets">
+									<xs:annotation>
+										<xs:documentation>Балансовая стоимость нефинансовых активов</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="realAssets" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Недвижимое имущество</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="highValuePersonalAssets" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Особо ценное движимое имущество</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="financialAssets">
+									<xs:annotation>
+										<xs:documentation>Финансовые активы</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="debit">
+												<xs:annotation>
+													<xs:documentation>Дебиторская задолженность</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="income" type="decimalType">
+															<xs:annotation>
+																<xs:documentation>По доходам</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="expense" type="decimalType">
+															<xs:annotation>
+																<xs:documentation>По расходам</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="financialCircumstances">
+									<xs:annotation>
+										<xs:documentation>Обязательства</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="kreditExpired" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Просроченная кредиторская задолженность</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="planPaymentIndex">
+						<xs:annotation>
+							<xs:documentation>Плановые показатели поступлений и выплат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="planInpayments">
+									<xs:annotation>
+										<xs:documentation>Панируемые поступления</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="stateTaskGrant" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Cубсидии на выполнение государственного (муниципального) задания</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="actionGrant" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Целевые субсидии</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="budgetaryFunds" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Бюджетные инвестиции</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="paidServices" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Оказание платных услуг (выполнение работ) и иная приносящая доход деятельность</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="planPayments">
+									<xs:annotation>
+										<xs:documentation>Планируемые выплаты</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="labourRemuneration" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Оплата труда и начисления на выплаты по оплате труда</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="telephoneServices" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Оплата услуг связи</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="freightServices" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Оплата транспортных услуг</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="publicServices" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Оплата коммунальных услуг</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="rental" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Арендная плата за пользование имуществом</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="maintenanceCosts" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Оплата услуг по содержанию имущества</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="mainFunds" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Приобретение основных средств</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="fictitiousAssets" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Приобретение нематериальных активов</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="tangibleAssets" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Приобретение материальных запасов</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="planPublicCircumstances" type="decimalType">
+						<xs:annotation>
+							<xs:documentation>Планируемая сумма выплат по публичным обязательствам</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="financialActivityPlan2017Type">
+		<xs:annotation>
+			<xs:documentation>План финансово-хозяйственной деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="financialYear" type="yearType">
+						<xs:annotation>
+							<xs:documentation>Финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planFirstYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Первый год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planLastYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Второй год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="financialIndex">
+						<xs:annotation>
+							<xs:documentation>Показатели финансового состояния учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="nonfinancialAssets">
+									<xs:annotation>
+										<xs:documentation>Балансовая стоимость нефинансовых активов</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="realAssets" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Недвижимое имущество</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="realAssetsResidual" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Остаточная стоимость недвижимого имущества</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="highValuePersonalAssets" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Особо ценное движимое имущество</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="highValuePersonalAssetsResidual" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Остаточная стоимость особо ценного движимого имущества</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="financialAssets">
+									<xs:annotation>
+										<xs:documentation>Финансовые активы</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="cash" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Денежные средства учреждения</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="accountsCash" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Денежные средства учреждения на счетах</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="depositCash" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Денежные средства учреждения, размещенные на депозиты в кредитной организации</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="others" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Иные финансовые инструменты</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="debit">
+												<xs:annotation>
+													<xs:documentation>Дебиторская задолженность</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="income" type="decimalType">
+															<xs:annotation>
+																<xs:documentation>По доходам</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="expense" type="decimalType">
+															<xs:annotation>
+																<xs:documentation>По расходам</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="financialCircumstances">
+									<xs:annotation>
+										<xs:documentation>Обязательства</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="debentures" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Долговые обязательства</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="kredit" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Кедиторская задолженность</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="kreditExpired" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Просроченная кредиторская задолженность</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="total" type="decimalType">
+												<xs:annotation>
+													<xs:documentation>Всего</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="planPaymentIndex" type="planPaymentIndexItem" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Плановые показатели поступлений и выплат</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="expensePaymentIndex" type="expensePaymentIndexItem" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Показатели выплат по расходам на закупку</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="temporaryResources" type="indexSum" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Сведения о средствах, поступающих во временное распоряжение учреждения (подразделения)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="reference" type="indexSum" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Справочная информация</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="founderAuthoritiesType">
+		<xs:annotation>
+			<xs:documentation>Полномочия учредителя</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="formative" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Решение о создании, реорганизации, ликвидации, изменении типа учреждения (его филиалов)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="stateTask" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Решение о формировании и утверждении государственного (муниципального) задания</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="supervisoryBoard" type="xs:boolean" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Решение о назначении членов наблюдательного совета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="manageProperty" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Решение об управлении имуществом организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="financeSupply" type="xs:boolean">
+				<xs:annotation>
+					<xs:documentation>Решение о финансовом обеспечении организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="founderAuthoritiesVSRIType">
+		<xs:annotation>
+			<xs:documentation>Полномочия учредителя</xs:documentation>
+		</xs:annotation>
+		<xs:choice>
+			<xs:element name="authoritiesGMU">
+				<xs:annotation>
+					<xs:documentation>Полномочия учредителя, заполняемые в АС ГМУ</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="formative" type="xs:boolean">
+							<xs:annotation>
+								<xs:documentation>Решение о создании, реорганизации, ликвидации, изменении типа учреждения (его филиалов)</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="stateTask" type="xs:boolean">
+							<xs:annotation>
+								<xs:documentation>Решение о формировании и утверждении государственного (муниципального) задания</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="supervisoryBoard" type="xs:boolean" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Решение о назначении членов наблюдательного совета</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="manageProperty" type="xs:boolean">
+							<xs:annotation>
+								<xs:documentation>Решение об управлении имуществом организации</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="financeSupply" type="xs:boolean">
+							<xs:annotation>
+								<xs:documentation>Решение о финансовом обеспечении организации</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="authoritiesConsReg" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Полномочия учредителя по данным Сводного реестра</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="authName">
+							<xs:annotation>
+								<xs:documentation>Наименование полномочия</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="1000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="authCode">
+							<xs:annotation>
+								<xs:documentation>Код полномочия по справочнику "Полномочие организации"</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:pattern value="\d{3}"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+		</xs:choice>
+	</xs:complexType>
+	<xs:complexType name="fundsType">
+		<xs:annotation>
+			<xs:documentation>Средства</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="funds" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>Сумма</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="headerType">
+		<xs:annotation>
+			<xs:documentation>Заголовок информационного пакета</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="id" type="guidType">
+				<xs:annotation>
+					<xs:documentation>Глобальный идентификатор  информационного пакета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="createDateTime" type="xs:dateTime">
+				<xs:annotation>
+					<xs:documentation>Дата и время формирования информационного пакета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="inspectionActivityType">
+		<xs:annotation>
+			<xs:documentation>Контрольные мероприятия и их результаты</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="period" type="yearType">
+						<xs:annotation>
+							<xs:documentation>Период формирования</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="inspectionEvent" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Контрольное мероприятие</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="supervisor" type="refNsiConsRegSoftType">
+									<xs:annotation>
+										<xs:documentation>Орган государственной власти (государственного органа), орган местного самоуправления, осуществляющий проведение контрольного мероприятия</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="topic">
+									<xs:annotation>
+										<xs:documentation>План (тема) контрольного мероприятия</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="eventBegin" type="xs:date">
+									<xs:annotation>
+										<xs:documentation>Начало проведения контрольного мероприятия </xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="eventEnd" type="xs:date">
+									<xs:annotation>
+										<xs:documentation>Конец проведения контрольного мероприятия</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="violation" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Выявленные нарушения</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="resultActivity" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Мероприятия, проведенные по результатам контрольного мероприятия</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="institutionActivityType">
+		<xs:annotation>
+			<xs:documentation>Вид деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="okved" type="refNsiOkvedType">
+				<xs:annotation>
+					<xs:documentation>ОКВЭД</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование по уставу</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="institutionBudgetSoftType">
+		<xs:annotation>
+			<xs:documentation>Бюджет учреждения (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiBudgetSoftType">
+				<xs:sequence>
+					<xs:element name="type" type="budgetTypeType">
+						<xs:annotation>
+							<xs:documentation>Тип бюджета
+
+								Допустимые значения:
+								 01 - исполняемый бюджет;
+								 02 - бюджет финансирования.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="institutionBudgetStrongType">
+		<xs:annotation>
+			<xs:documentation>Бюджет учреждения (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiBudgetStrongType">
+				<xs:sequence>
+					<xs:element name="type" type="budgetTypeType">
+						<xs:annotation>
+							<xs:documentation>Тип бюджета
+
+								Допустимые значения:
+								 01 - исполняемый бюджет;
+								 02 - бюджет финансирования.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="institutionCashPaymentType">
+		<xs:annotation>
+			<xs:documentation>Сведения о кассовых выплатах</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование направления расходов</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="payment" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>Сумма</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="institutionClassifierType">
+		<xs:annotation>
+			<xs:documentation>Справочники и классификаторы учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="classifierType">
+				<xs:sequence>
+					<xs:element name="oktmo" type="refNsiOktmoType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКТМО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="okved" type="refNsiOkvedType" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>ОКВЭД</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="institutionEnactmentType">
+		<xs:annotation>
+			<xs:documentation>Реквизиты правового акта органа, осуществляющего функции и полномочия учредителя, о назначении членов наблюдательного совета</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="type">
+				<xs:annotation>
+					<xs:documentation>Вид правового акта</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование правового акта</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="255"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="number">
+				<xs:annotation>
+					<xs:documentation>Номер правового акта</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="date" type="xs:date">
+				<xs:annotation>
+					<xs:documentation>Дата правового акта</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="founderAuthority" type="refNsiOgsSoftType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Орган, осуществляющий функции и полномочия учредителя</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="institutionEnactmentVSRIType">
+		<xs:annotation>
+			<xs:documentation>Реквизиты правового акта органа, осуществляющего функции и полномочия учредителя, о назначении членов наблюдательного совета</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="type">
+				<xs:annotation>
+					<xs:documentation>Вид правового акта</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование правового акта</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="255"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="number">
+				<xs:annotation>
+					<xs:documentation>Номер правового акта</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="date" type="xs:date">
+				<xs:annotation>
+					<xs:documentation>Дата правового акта</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="founderAuthority" type="refNsiConsRegSoftType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Орган, осуществляющий функции и полномочия учредителя</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="institutionInfoType">
+		<xs:annotation>
+			<xs:documentation>Информация об учреждении</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="main" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Основные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="shortName" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сокращенное наименование </xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="ogrn" type="ogrnCodeType">
+									<xs:annotation>
+										<xs:documentation>ОГРН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="rbs" type="refNsiConsRegSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="grbs" type="refNsiConsRegSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Главный распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="orgType" type="ogsOrgTypeType">
+									<xs:annotation>
+										<xs:documentation>Тип организации
+
+											Допустимые значения:
+											 01 - федеральный орган государственной власти, федеральный государственный орган, орган государственной власти субъекта Российской Федерации, государственный орган субъекта Российской Федерации, орган местного самоуправления, в том числе его территориальные органы;
+											 02 - орган управления государственным внебюджетным фондом;
+											 03 - бюджетное учреждение;
+											 04 - организация с долей государственного участия;
+											 05 - унитарное предприятие;
+											 06 - субъект естественных монополий;
+											 07 - иная организация (Используется для учета негосударственных организаций);
+											 08 -  казенное учреждение;
+											 09 - государственная корпорация, государственная компания;
+											 10 - автономное учреждение;
+											 11 - организация, осуществляющая регулируемые виды деятельности;
+											 12 - хозяйственное общество, в уставном капитале которого доля участия Российской Федерации, субъекта Российской Федерации, муниципального образования в совокупности превышает 50 процентов;
+											 13 - дочернее хозяйственное общество;
+											 14 - специализированная организация;
+											 15 - оператор официального сайта;
+											 16 - оператор электронной площадки.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="special" type="ogsSpecialType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Специальные указания
+											Допустимые значения:
+											 04 - организации не предоставляются субсидии;
+											 05 - организации предоставляются субсидии.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="classifier" type="institutionClassifierType">
+									<xs:annotation>
+										<xs:documentation>Общероссийские классификаторы</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="complexAddress">
+									<xs:annotation>
+										<xs:documentation>Комплексный адрес</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="address" type="addressStrongType">
+												<xs:annotation>
+													<xs:documentation>Фактический адрес</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="coordinates" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Координаты учреждения</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="longitude" type="xs:double" nillable="true" minOccurs="1">
+															<xs:annotation>
+																<xs:documentation>Долгота</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="latitude" type="xs:double" nillable="true" minOccurs="1" >
+															<xs:annotation>
+																<xs:documentation>Широта</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="additional">
+						<xs:annotation>
+							<xs:documentation>Дополнительные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="institutionType" type="refNsiInstitutionTypeType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Вид учреждения</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ppo" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Публично-правовое образование</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="name" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Наименование публично-правового образования</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="2000"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="oktmo" type="refNsiOktmoType" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>ОКТМО публично-правового образования</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="okato" type="refNsiOkatoType" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>ОКАТО</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="phone" type="phoneStrongType">
+									<xs:annotation>
+										<xs:documentation>Телефон</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="www" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Ссылка на сайт учреждения</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="200"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="branchInfo" type="branchParentVSRIType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Информация об учреждении-филиале</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="branch" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Филиалы и представительства</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="branchChildVSRIType">
+												<xs:sequence>
+													<xs:element name="shortName" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Сокращенное наименование </xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="section" type="sectionType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="enactment" type="institutionEnactmentVSRIType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Реквизиты правового акта органа, осуществляющего функции и полномочия учредителя, о назначении членов наблюдательного совета</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="okato" type="refNsiOkatoType">
+									<xs:annotation>
+										<xs:documentation>ОКАТО</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="activity" type="institutionActivityType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Вид деятельности</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="eMail" type="eMailType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Электронная почта</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="other" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Остальные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="chief" type="employeeType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Руководитель</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="founder" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Учредитель</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiConsRegSoftType">
+												<xs:sequence>
+													<xs:element name="authorities" type="founderAuthoritiesVSRIType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Полномочия учредителя</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="ogrnData" type="xs:date" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Дата постановки на учет</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:complexContent>
+								<xs:extension base="documentType">
+									<xs:sequence>
+										<xs:element name="type" type="institutionInfoDocumentTypeType">
+											<xs:annotation>
+												<xs:documentation>Тип документа
+
+													Допустимые значения:
+													 F – учредительные документы;
+													 E – свидетельства о государственной регистрации;
+													 C – решение учредителя о создании государственного (муниципального) учреждения;
+													 S – решение учредителя о назначении руководителя;
+													 L - положения о филиалах, представительствах;
+													 I - правовой акт о назначении членов наблюдательного совета;
+													 O - прочие документы.</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+									</xs:sequence>
+								</xs:extension>
+							</xs:complexContent>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="institutionPositionType" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Позиция данных учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="changablePositionType">
+				<xs:sequence>
+					<xs:element name="placer" type="refNsiConsRegExtendedStrongType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Кем сформировано</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="initiator" type="refNsiConsRegExtendedStrongType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Для кого сформировано</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="versionNumber" type="xs:int" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Номер версии</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiBudgetType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника Бюджеты</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="budgetCodeType">
+						<xs:annotation>
+							<xs:documentation>Код бюджета</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование бюджета</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:maxLength value="2000"/>
+								<xs:minLength value="1"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="budgetCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="tofk" type="refNsiTofkType">
+						<xs:annotation>
+							<xs:documentation>ТОФК</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="oktmo" type="refNsiOktmoType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКТМО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiCustomerCategoryType">
+		<xs:annotation>
+			<xs:documentation>Перечень категорий потребителей</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="customerCategoryCodeType">
+						<xs:annotation>
+							<xs:documentation>Код категории</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование категории</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="customerCategoryCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiDepartments">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника «Коды  ведомств (Главы)»</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="fullName">
+						<xs:annotation>
+							<xs:documentation>Полное наименование</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="shortName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Сокращенное наименование</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="254"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="code">
+						<xs:annotation>
+							<xs:documentation>Код главы</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:pattern value="\d{3}"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiFederalServiceType">
+		<xs:annotation>
+			<xs:documentation>Позиция федерального перечня услуг (работ)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="founder" type="refNsiOgsStrongType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Учредитель</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="service" type="nsiServiceType" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Услуга (работа)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiInstitutionTypeType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника Виды учреждений</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="institutionTypeCodeType">
+						<xs:annotation>
+							<xs:documentation>Код вида учреждения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование вида учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="institutionTypeCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiKbkBudgetType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника Cвязи бюджетов и кодов КБК</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="kbkCodeType">
+						<xs:annotation>
+							<xs:documentation>Код КБК</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по КБК</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="budget" type="refNsiBudgetStrongType">
+						<xs:annotation>
+							<xs:documentation>Бюджет</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="type">
+						<xs:annotation>
+							<xs:documentation>Тип КБК</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:length value="2"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="tofk" type="refNsiTofkType">
+						<xs:annotation>
+							<xs:documentation>ТОФК</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiKladrType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника КЛАДР</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="kladrMixCodeType">
+						<xs:annotation>
+							<xs:documentation>Код КЛАДР</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по КЛАДР</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="200"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="kladrMixCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="level" type="kladrLevelType">
+						<xs:annotation>
+							<xs:documentation>Уровень КЛАДР
+
+								Допустимые значения:
+								 D - Федеральный округ;
+								 R - Регион;
+								 A - Район;
+								 C - Город;
+								 S - Населенный пункт;
+								 L - Улица.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="okato" type="refNsiOkatoType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКАТО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="zip" type="zipType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Индекс</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiKosguType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника КОСГУ</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="kosguCodeType">
+						<xs:annotation>
+							<xs:documentation>Код КОСГУ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по КОСГУ</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOgsPositionType" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Тип позиции справочника ОГС</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="changablePositionType">
+				<xs:sequence>
+					<xs:element name="startDateActive" type="xs:date">
+						<xs:annotation>
+							<xs:documentation>Дата включения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="endDateActive" type="xs:date" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дата исключения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="businessStatus" type="ogsBusinessStatusType">
+						<xs:annotation>
+							<xs:documentation>Статус
+								Допустимые значения:
+								 800 – требует уточнения;
+								 801 – включена;
+								 865 – исключена;
+								 888 – отменена.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="annulment" type="xs:boolean">
+						<xs:annotation>
+							<xs:documentation>Признак аннулирования полномочий</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOgsType">
+		<xs:annotation>
+			<xs:documentation>Позиция перечня ГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiOgsPositionType">
+				<xs:sequence>
+					<xs:element name="regNum" type="ogsCodeType">
+						<xs:annotation>
+							<xs:documentation>Реестровый номер в перечне ГМУ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="main" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Основные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:group ref="otherRegNum" minOccurs="0"/>
+								<xs:element name="fullName">
+									<xs:annotation>
+										<xs:documentation>Полное наименование</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="shortName" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сокращенное наименование </xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="inn" type="innUlType">
+									<xs:annotation>
+										<xs:documentation>ИНН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="kpp" type="kppType">
+									<xs:annotation>
+										<xs:documentation>КПП</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogrn" type="ogrnCodeType">
+									<xs:annotation>
+										<xs:documentation>ОГРН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="bik" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>БИК</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:pattern value="\d{9}|\d{0}"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="nomBank" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Регистрационный номер банка</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:maxLength value="6"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="rbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="grbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Главный распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="orgType" type="ogsOrgTypeType">
+									<xs:annotation>
+										<xs:documentation>Тип организации
+
+											Допустимые значения:
+											 01 - федеральный орган государственной власти, федеральный государственный орган, орган государственной власти субъекта Российской Федерации, государственный орган субъекта Российской Федерации, орган местного самоуправления, в том числе его территориальные органы;
+											 02 - орган управления государственным внебюджетным фондом;
+											 03 - бюджетное учреждение;
+											 04 - организация с долей государственного участия;
+											 05 - унитарное предприятие;
+											 06 - субъект естественных монополий;
+											 07 - иная организация (Используется для учета негосударственных организаций);
+											 08 - казенное учреждение;
+											 09 - государственная корпорация, государственная компания (в том числе госкорпорация «Росатом»);
+											 10 - автономное учреждение;
+											 11 - организация, осуществляющая регулируемые виды деятельности;
+											 12 - хозяйственное общество, с долей государства, муниципального образования более 50 процентов;
+											 13 - дочернее хозяйственное общество;
+											 14 - специализированная организация;
+											 15 - оператор официального сайта;
+											 16 - оператор электронной площадки;
+											 17 – орган аудита;
+											 18 – банк;
+											 19 – орган контроля;
+											 20 – иное юридическое лицо.
+										</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="tofk" type="refNsiTofkType">
+									<xs:annotation>
+										<xs:documentation>ТОФК клиента</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="special" type="ogsSpecialType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Специальные указания
+
+											Допустимые значения:
+											 04 - организации не предоставляются субсидии;
+											 05 - организации предоставляются субсидии.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="financial" type="refNsiOgsStrongType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Финансовый орган</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsOos" type="credentialsOosType">
+									<xs:annotation>
+										<xs:documentation>Полномочия учреждения на ООС</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsGmu" type="credentialsGmuType">
+									<xs:annotation>
+										<xs:documentation>Полномочия учреждения на сайте ГМУ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsFk" type="credentialsFkType">
+									<xs:annotation>
+										<xs:documentation>Полномочия ФК</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="headAgency" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Oрган государственной власти, в ведении которого по ведомственной или организационной принадлежности находится организация, обладающая полномочиями в сфере размещений заказов</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="classifier" type="institutionClassifierType">
+									<xs:annotation>
+										<xs:documentation>Общероссийские классификаторы</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="budget" type="institutionBudgetStrongType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Бюджет</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="address" type="addressStrongType">
+									<xs:annotation>
+										<xs:documentation>Фактический адрес</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="paymentRequisite" type="requisiteType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Платежный реквизит</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="foiv" type="xs:boolean" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Является федеральным органом исполнительной власти</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="branch" type="xs:boolean">
+									<xs:annotation>
+										<xs:documentation>Является филиалом</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="egrulUpdateDate" type="xs:date" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Дата обновления данных организации в ЕГРЮЛ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="egrulBasedUpdateDate" type="xs:dateTime" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Дата и время обновления данных организации из ЕГРЮЛ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogv" type="xs:boolean" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Является органом государственной власти</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ppo" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Публично-правовое образование</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="name" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Наименование публично-правового образования</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:minLength value="1"/>
+														<xs:maxLength value="2000"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="oktmo" type="refNsiOktmoType">
+												<xs:annotation>
+													<xs:documentation>ОКТМО  публично-правового образования</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="additional" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дополнительные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="institutionType" type="refNsiInstitutionTypeType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Вид учреждения</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="regNumConsReg" type="regNumConsRegOgsType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Реестровый номер организации в Сводном реестре</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ppoOKATO" type="refNsiOkatoType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>ОКАТО публично-правового образования</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="phone" type="phoneStrongType">
+									<xs:annotation>
+										<xs:documentation>Телефон</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="www" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Ссылка на сайт учреждения</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="200"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="branch" type="branchChildType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Филиалы и представительства</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="section" type="sectionType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="enactment" type="institutionEnactmentType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Реквизиты правового акта органа, осуществляющего функции и полномочия учредителя, о назначении членов наблюдательного совета</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="okato" type="refNsiOkatoType">
+									<xs:annotation>
+										<xs:documentation>ОКАТО</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="other" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Остальные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="chief" type="employeeType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Руководитель</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="founder" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Учредитель</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiOgsSoftType">
+												<xs:sequence>
+													<xs:element name="authorities" type="founderAuthoritiesVSRIType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Полномочия учредителя</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="gmuRegistrationType" type="gmuRegistrationTypeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Тип регистрации учреждения на сайте ГМУ
+
+								Допустимые значения:
+								 S - зарегистрировано самостоятельно;
+								 F - зарегистрировано организацией, являющейся представителем учреждения.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkatoType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКАТО</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okatoCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКАТО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКАТО</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="200"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="okatoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkeiType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника  единиц измерения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okeiCodeType">
+						<xs:annotation>
+							<xs:documentation>Код справочника единиц измерения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по справочнику единиц измерения</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:maxLength value="1000"/>
+								<xs:minLength value="1"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="symbol" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Буквенный код</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:maxLength value="30"/>
+								<xs:minLength value="1"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="section">
+						<xs:annotation>
+							<xs:documentation>Раздел</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="code">
+									<xs:annotation>
+										<xs:documentation>Код раздела</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:length value="1"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="name">
+									<xs:annotation>
+										<xs:documentation>Наименование раздела</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:maxLength value="1000"/>
+											<xs:minLength value="1"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="group">
+						<xs:annotation>
+							<xs:documentation>Группа</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="code" type="xs:long">
+									<xs:annotation>
+										<xs:documentation>Код группы</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="name">
+									<xs:annotation>
+										<xs:documentation>Наименование группы</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:maxLength value="1000"/>
+											<xs:minLength value="1"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkerType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКЭР</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okerCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКЭР</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКЭР</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:maxLength value="250"/>
+								<xs:minLength value="1"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="okerCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="okato" type="refNsiOkatoType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКАТО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="section" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Раздел</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="subsection" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Подраздел</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkfsType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКФС</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okfsCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКФС</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКФС</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="250"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="okfsCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkoguType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКОГУ</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okoguCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКОГУ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКОГУ</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="250"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="okoguCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkopfType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКОПФ</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okopfNewCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКОПФ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКОПФ</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="200"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="okopfNewCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkpoType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКПО</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okpoCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКПО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКПО</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOktmoType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКТМО</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="oktmoCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКТМО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКТМО</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="500"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="oktmoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="addInfo" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дополнительные данные</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="500"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiOkvedType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника ОКВЭД</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="okvedCodeType">
+						<xs:annotation>
+							<xs:documentation>Код ОКВЭД</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование по ОКВЭД</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="500"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="okvedCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Ссылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="section">
+						<xs:annotation>
+							<xs:documentation>Раздел</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:length value="1"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="subsection" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Подраздел</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiPositionType" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Базовый тип позиции справочника</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="changablePositionType">
+				<xs:sequence>
+					<xs:element name="approveDate" type="xs:date" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дата принятия изменения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="startDateActive" type="xs:date">
+						<xs:annotation>
+							<xs:documentation>Дата включения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="endDateActive" type="xs:date" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дата исключения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="businessStatus" type="businessStatusType">
+						<xs:annotation>
+							<xs:documentation>Статус
+
+								Допустимые значения:
+								 801 – включена;
+								 866 – исключена.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiPpoType">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника Публично-правовые образования</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="code" type="ppoCodeType">
+						<xs:annotation>
+							<xs:documentation>Код публично-правового образования</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="name">
+						<xs:annotation>
+							<xs:documentation>Наименование публично-правового образования</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="parentCode" type="ppoCodeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Cсылка на родителя</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="oktmo" type="refNsiOktmoType">
+						<xs:annotation>
+							<xs:documentation>ОКТМО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="okato" type="refNsiOkatoType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ОКАТО</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiServiceType">
+		<xs:annotation>
+			<xs:documentation>Перечень услуг (работ)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code">
+				<xs:annotation>
+					<xs:documentation>Код услуги (работы)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="serviceCodeType">
+						<xs:maxLength value="50"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование услуги (работы)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="parentCode" type="serviceCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Ссылка на родителя</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="type" type="serviceTypeType">
+				<xs:annotation>
+					<xs:documentation>Признак услуги или работы
+
+						Допустимые значения:
+						 S – услуга;
+						 W – работа.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="number" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер (код) по утвержденному перечню услуг (работ)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="enactment" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реквизиты документа, утвердившего перечень услуг (работ)</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="type" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Вид документа</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="name" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Наименование документа</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="2000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="number" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Номер документа</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="date" type="xs:date" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Дата документа</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="author" type="refNsiOgsSoftType" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Орган, утвердивший документ</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="category" type="refNsiCustomerCategoryType" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Категория потребителей</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="field" type="fieldType">
+				<xs:annotation>
+					<xs:documentation>Сфера деятельности</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="nsiSubjectServiceType">
+		<xs:annotation>
+			<xs:documentation>Позиция перечня услуг (работ) субъекта РФ</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="ppo" type="refNsiPpoType">
+						<xs:annotation>
+							<xs:documentation>Публично-правовое образование</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="founder" type="refNsiOgsStrongType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Учредитель</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="service" type="nsiServiceType" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Услуга (работа)</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="nsiTOFK">
+		<xs:annotation>
+			<xs:documentation>Позиция справочника «ТОФК»</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiPositionType">
+				<xs:sequence>
+					<xs:element name="fullName">
+						<xs:annotation>
+							<xs:documentation>Полное наименование органа ФК</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="shortName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Сокращенное наименование органа ФК</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="code">
+						<xs:annotation>
+							<xs:documentation>Код по классификатору органов Федерального казначейства</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:pattern value="\d{4}"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="address">
+						<xs:annotation>
+							<xs:documentation>Адрес органа ФК</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="512"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="packetResultType">
+		<xs:annotation>
+			<xs:documentation>Результат обработки пакета</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="refId" type="guidType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Идентификатор обработанного пакета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="result" type="resultType">
+				<xs:annotation>
+					<xs:documentation>Результат обработки пакета
+
+						Допустимые значения:
+						 success - пакет обработан;
+						 failure - пакет не обработан.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="positionResult" type="positionResultType" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Результат обработки позиции</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="violation" type="violationType" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Выявленные в процессе обработки пакета нарушения и ошибки</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="annualBalanceF0503121Type">
+		<xs:annotation>
+			<xs:documentation>Отчет о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="formationPeriod" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Период формирования данных</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="generalData" type="annualBalanceBudgetGeneralDataType">
+						<xs:annotation>
+							<xs:documentation>Общие данные</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="income">
+						<xs:annotation>
+							<xs:documentation>Доходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="expense">
+						<xs:annotation>
+							<xs:documentation>Расходы</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="netOperatingResults">
+						<xs:annotation>
+							<xs:documentation>Чистый операционный результат</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="nonFinancialAssetsTransactions">
+						<xs:annotation>
+							<xs:documentation>Операции с нефинансовыми активами</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="financialAssetsLiabilitiesTransactions">
+						<xs:annotation>
+							<xs:documentation>Операции с финансовыми активами и обязательствами</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="reportItem" type="reportItemF0503121TopLevelType" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="packetType" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Пакет данных</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="header" type="headerType">
+				<xs:annotation>
+					<xs:documentation>Заголовок информационного пакета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="personType">
+		<xs:annotation>
+			<xs:documentation>Персональные данные</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="lastName">
+				<xs:annotation>
+					<xs:documentation>Фамилия</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="firstName">
+				<xs:annotation>
+					<xs:documentation>Имя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="middleName" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Отчество</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="positionResultType">
+		<xs:annotation>
+			<xs:documentation>Результат обработки позиции</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="refPositionId" type="guidType">
+				<xs:annotation>
+					<xs:documentation>Идентификатор обработанной позиции</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="result" type="resultType">
+				<xs:annotation>
+					<xs:documentation>Результат обработки позиции
+
+						Допустимые значения:
+						 success - обработано успешно;
+						 failure - обработано с ошибками.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="violation" type="violationType" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Выявленные в процессе обработки позиции нарушения и ошибки</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="url" type="urlType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Гиперссылка на форму отображения загруженных данных</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="positionType">
+		<xs:annotation>
+			<xs:documentation>Базовый тип позиции</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="positionId" type="guidType">
+				<xs:annotation>
+					<xs:documentation>Идентификатор позиции в информационном пакете</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="ofcRegistrationInfoType">
+		<xs:annotation>
+			<xs:documentation>Регистрационные данные учреждения для офлайн-клиента </xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiOgsPositionType">
+				<xs:sequence>
+					<xs:element name="regNum" type="ogsCodeType">
+						<xs:annotation>
+							<xs:documentation>Реестровый номер в перечне ГМУ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="authorizedOrg" type="refNsiOgsStrongType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Организация, являющаяся представителем учреждения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="main" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Основные реквизиты учреждения </xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:group ref="otherRegNum" minOccurs="0"/>
+								<xs:element name="fullName">
+									<xs:annotation>
+										<xs:documentation>Полное наименование</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="shortName" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сокращенное наименование </xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="inn" type="innUlType">
+									<xs:annotation>
+										<xs:documentation>ИНН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="kpp" type="kppType">
+									<xs:annotation>
+										<xs:documentation>КПП</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogrn" type="ogrnCodeType">
+									<xs:annotation>
+										<xs:documentation>ОГРН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="rbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="grbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Главный распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="orgType" type="ogsOrgTypeType">
+									<xs:annotation>
+										<xs:documentation>Тип организации
+
+											Допустимые значения:
+											 01 - федеральный орган государственной власти, федеральный государственный орган, орган государственной власти субъекта Российской Федерации, государственный орган субъекта Российской Федерации, орган местного самоуправления, в том числе его территориальные органы;
+											 02 - орган управления государственным внебюджетным фондом;
+											 03 - бюджетное учреждение;
+											 04 - организация с долей государственного участия;
+											 05 - унитарное предприятие;
+											 06 - субъект естественных монополий;
+											 07 - иная организация (Используется для учета негосударственных организаций);
+											 08 -  казенное учреждение;
+											 09 - государственная корпорация, государственная компания;
+											 10 - автономное учреждение;
+											 11 - организация, осуществляющая регулируемые виды деятельности;
+											 12 - хозяйственное общество, в уставном капитале которого доля участия Российской Федерации, субъекта Российской Федерации, муниципального образования в совокупности превышает 50 процентов;
+											 13 - дочернее хозяйственное общество;
+											 14 - специализированная организация;
+											 15 - оператор официального сайта;
+											 16 - оператор электронной площадки.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="tofk" type="refNsiTofkType">
+									<xs:annotation>
+										<xs:documentation>ТОФК клиента</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="special" type="ogsSpecialType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Специальные указания
+
+											Допустимые значения:
+											 04 - организации не предоставляются субсидии;
+											 05 - организации предоставляются субсидии.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="financial" type="refNsiOgsStrongType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Финансовый орган</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsOos" type="credentialsOosType">
+									<xs:annotation>
+										<xs:documentation>Полномочия учреждения на ООС</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsGmu" type="credentialsGmuType">
+									<xs:annotation>
+										<xs:documentation>Полномочия учреждения на сайте ГМУ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsFk" type="credentialsFkType">
+									<xs:annotation>
+										<xs:documentation>Полномочия ФК</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="headAgency" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Oрган государственной власти, в ведении которого по ведомственной или организационной принадлежности находится организация, обладающая полномочиями в сфере размещений заказов</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="classifier" type="institutionClassifierType">
+									<xs:annotation>
+										<xs:documentation>Общероссийские классификаторы</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="budget" type="institutionBudgetStrongType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Бюджет</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="address" type="addressStrongType">
+									<xs:annotation>
+										<xs:documentation>Фактический адрес</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="paymentRequisite" type="requisiteType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Платежный реквизит</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="foiv" type="xs:boolean" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Является федеральным органом исполнительной власти</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="branch" type="xs:boolean">
+									<xs:annotation>
+										<xs:documentation>Является филиалом</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="egrulUpdateDate" type="xs:date" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Дата обновления данных организации в ЕГРЮЛ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="egrulBasedUpdateDate" type="xs:dateTime" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Дата и время обновления данных организации из ЕГРЮЛ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogv" type="xs:boolean" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Является органом государственной власти</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="additional" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дополнительные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="institutionType" type="refNsiInstitutionTypeType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Вид учреждения</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ppo">
+									<xs:annotation>
+										<xs:documentation>Публично-правовое образование</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiPpoType">
+												<xs:sequence>
+													<xs:element name="oktmo" type="refNsiOktmoType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>ОКТМО</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="phone" type="phoneStrongType">
+									<xs:annotation>
+										<xs:documentation>Телефон</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="www" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Ссылка на сайт учреждения</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="200"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="branch" type="branchChildType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Филиалы и представительства</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="section" type="sectionType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="enactment" type="institutionEnactmentType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Реквизиты правового акта органа, осуществляющего функции и полномочия учредителя, о назначении членов наблюдательного совета</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="oktmo" type="refNsiOktmoType">
+									<xs:annotation>
+										<xs:documentation>ОКТМО</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="other" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Остальные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="chief" type="employeeType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Руководитель</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="founder" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Учредитель</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiOgsSoftType">
+												<xs:sequence>
+													<xs:element name="authorities" type="founderAuthoritiesType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Полномочия учредителя</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="gmuRegistrationType" type="gmuRegistrationTypeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Тип регистрации учреждения на сайте ГМУ
+
+								Допустимые значения:
+								 S - зарегистрировано самостоятельно;
+								 F - зарегистрировано организацией, являющейся представителем учреждения.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="ofcUserType">
+		<xs:annotation>
+			<xs:documentation>Информация о пользователе</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="positionId" type="guidType">
+				<xs:annotation>
+					<xs:documentation>Идентификатор позиции в информационном пакете</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="changeDate" type="xs:dateTime">
+				<xs:annotation>
+					<xs:documentation>Дата и время изменения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="user">
+				<xs:annotation>
+					<xs:documentation>Пользователь</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:complexContent>
+						<xs:extension base="personType">
+							<xs:sequence>
+								<xs:element name="privilege">
+									<xs:annotation>
+										<xs:documentation>Права пользователя</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="privilegeAction">
+												<xs:annotation>
+													<xs:documentation>Права по формированию сведений
+														Допустимые значения:
+															AGINF – Общая информация об учреждении.
+													</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:maxLength value="200"/>
+														<xs:minLength value="1"/>
+														<xs:pattern value="AGINF"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="privilageOfc" type="xs:boolean">
+												<xs:annotation>
+													<xs:documentation>Право формировать сведения в офлайн-клиенте</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="blockStatusAdmin" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Признак блокировки пользователя администратором организации
+														Допустимые значения:
+															B - Пользователь заблокирован;
+															U – Пользователь разблокирован.
+													</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:length value="1"/>
+														<xs:pattern value="U"/>
+														<xs:pattern value="B"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="blockStatusOperator" type="xs:int" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Признак блокировки пользователя оператором сайта
+														Допустимые значения:
+															1 - Пользователь заблокирован;
+															0 – Пользователь разблокирован.
+													</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="role">
+									<xs:annotation>
+										<xs:documentation>Роль пользователя </xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="ofcRole">
+												<xs:annotation>
+													<xs:documentation>Роль пользователя в офлайн-клиенте
+														Допустимые значения:
+															S – специалист.
+													</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:length value="1"/>
+														<xs:pattern value="S"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:extension>
+					</xs:complexContent>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="organization">
+				<xs:annotation>
+					<xs:documentation>Организация пользователя</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="regNum" type="ogsCodeType">
+							<xs:annotation>
+								<xs:documentation>Реестровый номер в перечне ГМУ</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="fullName">
+							<xs:annotation>
+								<xs:documentation>Полное наименование</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="2000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="shortName" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Сокращенное наименование </xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="2000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="subInstitutions" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Учреждения, для которых организация является представителем </xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="regNum" type="ogsCodeType">
+										<xs:annotation>
+											<xs:documentation>Реестровый номер в перечне ГМУ</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+									<xs:element name="fullName">
+										<xs:annotation>
+											<xs:documentation>Полное наименование</xs:documentation>
+										</xs:annotation>
+										<xs:simpleType>
+											<xs:restriction base="xs:string">
+												<xs:minLength value="1"/>
+												<xs:maxLength value="2000"/>
+											</xs:restriction>
+										</xs:simpleType>
+									</xs:element>
+									<xs:element name="shortName" minOccurs="0">
+										<xs:annotation>
+											<xs:documentation>Сокращенное наименование </xs:documentation>
+										</xs:annotation>
+										<xs:simpleType>
+											<xs:restriction base="xs:string">
+												<xs:minLength value="1"/>
+												<xs:maxLength value="2000"/>
+											</xs:restriction>
+										</xs:simpleType>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="ofcOgsType">
+		<xs:annotation>
+			<xs:documentation>ПГМУ для офлайн-клиента </xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="nsiOgsPositionType">
+				<xs:sequence>
+					<xs:element name="regNum" type="ogsCodeType">
+						<xs:annotation>
+							<xs:documentation>Реестровый номер в перечне ГМУ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="authorizedOrg" type="refNsiOgsStrongType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Организация, являющаяся представителем учреждения</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="main" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Основные реквизиты учреждения </xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:group ref="otherRegNum" minOccurs="0"/>
+								<xs:element name="fullName">
+									<xs:annotation>
+										<xs:documentation>Полное наименование</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="shortName" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Сокращенное наименование </xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="inn" type="innUlType">
+									<xs:annotation>
+										<xs:documentation>ИНН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="kpp" type="kppType">
+									<xs:annotation>
+										<xs:documentation>КПП</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogrn" type="ogrnCodeType">
+									<xs:annotation>
+										<xs:documentation>ОГРН</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="rbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="grbs" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Главный распорядитель бюджетных средств</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="orgType" type="ogsOrgTypeType">
+									<xs:annotation>
+										<xs:documentation>Тип организации
+
+											Допустимые значения:
+											 01 - федеральный орган государственной власти, федеральный государственный орган, орган государственной власти субъекта Российской Федерации, государственный орган субъекта Российской Федерации, орган местного самоуправления, в том числе его территориальные органы;
+											 02 - орган управления государственным внебюджетным фондом;
+											 03 - бюджетное учреждение;
+											 04 - организация с долей государственного участия;
+											 05 - унитарное предприятие;
+											 06 - субъект естественных монополий;
+											 07 - иная организация (Используется для учета негосударственных организаций);
+											 08 -  казенное учреждение;
+											 09 - государственная корпорация, государственная компания;
+											 10 - автономное учреждение;
+											 11 - организация, осуществляющая регулируемые виды деятельности;
+											 12 - хозяйственное общество, в уставном капитале которого доля участия Российской Федерации, субъекта Российской Федерации, муниципального образования в совокупности превышает 50 процентов;
+											 13 - дочернее хозяйственное общество;
+											 14 - специализированная организация;
+											 15 - оператор официального сайта;
+											 16 - оператор электронной площадки.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="tofk" type="refNsiTofkType">
+									<xs:annotation>
+										<xs:documentation>ТОФК клиента</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="special" type="ogsSpecialType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Специальные указания
+
+											Допустимые значения:
+											 04 - организации не предоставляются субсидии;
+											 05 - организации предоставляются субсидии.</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="financial" type="refNsiOgsStrongType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Финансовый орган</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsOos" type="credentialsOosType">
+									<xs:annotation>
+										<xs:documentation>Полномочия учреждения на ООС</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsGmu" type="credentialsGmuType">
+									<xs:annotation>
+										<xs:documentation>Полномочия учреждения на сайте ГМУ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="credentialsFk" type="credentialsFkType">
+									<xs:annotation>
+										<xs:documentation>Полномочия ФК</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="headAgency" type="refNsiOgsSoftType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Oрган государственной власти, в ведении которого по ведомственной или организационной принадлежности находится организация, обладающая полномочиями в сфере размещений заказов</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="classifier" type="institutionClassifierType">
+									<xs:annotation>
+										<xs:documentation>Общероссийские классификаторы</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="budget" type="institutionBudgetStrongType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Бюджет</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="address" type="addressStrongType">
+									<xs:annotation>
+										<xs:documentation>Фактический адрес</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="paymentRequisite" type="requisiteType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Платежный реквизит</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="foiv" type="xs:boolean" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Является федеральным органом исполнительной власти</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="branch" type="xs:boolean">
+									<xs:annotation>
+										<xs:documentation>Является филиалом</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="egrulUpdateDate" type="xs:date" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Дата обновления данных организации в ЕГРЮЛ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="egrulBasedUpdateDate" type="xs:dateTime" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Дата и время обновления данных организации из ЕГРЮЛ</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ogv" type="xs:boolean" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Является органом государственной власти</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="additional" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дополнительные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="institutionType" type="refNsiInstitutionTypeType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Вид учреждения</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="ppo">
+									<xs:annotation>
+										<xs:documentation>Публично-правовое образование</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiPpoType">
+												<xs:sequence>
+													<xs:element name="oktmo" type="refNsiOktmoType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>ОКТМО</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="phone" type="phoneStrongType">
+									<xs:annotation>
+										<xs:documentation>Телефон</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="www" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Ссылка на сайт учреждения</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="200"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="branch" type="branchChildType" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Филиалы и представительства</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="section" type="sectionType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="enactment" type="institutionEnactmentType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Реквизиты правового акта органа, осуществляющего функции и полномочия учредителя, о назначении членов наблюдательного совета</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="oktmo" type="refNsiOktmoType">
+									<xs:annotation>
+										<xs:documentation>ОКТМО</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="other" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Остальные реквизиты учреждения</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="chief" type="employeeType" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Руководитель</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+								<xs:element name="founder" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Учредитель</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:complexContent>
+											<xs:extension base="refNsiOgsSoftType">
+												<xs:sequence>
+													<xs:element name="authorities" type="founderAuthoritiesType" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Полномочия учредителя</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:extension>
+										</xs:complexContent>
+									</xs:complexType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="gmuRegistrationType" type="gmuRegistrationTypeType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Тип регистрации учреждения на сайте ГМУ
+
+								Допустимые значения:
+								 S - зарегистрировано самостоятельно;
+								 F - зарегистрировано организацией, являющейся представителем учреждения.</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503121BaseType_2013">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете о финансовых результатах деятельности (ф. 0503121) за период начиная с 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="sectionNumber" type="kosguCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код по КОСГУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="budgetActivity" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Бюджетная деятельность </xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="availableMeans" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении </xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="total" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503121BaseType">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="sectionNumber" type="kosguCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код по КОСГУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="budgetActivity" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Бюджетная деятельность </xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="incomeActivity" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Приносящая доход деятельность</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="availableMeans" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении </xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="total" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503121TopLevelType_2013">
+		<xs:annotation>
+			<xs:documentation> Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121) за период начиная с 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503121BaseType_2013">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503121BaseType_2013" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503121TopLevelType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503121)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503121BaseType">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503121BaseType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503127BaseType">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="budgetClassificationCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код дохода по бюджетной классификации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:length value="20"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="approvedBudgetAssignments" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Утвержденные бюджетные назначения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="budgetObligationLimits" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Лимиты бюджетных обязательств</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execFinancialAuthorities" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через финансовые органы</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execBankAccounts" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через банковские счета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execNonCashOperations" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через некассовые операции</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execTotal" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="unexecAssignments" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Неисполненные назначения (по ассигнованиям)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="unexecBudgetObligationLimit" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Неисполненные назначения по лимитам бюджетных обязательств</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503127TopLevelType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в отчете об исполнении бюджета (ф. 0503127)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503127BaseType">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503127BaseType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503130BaseType_2013">
+		<xs:annotation>
+			<xs:documentation>Запись в балансе (ф. 0503130) за период начиная с 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Название актива или пассива</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="budgetActivityBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Бюджетная деятельность на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="budgetActivityEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Бюджетная деятельность на конец отчетного периода</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="availableMeansBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="availableMeansEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении на конец отчетного периода</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на конец отчетного периода</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503130BaseType">
+		<xs:annotation>
+			<xs:documentation>Запись в балансе (ф. 0503130)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Название актива или пассива</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="budgetActivityBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Бюджетная деятельность на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="budgetActivityEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Бюджетная деятельность на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="incomeActivityBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Приносящая доход деятельность на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="incomeActivityEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Приносящая доход деятельность на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="availableMeansBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="availableMeansEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503130BaseReferenceType_2013">
+		<xs:annotation>
+			<xs:documentation>Запись в справке баланса (ф. 0503130) за период начиная с 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование забалансового счета, показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="totalBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на конец отчетного периода</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503130TopLevelReferenceType_2013">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в справке баланса (ф. 0503130) за период начиная с 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование забалансового счета, показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="totalBeginYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на конец отчетного периода</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="reportSubItemRefer" type="reportItemF0503130BaseReferenceType_2013" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503130TopLevelReferenceType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в справке баланса (ф. 0503130)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503130TopLevelType">
+				<xs:sequence>
+					<xs:element name="accountNumber">
+						<xs:annotation>
+							<xs:documentation>Номер забалансового счета</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:pattern value="\d{2}"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503130TopLevelType_2013">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130) за период начиная с 2013 года включительно</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503130BaseType_2013">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503130BaseType_2013" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503130TopLevelType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в балансе (ф. 0503130)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503130BaseType">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503130BaseType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503137BaseType">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете об исполнении смет доходов и расходов по приносящей доход деятельности главного распорядителя, получателя бюджетных средств (ф. 0503137)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="budgetClassificationCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код дохода по бюджетной классификации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:length value="20"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="approvedEstimateAssignments" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Утвержденные сметные назначения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execFinancialAuthorities" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через финансовые органы</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execBankAccounts" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через банковские счета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execNonCashOperations" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через некассовые операции</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execTotal" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="unexecAssignments" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Неисполненные назначения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503137TopLevelType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в отчете об исполнении смет доходов и расходов по приносящей доход деятельности главного распорядителя, получателя бюджетных средств (ф. 0503137)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503137BaseType">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503137BaseType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503721BaseType">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="analyticCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код аналитики</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}|[X|x]"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="targetFunds" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность с целевыми средствами</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="services" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность по оказанию услуг (работ)</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="temporaryFunds" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="total" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503721BaseType2015">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="analyticCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код аналитики</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}|[X|x]"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="targetFunds" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность с целевыми средствами</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="stateTaskFunds" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность по государственному заданию</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="revenueFunds" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Приносящая доход деятельность</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="total" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503721TopLevelType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503721BaseType">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503721BaseType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503721TopLevelType2015">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в отчете о финансовых результатах деятельности (ф. 0503721)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503721BaseType2015">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503721BaseType2015" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503730BaseType">
+		<xs:annotation>
+			<xs:documentation>Запись в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Название актива или пассива</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="targetFundsStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность с целевыми средствами на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="targetFundsEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность с целевыми средствами на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="servicesStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность по оказанию услуг (работ) на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="servicesEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность по оказанию услуг (работ) на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="temporaryFundsStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="temporaryFundsEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства во временном распоряжении на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503730BaseType2015">
+		<xs:annotation>
+			<xs:documentation>Запись в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Название актива или пассива</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="targetFundsStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность с целевыми средствами на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="targetFundsEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность с целевыми средствами на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="stateTaskFundsStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность по государственному заданию на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="stateTaskFundsEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Деятельность по государственному заданию на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="revenueFundsStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Приносящая доход деятельность на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="revenueFundsEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Приносящая доход деятельность на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalStartYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на начало года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="totalEndYear" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Итого на конец года</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503730TopLevelReferenceType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503730TopLevelType">
+				<xs:sequence>
+					<xs:element name="accountNumber">
+						<xs:annotation>
+							<xs:documentation>Номер забалансового счета</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:pattern value="\d{2}"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503730TopLevelReferenceType_2015">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503730TopLevelType_2015">
+				<xs:sequence>
+					<xs:element name="accountNumber">
+						<xs:annotation>
+							<xs:documentation>Номер забалансового счета</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:pattern value="\d{2}"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503730TopLevelType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503730BaseType">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503730BaseType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503730TopLevelType_2015">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в балансе государственного (муниципального) учреждения (ф. 0503730)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503730BaseType2015">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503730BaseType2015" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503737BaseType">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="500"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="parentLineCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код родительской строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string" >
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="analyticCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код аналитики</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="approvedPlanAssignments" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Утверждено плановых назначений</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execPersonalAuthorities" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через лицевые счета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execBankAccounts" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через банковские счета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execNonCashOperations" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через некассовые операции</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execCashAgency" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено через через кассу учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="execTotal" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Исполнено итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="unexecPlanAssignments" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Не исполнено плановых назначений</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503737BaseReturnExpenseType_2015">
+		<xs:annotation>
+			<xs:documentation>Запись в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="parentLineCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код родительской строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}(\.\d{1,2})?"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="analyticCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код аналитики</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="returnPersonalAuthorities" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Произведено возвратов через лицевые счета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="returnBankAccounts" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Произведено возвратов через банковские счета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="returnNonCashOperations" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Произведено возвратов некассовыми операциями</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="returnCashAgency" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Произведено возвратов через кассу учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="returnTotal" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation> итого</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503737TopLevelType">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503737BaseType">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503737BaseType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="reportItemF0503737TopLevelReturnExpenseType_2015">
+		<xs:annotation>
+			<xs:documentation>Запись верхнего уровня в отчете об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="reportItemF0503737BaseReturnExpenseType_2015">
+				<xs:sequence>
+					<xs:element name="reportSubItem" type="reportItemF0503737BaseReturnExpenseType_2015" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Детализация записи верхнего уровня</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="regPublishedInfoType">
+		<xs:annotation>
+			<xs:documentation>Реестр размещенных сведений</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="positionId" type="guidType">
+				<xs:annotation>
+					<xs:documentation>Идентификатор позиции в информационном пакете</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="changeDate" type="xs:dateTime">
+				<xs:annotation>
+					<xs:documentation>Дата и время изменения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="regNum" type="regNumConsRegType">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="main">
+				<xs:annotation>
+					<xs:documentation>Основные реквизиты учреждения </xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="fullName">
+							<xs:annotation>
+								<xs:documentation>Полное наименование</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="2000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="inn" type="innUlType">
+							<xs:annotation>
+								<xs:documentation>ИНН</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="kpp" type="kppType">
+							<xs:annotation>
+								<xs:documentation>КПП</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="orgType" type="regPublishedOrgType">
+							<xs:annotation>
+								<xs:documentation>Тип организации
+
+									Допустимые значения:
+									 03 - бюджетное учреждение;
+									 10 - автономное учреждение.</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="budgets" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Бюджеты</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="budget" type="institutionBudgetStrongType" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Бюджет</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+						<xs:element name="founders" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Учредители</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="founder" maxOccurs="unbounded">
+										<xs:annotation>
+											<xs:documentation>Учредитель</xs:documentation>
+										</xs:annotation>
+										<xs:complexType>
+											<xs:complexContent>
+												<xs:extension base="refNsiConsRegSoftType">
+													<xs:sequence>
+														<xs:element name="INN">
+															<xs:annotation>
+																<xs:documentation>ИНН учредителя </xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="innUlType"/>
+															</xs:simpleType>
+														</xs:element>
+														<xs:element name="KPP">
+															<xs:annotation>
+																<xs:documentation>КПП учредителя </xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="kppType"/>
+															</xs:simpleType>
+														</xs:element>
+														<xs:element name="authorities" type="founderAuthoritiesVSRIType" minOccurs="0">
+															<xs:annotation>
+																<xs:documentation>Полномочия учредителя</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+													</xs:sequence>
+												</xs:extension>
+											</xs:complexContent>
+										</xs:complexType>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="publishedInfos">
+				<xs:annotation>
+					<xs:documentation>Размещенные сведения</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="publishedInfo" maxOccurs="unbounded">
+							<xs:annotation>
+								<xs:documentation>Размещенные сведения</xs:documentation>
+							</xs:annotation>
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="reportYear" type="yearType">
+										<xs:annotation>
+											<xs:documentation>Отчетный год</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+									<xs:element name="typeInfo">
+										<xs:annotation>
+											<xs:documentation>Допустимые значения:
+												institutionInfo (Общая информация об учреждении);
+												stateTask (Информация о государственном (муниципальном) задании на оказание государственных (муниципальных) услуг (выполнение работ) и его исполнении);
+												financialActivityPlan (Информация о плане финансово-хозяйственной деятельности);
+												actionGrant (Информация об операциях с целевыми средствами из бюджета);
+												activityResult (Информация о результатах деятельности и об использовании имущества);
+												inspectionActivity (Сведения о проведенных в отношении учреждения контрольных мероприятиях и их результатах);
+												annualBalanceF0503721 (Отчет о финансовых результатах деятельности (ф. 0503721));
+												annualBalanceF0503730 (Баланс государственного (муниципального) учреждения (ф. 0503730));
+												annualBalanceF0503737 (Отчет об исполнении учреждением плана его финансово-хозяйственной деятельности (ф. 0503737)).</xs:documentation>
+										</xs:annotation>
+										<xs:simpleType>
+											<xs:restriction base="xs:string">
+												<xs:enumeration value="institutionInfo"/>
+												<xs:enumeration value="stateTask"/>
+												<xs:enumeration value="financialActivityPlan"/>
+												<xs:enumeration value="actionGrant"/>
+												<xs:enumeration value="activityResult"/>
+												<xs:enumeration value="inspectionActivity"/>
+												<xs:enumeration value="annualBalanceF0503721"/>
+												<xs:enumeration value="annualBalanceF0503730"/>
+												<xs:enumeration value="annualBalanceF0503737"/>
+											</xs:restriction>
+										</xs:simpleType>
+									</xs:element>
+									<xs:element name="published" type="xs:boolean">
+										<xs:annotation>
+											<xs:documentation>Признак размещения информации на сайте</xs:documentation>
+										</xs:annotation>
+									</xs:element>
+								</xs:sequence>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiBudgetSoftType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник Бюджеты (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="budgetCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код бюджета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование бюджета</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="2000"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiBudgetStrongType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник Бюджеты (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="budgetCodeType">
+				<xs:annotation>
+					<xs:documentation>Код бюджета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование бюджета</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="2000"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiCustomerCategoryType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник категорий потребителей</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="customerCategoryCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код категории</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование категории</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiInstitutionTypeType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник Виды учреждений</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="institutionTypeCodeType">
+				<xs:annotation>
+					<xs:documentation>Код вида учреждения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование вида учреждения</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiKbkBudgetType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник Cвязи бюджетов и кодов КБК</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code">
+				<xs:annotation>
+					<xs:documentation>Код КБК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="kbkCodeType">
+						<xs:length value="20"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по КБК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="budget" type="refNsiBudgetStrongType">
+				<xs:annotation>
+					<xs:documentation>Бюджет</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiKbkType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник КБК</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code">
+				<xs:annotation>
+					<xs:documentation>Код КБК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="kbkCodeType">
+						<xs:length value="20"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по КБК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiKladrSoftType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник КЛАДР (субъект РФ, район, город, населеннй пункт) (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="kladrCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование по КЛАДР</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiKladrStreetSoftType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник КЛАДР (улица) (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="kladrStreetCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование по КЛАДР</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiKladrStrongType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник КЛАДР (субъект РФ, район, город, населеннй пункт) (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="kladrCodeType">
+				<xs:annotation>
+					<xs:documentation>Код КЛАДР</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по КЛАДР</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiKosguType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник КОСГУ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="kosguCodeType">
+				<xs:annotation>
+					<xs:documentation>Код КОСГУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по КОСГУ</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOgsExtendedSoftType">
+		<xs:annotation>
+			<xs:documentation>Расширенная ссылка на перечень ГМУ (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiOgsSoftType">
+				<xs:sequence>
+					<xs:element name="inn" type="innUlType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ИНН</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="kpp" type="kppType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>КПП</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="refNsiConsRegExtendedSoftType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на ПГМУ/Сводный реестр (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiConsRegSoftType">
+				<xs:sequence>
+					<xs:element name="inn" type="innUlType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ИНН</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="kpp" type="kppType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>КПП</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="refNsiOgsExtendedStrongType">
+		<xs:annotation>
+			<xs:documentation>Расширенная ссылка на перечень ГМУ (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiOgsStrongType">
+				<xs:sequence>
+					<xs:element name="inn" type="innUlType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ИНН</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="kpp" type="kppType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>КПП</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="refNsiConsRegExtendedStrongType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на ПГМУ/Сводный реестр (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="refNsiConsRegStrongType">
+				<xs:sequence>
+					<xs:element name="inn" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>ИНН</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:annotation>
+								<xs:documentation>ИНН (юридическое лицо)</xs:documentation>
+							</xs:annotation>
+							<xs:restriction base="xs:integer">
+								<xs:pattern value="\d{10}"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="kpp" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>КПП</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:annotation>
+								<xs:documentation>КПП</xs:documentation>
+							</xs:annotation>
+							<xs:restriction base="xs:integer">
+								<xs:pattern value="\d{9}"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="refNsiOgsSoftType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на перечень ГМУ (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="regNum" type="ogsCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер организации в перечне ГМУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="fullName">
+				<xs:annotation>
+					<xs:documentation>Полное наименование организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOgsSoftType1">
+		<xs:annotation>
+			<xs:documentation>Ссылка на перечень ГМУ (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="regNum" type="ogsCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер организации в перечне ГМУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="fullName">
+				<xs:annotation>
+					<xs:documentation>Полное наименование организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="4000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiConsRegSoftType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на ПГМУ/Сводный реестр (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="regNum" type="regNumConsRegType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер организации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="fullName">
+				<xs:annotation>
+					<xs:documentation>Полное наименование организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOgsStrongType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на перечень ГМУ (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="regNum" type="ogsCodeType">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер организации в перечне ГМУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="fullName" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Полное наименование организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiConsRegStrongType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на ПГМУ/Сводный реестр (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="regNum">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="regNumConsRegType"/>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="fullName" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Полное наименование организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOkatoType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКАТО</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="okatoCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ОКАТО</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ОКАТО</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOkeiType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКЕИ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="okeiCodeType">
+				<xs:annotation>
+					<xs:documentation>Код справочника единиц измерения</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="symbol" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Буквенный код</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="30"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOkfsType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКФС</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="okfsCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ОКФС</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ОКФС</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="250"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOkoguType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКОГУ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="okoguCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ОКОГУ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ОКОГУ</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="250"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOkopfType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКОПФ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="okopfMixCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ОКОПФ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ОКОПФ</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOkpoType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКПО</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="okpoCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ОКПО</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ОКПО</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOktmoType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКТМО</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="oktmoCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ОКТМО</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ОКТМО</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="500"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiOkvedType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ОКВЭД</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="okvedCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ОКВЭД</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ОКВЭД</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="500"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="type" type="activityTypeType">
+				<xs:annotation>
+					<xs:documentation>Тип вида деятельности
+
+						Допустимые значения:
+						 C - основной;
+						 O - иной.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiPpoType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник Публично-правовые образования</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="ppoCodeType">
+				<xs:annotation>
+					<xs:documentation>Код публично-правового образования</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование публично-правового образования</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiServiceType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на перечень услуг (работ)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код услуги (работы)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="serviceCodeType">
+						<xs:maxLength value="50"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование услуги (работы)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="4000" fixed="false"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="type" type="serviceTypeType">
+				<xs:annotation>
+					<xs:documentation>Признак услуги или работы
+
+						Допустимые значения:
+						 S – услуга;
+						 W – работа.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="number" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Номер (код) по утвержденному перечню услуг (работ)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiService640rType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на перечень услуг (работ)</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код услуги (работы)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="serviceCodeType">
+						<xs:maxLength value="50"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование услуги (работы)</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="4000" fixed="false"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="type" type="serviceTypeType">
+				<xs:annotation>
+					<xs:documentation>Признак услуги или работы
+
+						Допустимые значения:
+						 S – услуга;
+						 W – работа.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="uniqueNumber" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Уникальный номер по базовому (отраслевому) перечню </xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="refNsiTofkType">
+		<xs:annotation>
+			<xs:documentation>Ссылка на справочник ТОФК</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code" type="tofkCodeType">
+				<xs:annotation>
+					<xs:documentation>Код ТОФК</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Наименование по ТОФК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="requisiteType">
+		<xs:annotation>
+			<xs:documentation>Платежные реквизиты</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="creditOrgName">
+				<xs:annotation>
+					<xs:documentation>Наименование кредитной организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="200"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="creditOrgAdds">
+				<xs:annotation>
+					<xs:documentation>Адрес кредитной организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="2000"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="bik">
+				<xs:annotation>
+					<xs:documentation>БИК</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="(\p{L}|\d){9}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="correspAccount" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Корреспондентский счет</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="(\p{L}|\d){20}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="currentAccount" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Расчетный счет</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="(\p{L}|\d){20}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="personalAccount" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Лицевой счет</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="(03|05|20|21|30|41)(\p{L}|\d){9}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="tofk" type="refNsiTofkType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>ТОФК</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="serviceIndexType">
+		<xs:annotation>
+			<xs:documentation>Показатели услуги</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="index">
+				<xs:annotation>
+					<xs:documentation>Показатель</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="name">
+							<xs:annotation>
+								<xs:documentation>Наименование</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="4000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="unit" type="refNsiOkeiType">
+							<xs:annotation>
+								<xs:documentation>Единица измерения</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+						<xs:element name="info" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Дополнительная информация </xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="4000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="valueYear">
+				<xs:annotation>
+					<xs:documentation>Значение показателя на год</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="reportYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Отчетный</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="currentYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Текущий</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="nextYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Очередной</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="planFirstYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Первый плановый</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="planLastYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Второй плановый</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="source" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Источник информации</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="4000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="valueActual" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Фактические значения показателей</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="actualValue" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Фактическое значение</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="rejectReason" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Причины отклонения от запланированного значения показателя</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="500"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="source" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Источник информации</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="4000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="serviceIndex640rType">
+		<xs:annotation>
+			<xs:documentation>Показатели услуги</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="index">
+				<xs:annotation>
+					<xs:documentation>Показатель</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="regNum" minOccurs="1">
+							<xs:annotation>
+								<xs:documentation>Уникальный номер реестровой записи</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="45"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="name">
+							<xs:annotation>
+								<xs:documentation>Наименование</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="4000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="unit" type="refNsiOkeiType">
+							<xs:annotation>
+								<xs:documentation>Единица измерения</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="deviation" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Допустимое (возможное) отклонение (%) </xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="250"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="valueYear">
+				<xs:annotation>
+					<xs:documentation>Значение показателя </xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="reportYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Отчетный</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="currentYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Текущий</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="nextYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Очередной</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="planFirstYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Первый плановый</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="planLastYear" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Второй плановый</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+			<xs:element name="valueActual" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Фактические значения показателей</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element ref="reportGUID"/>
+						<xs:element name="actualValue" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Исполнено на текущую дату</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="200"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="reject" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Отклонение, превышающее допустимое (возможное) значение</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="250"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="rejectReason" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Причины отклонения от запланированного значения показателя</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="500"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="averagePrice" type="decimalType" minOccurs="0">
+							<xs:annotation>
+								<xs:documentation>Фактическое значение среднего размера платы (цены, тарифа) за государственную услугу</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="stateTaskType">
+		<xs:annotation>
+			<xs:documentation>Государственное задание</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="reportYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Отчетный год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="financialYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Текущий финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nextFinancialYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Очередной финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planFirstYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Первый год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planLastYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Второй год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="service" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Услуга (работа)</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:complexContent>
+								<xs:extension base="refNsiServiceType">
+									<xs:sequence>
+										<xs:element name="ordinalNumber" type="xs:int">
+											<xs:annotation>
+												<xs:documentation>Порядковый номер раздела</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+										<xs:element name="category" type="refNsiCustomerCategoryType" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Категория потребителей</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+										<xs:element name="volumeIndex" type="serviceIndexType" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Показатель объёма</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+										<xs:element name="qualityIndex" type="serviceIndexType" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Показатель качества</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+										<xs:element name="renderEnactment" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Нормативно правовой акт, регулирующий порядок оказания государственной (муниципальной) услуги</xs:documentation>
+											</xs:annotation>
+											<xs:simpleType>
+												<xs:restriction base="xs:string">
+													<xs:minLength value="1"/>
+													<xs:maxLength value="2000"/>
+												</xs:restriction>
+											</xs:simpleType>
+										</xs:element>
+										<xs:element name="payment" minOccurs="0">
+											<xs:annotation>
+												<xs:documentation>Сведения о ценах (тарифах) на услугу</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:sequence>
+													<xs:element name="averagePrice" type="decimalType">
+														<xs:annotation>
+															<xs:documentation>Средневзвешенная цена за единицу услуги (руб.)</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+													<xs:element name="limitPrice" minOccurs="0" maxOccurs="unbounded">
+														<xs:annotation>
+															<xs:documentation>Значение предельных цен (тарифов)</xs:documentation>
+														</xs:annotation>
+														<xs:complexType>
+															<xs:sequence>
+																<xs:element name="name">
+																	<xs:annotation>
+																		<xs:documentation>Наименование услуги</xs:documentation>
+																	</xs:annotation>
+																	<xs:simpleType>
+																		<xs:restriction base="xs:string">
+																			<xs:minLength value="1"/>
+																			<xs:maxLength value="2000"/>
+																		</xs:restriction>
+																	</xs:simpleType>
+																</xs:element>
+																<xs:element name="price">
+																	<xs:annotation>
+																		<xs:documentation>Цена (тариф), единица измерения</xs:documentation>
+																	</xs:annotation>
+																	<xs:simpleType>
+																		<xs:restriction base="xs:string">
+																			<xs:minLength value="1"/>
+																			<xs:maxLength value="1000"/>
+																		</xs:restriction>
+																	</xs:simpleType>
+																</xs:element>
+															</xs:sequence>
+														</xs:complexType>
+													</xs:element>
+													<xs:element name="priceEnactment">
+														<xs:annotation>
+															<xs:documentation>Сведения о нормативных правовых актах, устанавливающих цены (тарифы) на услугу либо порядок их установления</xs:documentation>
+														</xs:annotation>
+														<xs:complexType>
+															<xs:sequence>
+																<xs:element name="type">
+																	<xs:annotation>
+																		<xs:documentation>Вид нормативного правового акта</xs:documentation>
+																	</xs:annotation>
+																	<xs:simpleType>
+																		<xs:restriction base="xs:string">
+																			<xs:minLength value="1"/>
+																			<xs:maxLength value="200"/>
+																		</xs:restriction>
+																	</xs:simpleType>
+																</xs:element>
+																<xs:element name="name">
+																	<xs:annotation>
+																		<xs:documentation>Наименование нормативного правового акта</xs:documentation>
+																	</xs:annotation>
+																	<xs:simpleType>
+																		<xs:restriction base="xs:string">
+																			<xs:minLength value="1"/>
+																			<xs:maxLength value="2000"/>
+																		</xs:restriction>
+																	</xs:simpleType>
+																</xs:element>
+																<xs:element name="number">
+																	<xs:annotation>
+																		<xs:documentation>Номер нормативного правового акта</xs:documentation>
+																	</xs:annotation>
+																	<xs:simpleType>
+																		<xs:restriction base="xs:string">
+																			<xs:minLength value="1"/>
+																			<xs:maxLength value="200"/>
+																		</xs:restriction>
+																	</xs:simpleType>
+																</xs:element>
+																<xs:element name="date" type="xs:date">
+																	<xs:annotation>
+																		<xs:documentation>Дата нормативного правового акта</xs:documentation>
+																	</xs:annotation>
+																</xs:element>
+																<xs:element name="author" type="refNsiOgsSoftType">
+																	<xs:annotation>
+																		<xs:documentation>Орган, утвердивший нормативный правовой акт</xs:documentation>
+																	</xs:annotation>
+																</xs:element>
+															</xs:sequence>
+														</xs:complexType>
+													</xs:element>
+												</xs:sequence>
+											</xs:complexType>
+										</xs:element>
+										<xs:element name="informingProcedure" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Порядок информирования потенциальных потребителей муниципальной услуги</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:sequence>
+													<xs:element name="method">
+														<xs:annotation>
+															<xs:documentation>Способ информирования</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="200"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="content">
+														<xs:annotation>
+															<xs:documentation>Состав размещаемой (доводимой) информации</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="4000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="rate">
+														<xs:annotation>
+															<xs:documentation>Частота обновления информации</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="200"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+												</xs:sequence>
+											</xs:complexType>
+										</xs:element>
+										<xs:element name="supervisionProcedure" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Порядок контроля за исполнением государственного (муниципального) задания</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:sequence>
+													<xs:element name="form">
+														<xs:annotation>
+															<xs:documentation>Форма контроля</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="rate">
+														<xs:annotation>
+															<xs:documentation>Периодичность</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="200"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="supervisor" type="refNsiOgsSoftType">
+														<xs:annotation>
+															<xs:documentation>Орган исполнительной власти, осуществляющий контроль за оказанием услуги</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+												</xs:sequence>
+											</xs:complexType>
+										</xs:element>
+										<xs:element name="reportRequirements" minOccurs="0">
+											<xs:annotation>
+												<xs:documentation>Требования к отчетности об исполнении государственного (муниципального) задания</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:sequence>
+													<xs:element name="earlyTermination" minOccurs="0" maxOccurs="unbounded">
+														<xs:annotation>
+															<xs:documentation>Основание для досрочного прекращения государственного (муниципального) задания</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="4000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="deliveryTerm" minOccurs="0" maxOccurs="unbounded">
+														<xs:annotation>
+															<xs:documentation>Сроки предоставления отчетов об исполнении государственного (муниципального) задания</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="1000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="otherRequirement" minOccurs="0" maxOccurs="unbounded">
+														<xs:annotation>
+															<xs:documentation>Иные требования к отчетности об исполнении</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="1000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="otherInfo" minOccurs="0" maxOccurs="unbounded">
+														<xs:annotation>
+															<xs:documentation>Иная информация, необходимая для исполнения (контроля за исполнением) государственного (муниципального) задания</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="1000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+												</xs:sequence>
+											</xs:complexType>
+										</xs:element>
+									</xs:sequence>
+								</xs:extension>
+							</xs:complexContent>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="stateTask640rType">
+		<xs:annotation>
+			<xs:documentation>Государственное задание в соответствии с Постановлением Правительства РФ от 26 июня 2015 г. N640 </xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="reportYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Отчетный год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="financialYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Текущий финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="nextFinancialYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Очередной финансовый год</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planFirstYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Первый год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="planLastYear" type="yearType" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Второй год планового периода</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="service" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Услуга (работа)</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:complexContent>
+								<xs:extension base="refNsiService640rType">
+									<xs:sequence>
+										<xs:element name="ordinalNumber">
+											<xs:annotation>
+												<xs:documentation>Порядковый номер раздела</xs:documentation>
+											</xs:annotation>
+											<xs:simpleType>
+												<xs:restriction base="xs:int">
+													<xs:totalDigits value="3"/>
+												</xs:restriction>
+											</xs:simpleType>
+										</xs:element>
+										<xs:element name="category" type="refNsiCustomerCategoryType" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Категория потребителей</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+										<xs:sequence minOccurs="0">
+											<xs:element name="payService" type="xs:boolean" fixed="true">
+												<xs:annotation>
+													<xs:documentation>Признак "Возможность взимания платы за услугу"</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="averagePrice" type="decimalType" minOccurs="0">
+												<xs:annotation>
+													<xs:documentation>Средневзвешенная цена за единицу услуги (руб.)</xs:documentation>
+												</xs:annotation>
+											</xs:element>
+											<xs:element name="priceEnactment" maxOccurs="unbounded">
+												<xs:annotation>
+													<xs:documentation>Нормативные правовые акты, устанавливающие цены (тарифы) на услугу либо порядок его (ее) установления</xs:documentation>
+												</xs:annotation>
+												<xs:complexType>
+													<xs:sequence>
+														<xs:element name="type">
+															<xs:annotation>
+																<xs:documentation>Вид нормативного правового акта</xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="xs:string">
+																	<xs:minLength value="1"/>
+																	<xs:maxLength value="200"/>
+																</xs:restriction>
+															</xs:simpleType>
+														</xs:element>
+														<xs:element name="author" type="refNsiOgsSoftType">
+															<xs:annotation>
+																<xs:documentation>Орган, утвердивший нормативный правовой акт</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="date" type="xs:date">
+															<xs:annotation>
+																<xs:documentation>Дата нормативного правового акта</xs:documentation>
+															</xs:annotation>
+														</xs:element>
+														<xs:element name="number">
+															<xs:annotation>
+																<xs:documentation>Номер нормативного правового акта</xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="xs:string">
+																	<xs:minLength value="1"/>
+																	<xs:maxLength value="200"/>
+																</xs:restriction>
+															</xs:simpleType>
+														</xs:element>
+														<xs:element name="name">
+															<xs:annotation>
+																<xs:documentation>Наименование нормативного правового акта</xs:documentation>
+															</xs:annotation>
+															<xs:simpleType>
+																<xs:restriction base="xs:string">
+																	<xs:minLength value="1"/>
+																	<xs:maxLength value="2000"/>
+																</xs:restriction>
+															</xs:simpleType>
+														</xs:element>
+													</xs:sequence>
+												</xs:complexType>
+											</xs:element>
+										</xs:sequence>
+										<xs:element name="renderEnactment" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Нормативно правовой акт, регулирующий порядок оказания государственной (муниципальной) услуги</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:sequence>
+													<xs:element name="type">
+														<xs:annotation>
+															<xs:documentation>Вид нормативного правового акта</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="200"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="author" type="refNsiOgsSoftType">
+														<xs:annotation>
+															<xs:documentation>Орган, утвердивший нормативный правовой акт</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+													<xs:element name="date" type="xs:date">
+														<xs:annotation>
+															<xs:documentation>Дата нормативного правового акта</xs:documentation>
+														</xs:annotation>
+													</xs:element>
+													<xs:element name="number">
+														<xs:annotation>
+															<xs:documentation>Номер нормативного правового акта</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="200"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="name">
+														<xs:annotation>
+															<xs:documentation>Наименование нормативного правового акта</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+												</xs:sequence>
+											</xs:complexType>
+										</xs:element>
+										<xs:element name="informingProcedure" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Порядок информирования потенциальных потребителей муниципальной услуги</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:sequence>
+													<xs:element name="method" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Способ информирования</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="content" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Состав размещаемой (доводимой) информации</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="4000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="rate" minOccurs="0">
+														<xs:annotation>
+															<xs:documentation>Частота обновления информации</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+												</xs:sequence>
+											</xs:complexType>
+										</xs:element>
+										<xs:element name="qualityIndex" type="serviceIndex640rType" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Показатель(и) качества</xs:documentation>
+											</xs:annotation>
+										</xs:element>
+										<xs:element name="volumeIndex" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Показатель(и) объёма</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:complexContent>
+													<xs:extension base="serviceIndex640rType">
+														<xs:sequence>
+															<xs:element name="averagePrice" minOccurs="0">
+																<xs:annotation>
+																	<xs:documentation>Среднегодовой размер платы (цена, тариф)</xs:documentation>
+																</xs:annotation>
+																<xs:complexType>
+																	<xs:sequence>
+																		<xs:element name="reportYear" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Отчетный</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="currentYear" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Текущий</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="nextYear" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Очередной</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="planFirstYear" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Первый плановый</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="planLastYear" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Второй плановый</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																	</xs:sequence>
+																</xs:complexType>
+															</xs:element>
+															<xs:element name="distribution" minOccurs="0" maxOccurs="unbounded">
+																<xs:annotation>
+																	<xs:documentation>Распределение по филиалам (не заполняется от внешних систем)</xs:documentation>
+																</xs:annotation>
+																<xs:complexType>
+																	<xs:sequence>
+																		<xs:element name="branchName" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Название филиала</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+
+																		<xs:element name="previousYearValue" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Значение показателя за отчетный год</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+
+																		<xs:element name="currentYearValue" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Значение показателя на текущий год</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+
+																		<xs:element name="nextYearValue" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Значение показателя на очередной год</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+
+																		<xs:element name="firstYearPeriodValue" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Значение показателя на первый плановый год</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+
+																		<xs:element name="secondYearPeriodValue" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Значение показателя на второй плановый год</xs:documentation>
+																			</xs:annotation>
+																			<xs:simpleType>
+																				<xs:restriction base="xs:string">
+																					<xs:minLength value="1"/>
+																					<xs:maxLength value="200"/>
+																				</xs:restriction>
+																			</xs:simpleType>
+																		</xs:element>
+
+																		<xs:element name="previousYearFee" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Отчетный</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="currentYearFee" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Текущий</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="nextYearFee" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Очередной</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="firstYearPeriodFee" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Первый плановый</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																		<xs:element name="secondYearPeriodFee" type="decimalType" minOccurs="0">
+																			<xs:annotation>
+																				<xs:documentation>Второй плановый</xs:documentation>
+																			</xs:annotation>
+																		</xs:element>
+																	</xs:sequence>
+																</xs:complexType>
+															</xs:element>
+														</xs:sequence>
+													</xs:extension>
+												</xs:complexContent>
+											</xs:complexType>
+										</xs:element>
+										<xs:element name="indexes" minOccurs="0" maxOccurs="unbounded">
+											<xs:annotation>
+												<xs:documentation>Индексы</xs:documentation>
+											</xs:annotation>
+											<xs:complexType>
+												<xs:sequence>
+													<xs:element name="regNum" minOccurs="1">
+														<xs:annotation>
+															<xs:documentation>Уникальный номер реестровой записи</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="45"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="contentIndex" minOccurs="0" maxOccurs="3">
+														<xs:annotation>
+															<xs:documentation>Наименование показателя, характеризующего содержание услуги(работы)</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+													<xs:element name="conditionIndex" minOccurs="0" maxOccurs="2">
+														<xs:annotation>
+															<xs:documentation>Наименование показателя,  характеризующего условия (формы) услуги (выполнения работы)</xs:documentation>
+														</xs:annotation>
+														<xs:simpleType>
+															<xs:restriction base="xs:string">
+																<xs:minLength value="1"/>
+																<xs:maxLength value="2000"/>
+															</xs:restriction>
+														</xs:simpleType>
+													</xs:element>
+												</xs:sequence>
+											</xs:complexType>
+										</xs:element>
+									</xs:sequence>
+								</xs:extension>
+							</xs:complexContent>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="earlyTermination" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Основание для досрочного прекращения государственного (муниципального) задания</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="4000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="otherInfo" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Иная информация, необходимая для исполнения (контроля за исполнением) государственного (муниципального) задания</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="2000"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="reportRequirements" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Требования к отчетности об исполнении государственного (муниципального) задания</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="periodicityTerm" minOccurs="0">
+									<xs:annotation>
+										<xs:documentation>Периодичность предоставления отчетов о выполнении государственного(муниципального) задания</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="deliveryTerm" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Сроки предоставления отчетов об исполнении государственного (муниципального) задания</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="otherRequirement" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Иные требования к отчетности о выполнении государственного (муниципального) задания</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="otherIndicators" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Иные показатели, связанные с выполнением государственного (муниципального) задания</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="supervisionProcedure" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Порядок контроля за исполнением государственного (муниципального) задания</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="form">
+									<xs:annotation>
+										<xs:documentation>Форма контроля</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="4000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="rate">
+									<xs:annotation>
+										<xs:documentation>Периодичность</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="4000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="supervisor" type="refNsiOgsSoftType1">
+									<xs:annotation>
+										<xs:documentation>Орган исполнительной власти, осуществляющий контроль за оказанием услуги</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="reports" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Отчет(ы) о выполнении государственного (муниципального) задания</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element ref="reportGUID"/>
+								<xs:element name="periodInfo">
+									<xs:annotation>
+										<xs:documentation>Сведения об отчетном периоде, за который представлен отчет о выполнении государственного задания</xs:documentation>
+									</xs:annotation>
+									<xs:simpleType>
+										<xs:restriction base="xs:string">
+											<xs:minLength value="1"/>
+											<xs:maxLength value="2000"/>
+										</xs:restriction>
+									</xs:simpleType>
+								</xs:element>
+								<xs:element name="head">
+									<xs:annotation>
+										<xs:documentation>Руководитель (уполномоченное лицо)</xs:documentation>
+									</xs:annotation>
+									<xs:complexType>
+										<xs:sequence>
+											<xs:element name="name">
+												<xs:annotation>
+													<xs:documentation>ФИО</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:maxLength value="2000"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+											<xs:element name="position">
+												<xs:annotation>
+													<xs:documentation>Должность</xs:documentation>
+												</xs:annotation>
+												<xs:simpleType>
+													<xs:restriction base="xs:string">
+														<xs:maxLength value="200"/>
+													</xs:restriction>
+												</xs:simpleType>
+											</xs:element>
+										</xs:sequence>
+									</xs:complexType>
+								</xs:element>
+								<xs:element name="date" type="xs:date">
+									<xs:annotation>
+										<xs:documentation>Дата отчета</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+					<xs:element name="document" type="documentType" minOccurs="0" maxOccurs="unbounded">
+						<xs:annotation>
+							<xs:documentation>Документ</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="statementDate" type="xs:date" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Дата утверждения государственного задания</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="number" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Номер государственного задания</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="15"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="approverFirstName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Имя уполномоченного лица, утвердившего государственное задание</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="100"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="approverLastName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Фамилия уполномоченного лица, утвердившего государственное задание</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="100"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="approverMiddleName" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Отчество уполномоченного лица, утвердившего государственное задание</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="100"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+					<xs:element name="approverPosition" minOccurs="0">
+						<xs:annotation>
+							<xs:documentation>Должность уполномоченного лица, утвердившего государственное задание</xs:documentation>
+						</xs:annotation>
+						<xs:simpleType>
+							<xs:restriction base="xs:string">
+								<xs:minLength value="1"/>
+								<xs:maxLength value="500"/>
+							</xs:restriction>
+						</xs:simpleType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="orgListType">
+		<xs:annotation>
+			<xs:documentation>Перечень организаций, в которых открыты счета</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="orgName">
+				<xs:annotation>
+					<xs:documentation>Наименование организации, в которой обслуживается лицевой счет</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="200"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="orgAddress">
+				<xs:annotation>
+					<xs:documentation>Адрес организации, в которой обслуживается лицевой счет</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="versionedPacketType" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Версионность пакета данных </xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="header" type="headerType">
+				<xs:annotation>
+					<xs:documentation>Заголовок информационного пакета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+		<xs:attribute name="version" type="versionType" use="required" fixed="1.7.8"/>
+	</xs:complexType>
+	<xs:complexType name="versionedPacketType_ogs" abstract="true">
+		<xs:annotation>
+			<xs:documentation>Версионность пакета данных ПГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="header" type="headerType">
+				<xs:annotation>
+					<xs:documentation>Заголовок информационного пакета</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+		<xs:attribute name="version" type="versionType" use="optional" fixed="1.7.8"/>
+	</xs:complexType>
+	<xs:complexType name="violationType">
+		<xs:annotation>
+			<xs:documentation>Нарушение</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="code">
+				<xs:annotation>
+					<xs:documentation>Код ошибки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="10"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="level" type="violationLevelType">
+				<xs:annotation>
+					<xs:documentation>Тип
+
+						Допустимые значения:
+						 error – ошибка;
+						 warning – предупреждение.</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Название</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="200"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="description" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Описание</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:maxLength value="2000"/>
+						<xs:minLength value="1"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="founderLinkTypeItem">
+		<xs:annotation>
+			<xs:documentation>Организация включенная в сеть учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="fullName">
+				<xs:annotation>
+					<xs:documentation>Полное наименование организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="orgType" type="ogsOrgTypeType">
+				<xs:annotation>
+					<xs:documentation>
+						Тип организации
+						Допустимые значения:
+						 01 - федеральный орган государственной власти, федеральный государственный орган, орган государственной власти субъекта Российской Федерации, государственный орган субъекта Российской Федерации, орган местного самоуправления, в том числе его территориальные органы;
+						 02 - орган управления государственным внебюджетным фондом;
+						 03 - бюджетное учреждение;
+						 04 - организация с долей государственного участия;
+						 05 - унитарное предприятие;
+						 06 - субъект естественных монополий;
+						 07 - иная организация (Используется для учета негосударственных организаций);
+						 08 -  казенное учреждение;
+						 09 - государственная корпорация, государственная компания;
+						 10 - автономное учреждение;
+						 11 - организация, осуществляющая регулируемые виды деятельности;
+						 12 - хозяйственное общество, в уставном капитале которого доля участия Российской Федерации, субъекта Российской Федерации, муниципального образования в совокупности превышает 50 процентов;
+						 13 - дочернее хозяйственное общество;
+						 14 - специализированная организация;
+						 15 - оператор официального сайта;
+						 16 - оператор электронной площадки.
+						 17 - орган аудита.
+						 18 - банк.
+						 19 - орган контроля.
+						 20 - иное юридическое лицо.
+					</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="inn" type="innUlType">
+				<xs:annotation>
+					<xs:documentation>ИНН</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="kpp" type="kppType">
+				<xs:annotation>
+					<xs:documentation>КПП</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="ogrn" type="ogrnCodeType">
+				<xs:annotation>
+					<xs:documentation>ОГРН</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="ppo" type="refNsiPpoType">
+				<xs:annotation>
+					<xs:documentation>Публично-правовое образование</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="maxPrivilegesCount" type="xs:int" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Максимальное количество привелегий</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="privItemsperiod" type="founderNetPrivilegePeriodType" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Привелегии организаций включенных в сеть за период</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="privItems" type="founderNetPrivilegeType" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Привелегии организаций включенных в сеть</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="authoritiesConsReg" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Полномочия учредителя по данным Сводного реестра</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="authName">
+							<xs:annotation>
+								<xs:documentation>Наименование полномочия</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:minLength value="1"/>
+									<xs:maxLength value="1000"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+						<xs:element name="authCode">
+							<xs:annotation>
+								<xs:documentation>Код полномочия по справочнику "Полномочие организации"</xs:documentation>
+							</xs:annotation>
+							<xs:simpleType>
+								<xs:restriction base="xs:string">
+									<xs:pattern value="\d{3}"/>
+								</xs:restriction>
+							</xs:simpleType>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="founderNetType">
+		<xs:annotation>
+			<xs:documentation>Подведомственная сеть учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="placerOgrn" type="ogrnCodeType">
+						<xs:annotation>
+							<xs:documentation>ОГРН</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="links">
+						<xs:annotation>
+							<xs:documentation>Организации включенные в сеть</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="linkItems" type="founderLinkTypeItem" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Организация включенная в сеть</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="founderNetPrivilegePeriodType">
+		<xs:annotation>
+			<xs:documentation>Привелегии организаций в подведомственной сети за период</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="privileage" type="founderNetPrivilegePeriodTypeType" maxOccurs="unbounded"/>
+			<xs:element name="period" maxOccurs="unbounded">
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{4}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="checkInfoReportType">
+		<xs:annotation>
+			<xs:documentation>Проверка сведений учреждений</xs:documentation>
+		</xs:annotation>
+		<xs:complexContent>
+			<xs:extension base="institutionPositionType">
+				<xs:sequence>
+					<xs:element name="placerOgrn" type="ogrnCodeType">
+						<xs:annotation>
+							<xs:documentation>ОГРН</xs:documentation>
+						</xs:annotation>
+					</xs:element>
+					<xs:element name="checkedOrgs">
+						<xs:annotation>
+							<xs:documentation>Проверенные организации</xs:documentation>
+						</xs:annotation>
+						<xs:complexType>
+							<xs:sequence>
+								<xs:element name="checkedOrg" type="checkedOrgItem" minOccurs="0" maxOccurs="unbounded">
+									<xs:annotation>
+										<xs:documentation>Результат проверки сведений об организации</xs:documentation>
+									</xs:annotation>
+								</xs:element>
+							</xs:sequence>
+						</xs:complexType>
+					</xs:element>
+				</xs:sequence>
+			</xs:extension>
+		</xs:complexContent>
+	</xs:complexType>
+	<xs:complexType name="checkedOrgItem">
+		<xs:annotation>
+			<xs:documentation>Результат проверки сведений об организации</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="fullName">
+				<xs:annotation>
+					<xs:documentation>Полное наименование организации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="inn" type="innUlType">
+				<xs:annotation>
+					<xs:documentation>ИНН</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="kpp" type="kppType">
+				<xs:annotation>
+					<xs:documentation>КПП</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="ogrn" type="ogrnCodeType">
+				<xs:annotation>
+					<xs:documentation>ОГРН</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="period" type="yearType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Период формирования данных</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="infoByPeriodsCheckResults">
+				<xs:annotation>
+					<xs:documentation>Результат проверки по периодам</xs:documentation>
+				</xs:annotation>
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="infoByPeriodsCheckResult" type="infoByPeriodsCheckResultType" minOccurs="0" maxOccurs="unbounded">
+							<xs:annotation>
+								<xs:documentation>Результат проверки по периодам</xs:documentation>
+							</xs:annotation>
+						</xs:element>
+					</xs:sequence>
+				</xs:complexType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="infoByPeriodsCheckResultType">
+		<xs:annotation>
+			<xs:documentation>Результат проверки по периодам</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="approvedInfo" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Подтвержденные сведения</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="rejectedInfo" minOccurs="0" maxOccurs="unbounded">
+				<xs:annotation>
+					<xs:documentation>Отклоненные сведения</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="200"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:group name="otherRegNum">
+		<xs:annotation>
+			<xs:documentation>Реестровые номера в других справочниках</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="regNumSpz" type="spzCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер в СПЗ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="regNumPubp" type="ubpCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер в ПУБП</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="regNumRubp" type="ubpCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер в РУБП</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="regNumNubp" type="ubpCodeType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Реестровый номер в НУБП</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:group>
+	<xs:complexType name="PPO_OGSType">
+		<xs:annotation>
+			<xs:documentation>Даннные ППО ПГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование публично-правового образования</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="2000"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:simpleType name="activityTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип вида деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="C"/>
+			<xs:enumeration value="O"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="branchTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип филиала</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+			<xs:enumeration value="03"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="budgetCodeType">
+		<xs:annotation>
+			<xs:documentation>Код бюджета</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{8}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="budgetLevelType">
+		<xs:annotation>
+			<xs:documentation>Код уровня бюджета</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+			<xs:enumeration value="03"/>
+			<xs:enumeration value="04"/>
+			<xs:enumeration value="05"/>
+			<xs:enumeration value="06"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="budgetTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип бюджета</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="businessStatusType">
+		<xs:annotation>
+			<xs:documentation>Статус записи</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="801"/>
+			<xs:enumeration value="866"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="changeRequestOrgTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип организации</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="03"/>
+			<xs:enumeration value="08"/>
+			<xs:enumeration value="10"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="changeRequestSpecialType">
+		<xs:annotation>
+			<xs:documentation>Специальные указания заявки на изменение</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+			<xs:enumeration value="03"/>
+			<xs:enumeration value="04"/>
+			<xs:enumeration value="05"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="customerCategoryCodeType">
+		<xs:annotation>
+			<xs:documentation>Код категории потребителей</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:length value="12"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="decimalType">
+		<xs:annotation>
+			<xs:documentation>Десятичное число</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:decimal">
+			<xs:totalDigits value="20"/>
+			<xs:fractionDigits value="2"/>
+			<xs:maxExclusive value="1000000000000000000"/>
+			<xs:minExclusive value="-1000000000000000000"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="differenceDetailType">
+		<xs:annotation>
+			<xs:documentation>Реквизит расхождения</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+			<xs:enumeration value="03"/>
+			<xs:enumeration value="04"/>
+			<xs:enumeration value="05"/>
+			<xs:enumeration value="07"/>
+			<xs:enumeration value="08"/>
+			<xs:enumeration value="09"/>
+			<xs:enumeration value="10"/>
+			<xs:enumeration value="11"/>
+			<xs:enumeration value="12"/>
+			<xs:enumeration value="13"/>
+			<xs:enumeration value="14"/>
+			<xs:enumeration value="15"/>
+			<xs:enumeration value="16"/>
+			<xs:enumeration value="17"/>
+			<xs:enumeration value="18"/>
+			<xs:enumeration value="19"/>
+			<xs:enumeration value="20"/>
+			<xs:enumeration value="21"/>
+			<xs:enumeration value="22"/>
+			<xs:enumeration value="23"/>
+			<xs:enumeration value="24"/>
+			<xs:enumeration value="25"/>
+			<xs:enumeration value="26"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="differenceTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип различия между исходными данными и ЕГРЮЛ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+			<xs:enumeration value="03"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="eMailType">
+		<xs:annotation>
+			<xs:documentation>Адрес электронной почты</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:maxLength value="200"/>
+			<xs:minLength value="1"/>
+			<xs:pattern value=".+@.+\..+"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="expenseWayType">
+		<xs:annotation>
+			<xs:documentation>Направление расходов</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{11}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="fieldCodeType">
+		<xs:annotation>
+			<xs:documentation>Код сферы деятельности</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:length value="4"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="gmuRegistrationTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип регистрации учреждения на ГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="S"/>
+			<xs:enumeration value="F"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="guidType">
+		<xs:annotation>
+			<xs:documentation>Глобальный идентификатор</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:length value="36"/>
+			<xs:whiteSpace value="collapse"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="innFlType">
+		<xs:annotation>
+			<xs:documentation>ИНН (физическое лицо)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{12}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="innUlType">
+		<xs:annotation>
+			<xs:documentation>ИНН (юридическое лицо)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{10}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="institutionInfoDocumentTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип документа общей информации</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="F"/>
+			<xs:enumeration value="E"/>
+			<xs:enumeration value="C"/>
+			<xs:enumeration value="S"/>
+			<xs:enumeration value="L"/>
+			<xs:enumeration value="I"/>
+			<xs:enumeration value="O"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="institutionTypeCodeType">
+		<xs:annotation>
+			<xs:documentation>Код вида учреждения</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:length value="7"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="kbkCodeType">
+		<xs:annotation>
+			<xs:documentation>Код КБК</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string"/>
+	</xs:simpleType>
+	<xs:simpleType name="kladrCodeType">
+		<xs:annotation>
+			<xs:documentation>Код по КЛАДР (субъект РФ, район, город, населенный пункт)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{11}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="kladrLevelType">
+		<xs:annotation>
+			<xs:documentation>Уровень КЛАДР</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="R"/>
+			<xs:enumeration value="D"/>
+			<xs:enumeration value="A"/>
+			<xs:enumeration value="C"/>
+			<xs:enumeration value="S"/>
+			<xs:enumeration value="L"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="kladrMixCodeType">
+		<xs:annotation>
+			<xs:documentation>Смешанный код по КЛАДР</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{11}|\d{15}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="kladrStreetCodeType">
+		<xs:annotation>
+			<xs:documentation>Код по КЛАДР (улица)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{15}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="kosguCodeType">
+		<xs:annotation>
+			<xs:documentation>Код КОСГУ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{3}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="kppType">
+		<xs:annotation>
+			<xs:documentation>КПП</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{9}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="nonNegativeDecimalType">
+		<xs:annotation>
+			<xs:documentation>Неотрицательное десятичное число</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="decimalType">
+			<xs:minInclusive value="0"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ogrnCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОГРН</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{13}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ogsBusinessStatusType">
+		<xs:annotation>
+			<xs:documentation>Статус записи ПГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="800"/>
+			<xs:enumeration value="801"/>
+			<xs:enumeration value="865"/>
+			<xs:enumeration value="888"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ogsCodeType">
+		<xs:annotation>
+			<xs:documentation>Реестровый номер организации в перечне ГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{13}|\d{3}([A-Za-zА-Яа-я0-9]){5}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ogsOrgTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип организации</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+			<xs:enumeration value="03"/>
+			<xs:enumeration value="04"/>
+			<xs:enumeration value="05"/>
+			<xs:enumeration value="06"/>
+			<xs:enumeration value="07"/>
+			<xs:enumeration value="08"/>
+			<xs:enumeration value="09"/>
+			<xs:enumeration value="10"/>
+			<xs:enumeration value="11"/>
+			<xs:enumeration value="12"/>
+			<xs:enumeration value="13"/>
+			<xs:enumeration value="14"/>
+			<xs:enumeration value="15"/>
+			<xs:enumeration value="16"/>
+			<xs:enumeration value="17"/>
+			<xs:enumeration value="18"/>
+			<xs:enumeration value="19"/>
+			<xs:enumeration value="20"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ogsSpecialType">
+		<xs:annotation>
+			<xs:documentation>Специальные указания перечня ГМУ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="04"/>
+			<xs:enumeration value="05"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okatoCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКАТО</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{11}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okeiCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКЕИ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{3}|\d{4}|\d{7}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okerCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКЭР</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{2}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okfsCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКФС</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{2}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okoguCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКОГУ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{7}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okopfMixCodeType">
+		<xs:annotation>
+			<xs:documentation>Смешанный код ОКОПФ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{2}|\d{5}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okopfNewCodeType">
+		<xs:annotation>
+			<xs:documentation>Новый код ОКОПФ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{5}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okpoCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКПО</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{10}|\d{8}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="oktmoCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКТМО</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{8}|\d{11}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="okvedCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ОКВЭД</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{2}((\.\d{1,2})|(\.\d{2}\.\d{1,2}))?"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="paymentDetailsTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип информации о платежных реквизитах</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="01"/>
+			<xs:enumeration value="02"/>
+			<xs:enumeration value="03"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="percentType">
+		<xs:annotation>
+			<xs:documentation>Процент</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="nonNegativeDecimalType"/>
+	</xs:simpleType>
+	<xs:simpleType name="phoneSoftType">
+		<xs:annotation>
+			<xs:documentation>Телефон (мягкое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:minLength value="1"/>
+			<xs:maxLength value="204"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="phoneStrongType">
+		<xs:annotation>
+			<xs:documentation>Телефон (строгое ограничение)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{1,10}-\d{1,10}-\d{1,170}(-\d{1,10})?"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ppoCodeType">
+		<xs:annotation>
+			<xs:documentation>Код ППО</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{11}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="regNumConsRegType">
+		<xs:annotation>
+			<xs:documentation>Реестровый номер в ПГМУ/Сводном реестре</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{13}|\d{3}([A-Za-zА-Яа-я0-9]){5}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="regNumConsRegOgsType">
+		<xs:annotation>
+			<xs:documentation>Реестровый номер в Сводном реестре</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{3}([A-Za-zА-Яа-я0-9]){5}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="regPublishedOrgType">
+		<xs:annotation>
+			<xs:documentation>Тип организации в реестре опубликованных сведений</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="03"/>
+			<xs:enumeration value="10"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="resultType">
+		<xs:annotation>
+			<xs:documentation>Результат обработки данных</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="success"/>
+			<xs:enumeration value="failure"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="sectionType">
+		<xs:annotation>
+			<xs:documentation>Код главы ГРБС (Первые три символа КБК)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{3}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="serviceCodeType">
+		<xs:annotation>
+			<xs:documentation>Код услуги (работы)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:minLength value="1"/>
+			<xs:maxLength value="50"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="serviceTypeType">
+		<xs:annotation>
+			<xs:documentation>Тип услуги/работы</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="W"/>
+			<xs:enumeration value="S"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="signatureType">
+		<xs:annotation>
+			<xs:documentation>Тип ЭЦП</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="CAdES-BES"/>
+			<xs:enumeration value="CAdES-A"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="spzCodeType">
+		<xs:annotation>
+			<xs:documentation>Реестровый номер в СПЗ</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{11}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="tofkCodeType">
+		<xs:annotation>
+			<xs:documentation>Код органа ФК</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{4}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="ubpCodeType">
+		<xs:annotation>
+			<xs:documentation>Реестровый номер в УБП</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:length value="5"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="urlType">
+		<xs:annotation>
+			<xs:documentation>Гиперссылка</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:maxLength value="1024"/>
+			<xs:minLength value="1"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="versionType">
+		<xs:annotation>
+			<xs:documentation>Версия формата обмена</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d+(\.\d+)*"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="violationLevelType">
+		<xs:annotation>
+			<xs:documentation>Уровень нарушения</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="error"/>
+			<xs:enumeration value="warning"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="yearType">
+		<xs:annotation>
+			<xs:documentation>Год</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:integer">
+			<xs:pattern value="\d{4}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="zipType">
+		<xs:annotation>
+			<xs:documentation>Индекс</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:pattern value="\d{6}"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="periodicityType">
+		<xs:annotation>
+			<xs:documentation>Периодичность</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="quarter"/>
+			<xs:enumeration value="annual"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="founderNetPrivilegeType">
+		<xs:annotation>
+			<xs:documentation>Привелегии организаций в подведомственной сети</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="isCreation"/>
+			<xs:enumeration value="isAppointment"/>
+			<xs:enumeration value="isManageProperty"/>
+			<xs:enumeration value="isApproval"/>
+			<xs:enumeration value="isFinanceSupply"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:simpleType name="founderNetPrivilegePeriodTypeType">
+		<xs:annotation>
+			<xs:documentation>Привелегии за период (перечисляемый)</xs:documentation>
+		</xs:annotation>
+		<xs:restriction base="xs:string">
+			<xs:enumeration value="isApproval"/>
+			<xs:enumeration value="isFinanceSupply"/>
+		</xs:restriction>
+	</xs:simpleType>
+	<xs:element name="reportGUID" type="guidType">
+		<xs:annotation>
+			<xs:documentation>Уникальный идентификатор отчета</xs:documentation>
+		</xs:annotation>
+	</xs:element>
+	<xs:complexType name="planPaymentIndexItem">
+		<xs:annotation>
+			<xs:documentation>Показатель по поступлениям и выплатам плана ФХД</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="kbk" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код по бюджетной классификации</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="total" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>всего</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="financialProvision" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Субсидия на финансовое обеспечение выполнения государственного (муниципального) задания</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="financialInsurance" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>5.1 субсидии на финансовое обеспечение выполнения государственного задания из бюджета Федерального фонда обязательного медицинского страхования</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="item781" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Субсидии, предоставляемые в соответствии с абзацем вторым пункта 1 статьи 78.1 Бюджетного кодекса Российской Федерации</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="capitalInvestment" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Субсидии на осуществление капитальных вложений</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="healthInsurance" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Средства обязательного медицинского страхования</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="serviceTotal" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Поступления от оказания услуг (выполнения работ) на платной основе и от иной приносящей доход деятельности, всего</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="serviceGrant" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Поступления от оказания услуг (выполнения работ) на платной основе и от иной приносящей доход деятельности, из них гранты</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="expensePaymentIndexItem">
+		<xs:annotation>
+			<xs:documentation>Показатель выплат по расходам на закупку товаров, работ, услуг учреждения плана ФХД</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{4}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="year" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Год начала закупки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:integer">
+						<xs:totalDigits value="4"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="totalSum" type="expenseSum">
+				<xs:annotation>
+					<xs:documentation>Сумма выплат по расходам на закупку товаров, работ и услуг. Всего на закупки</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="fz44Sum" type="expenseSum">
+				<xs:annotation>
+					<xs:documentation>Сумма выплат по расходам на закупку товаров, работ и услуг в соответствии с Федеральным законом № 44-ФЗ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="fz223Sum" type="expenseSum">
+				<xs:annotation>
+					<xs:documentation>Сумма выплат по расходам на закупку товаров, работ и услуг в соответствии с Федеральным законом №223-ФЗ</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="expenseSum">
+		<xs:annotation>
+			<xs:documentation>Сумма выплат по расходам на закупку товаров, работ и услуг</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="nextYear" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>на очередной финансовый год</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="firstPlanYear" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>на первый год планового периода</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+			<xs:element name="secondPlanYear" type="decimalType">
+				<xs:annotation>
+					<xs:documentation>на второй год планового периода</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+	<xs:complexType name="indexSum">
+		<xs:annotation>
+			<xs:documentation>Показатель с суммой</xs:documentation>
+		</xs:annotation>
+		<xs:sequence>
+			<xs:element name="name">
+				<xs:annotation>
+					<xs:documentation>Наименование показателя</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:minLength value="1"/>
+						<xs:maxLength value="300"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="lineCode">
+				<xs:annotation>
+					<xs:documentation>Код строки</xs:documentation>
+				</xs:annotation>
+				<xs:simpleType>
+					<xs:restriction base="xs:string">
+						<xs:pattern value="\d{3}"/>
+					</xs:restriction>
+				</xs:simpleType>
+			</xs:element>
+			<xs:element name="total" type="decimalType" minOccurs="0">
+				<xs:annotation>
+					<xs:documentation>Сумма</xs:documentation>
+				</xs:annotation>
+			</xs:element>
+		</xs:sequence>
+	</xs:complexType>
+</xs:schema>
diff --git a/formats/1.7.8.15/ТФФ ГМУ 1.7.8.15.pdf b/formats/1.7.8.15/ТФФ ГМУ 1.7.8.15.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..33e0172f81369c6d6eb8fe63b20625fe5b406f8f
Binary files /dev/null and b/formats/1.7.8.15/ТФФ ГМУ 1.7.8.15.pdf differ
diff --git a/names.py b/names.py
index 10fd9271fc08ca1b36ebbb816718f5ee567eb691..ae01e293007d9faae2a559014fcbfbc2b47b4002 100644
--- a/names.py
+++ b/names.py
@@ -11,24 +11,24 @@     mal = 0
     fem = 0
     for r in reader:
         s = r[2].decode('utf-8').lower()
-        if s[-3:] in [u'вна', u'чна']:
+        if s[-3:] in ['вна', 'чна']:
             fem += 1
-        elif s[-3:] in [u'вич', u'ьич']:
+        elif s[-3:] in ['вич', 'ьич']:
             mal += 1
-        elif s[-4:] == u'кызы':
+        elif s[-4:] == 'кызы':
             fem += 1
-        elif s[-4:] == u'оглы':
+        elif s[-4:] == 'оглы':
             mal += 1
         else:
 #            if len(s) > 0:
-            print r[0], r[1]
+            print(r[0], r[1])
         n += 1
         if n % 1000 == 0:
-            print n
-    print 'Total', n
-    print '- females', fem, fem * 100.0 / n
-    print '- males', mal, mal * 100.0 / n
-    print '- unknown', n - fem - mal
+            print(n)
+    print('Total', n)
+    print('- females', fem, fem * 100.0 / n)
+    print('- males', mal, mal * 100.0 / n)
+    print('- unknown', n - fem - mal)