Импорт моделей данных¶
Импорт моделей данных различных объектов системы позволяет загружать файлы, описывающие структуру этих объектов.
Импорт может производиться 3 способами:
Через импорт объектов системы;
Автоматически при отработке краулера (при запуске сканирования по расписанию);
Вручную при отработке краулера (при запуске сканирования вручную).
Условия импорта¶
Важные условия импорта, которые необходимо соблюдать при импорте объектов (типов активов, типов связей и связей):
Наследованный атрибут должен быть представлен в родительском объекте.
Дочерний актив должен представлять атрибуты родительского.
Главный отображаемый атрибут нельзя изменять.
Атрибут, который является главным отображаемым, должен также быть и отображаемым.
Объект обновляется при импорте, если версия = 1. Если версия объекта = 0 или не указана, то обновление не производится.
Модель физического слоя в текущей реализации доступна для обновления через стандартный импорт. В следующих релизах будет введен запрет на удаление некоторых объектов и атрибутов физического слоя, таким образом пользователь сможет только расширять объекты физического слоя.
Ограничения при импорте¶
Недоступны для обновления с помощью импорта: имя актива, имя типа связи, а также левый и правый концы связи.
Нельзя удалить атрибут, содержащий данные.
Нельзя изменить тип атрибута (например, тип атрибута Строковый изменить на тип Численный).
Нельзя сделать атрибут уникальным:
Фактически это можно сделать, но если существуют дублирующиеся данные, то такие данные будут неконсистентны, а обновить такую запись можно будет, только если изменить значение соответствующего атрибута на уникальное.
Таж см. XSD схему модели в файле: dg-model-schema-2.5.xsd.
Скачать dg-model-schema-2.5.xsd
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="data-governance-model">
<xs:complexType>
<xs:all>
<xs:element name="assetTypes" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="assetType" type="assetType" maxOccurs="unbounded" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="relationTypes" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="relationType" type="relationType" maxOccurs="unbounded" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="relations" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="relation" type="relation" maxOccurs="unbounded" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:all>
<xs:attribute name="description" type="xs:string"/>
<xs:attribute name="displayName" type="xs:string"/>
<xs:attribute name="name" type="xs:string"/>
</xs:complexType>
</xs:element>
<xs:complexType name="assetType">
<xs:sequence>
<xs:element name="simpleAttribute" type="simpleAttribute" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="arrayAttribute" type="arrayAttribute" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="complexAttribute" type="complexAttribute" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="inheritedSimpleAttributes" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="inheritedArrayAttributes" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="inheritedComplexAttributes" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="tags" type="tag" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="customProperties" type="customProperty" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="description" type="xs:string"/>
<xs:attribute name="displayName" type="xs:string"/>
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="parentAssetType" type="xs:string"/>
<xs:attribute name="icon" type="xs:string"/>
<xs:attribute name="color" type="xs:string"/>
</xs:complexType>
<xs:complexType name="arrayAttribute">
<xs:complexContent>
<xs:extension base="abstractSearchableAttribute">
<xs:sequence>
<xs:element name="dictionaryDataType" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="defaultValue" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="customProperties" type="customProperty" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="lookupEntitySearchAttributes" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="lookupEntityDisplayAttributes" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="base" type="xs:boolean"/>
<xs:attribute name="arrayValueType" type="arrayValueType"/>
<xs:attribute name="exchangeSeparator" type="xs:string"/>
<xs:attribute name="searchCaseInsensitive" type="xs:boolean"/>
<xs:attribute name="searchMorphologically" type="xs:boolean"/>
<xs:attribute name="lookupEntityType" type="xs:string"/>
<xs:attribute name="lookupEntityCodeAttributeType" type="simpleDataType"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="complexAttribute">
<xs:complexContent>
<xs:extension base="abstractAttribute">
<xs:sequence>
<xs:element name="customProperties" type="customProperty" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="base" type="xs:boolean"/>
<xs:attribute name="maxCount" type="xs:int"/>
<xs:attribute name="minCount" type="xs:int"/>
<xs:attribute name="nestedEntityName" type="xs:string"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="simpleAttribute">
<xs:complexContent>
<xs:extension base="abstractSearchableAttribute">
<xs:sequence>
<xs:element name="measureSettings" type="measurementSettings" minOccurs="0" maxOccurs="1"/>
<xs:element name="dictionaryDataType" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="customProperties" type="customProperty" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="lookupEntitySearchAttributes" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="lookupEntityDisplayAttributes" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="base" type="xs:boolean"/>
<xs:attribute name="linkDataType" type="xs:string"/>
<xs:attribute name="enumDataType" type="xs:string"/>
<xs:attribute name="simpleDataType" type="simpleDataType"/>
<xs:attribute name="searchCaseInsensitive" type="xs:boolean"/>
<xs:attribute name="searchMorphologically" type="xs:boolean"/>
<xs:attribute name="unique" type="xs:boolean"/>
<xs:attribute name="defaultValue" type="xs:string"/>
<xs:attribute name="lookupEntityType" type="xs:string"/>
<xs:attribute name="lookupEntityCodeAttributeType" type="simpleDataType"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="tag">
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="value" type="xs:string"/>
</xs:complexType>
<xs:complexType name="customProperty">
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="value" type="xs:string"/>
</xs:complexType>
<xs:complexType name="abstractSearchableAttribute" abstract="true">
<xs:complexContent>
<xs:extension base="abstractAttribute">
<xs:attribute name="displayable" type="xs:boolean"/>
<xs:attribute name="mainDisplayable" type="xs:boolean"/>
<xs:attribute name="searchable" type="xs:boolean"/>
<xs:attribute name="useAttributeNameForDisplay" type="xs:boolean"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="abstractAttribute" abstract="true">
<xs:attribute name="description" type="xs:string"/>
<xs:attribute name="displayName" type="xs:string"/>
<xs:attribute name="hidden" type="xs:boolean"/>
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="nullable" type="xs:boolean"/>
<xs:attribute name="order" type="xs:int"/>
<xs:attribute name="readOnly" type="xs:boolean"/>
</xs:complexType>
<xs:complexType name="nestedEntity">
<xs:sequence>
<xs:element name="simpleAttribute" type="simpleAttribute" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="arrayAttribute" type="arrayAttribute" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="customProperties" type="customProperty" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="description" type="xs:string"/>
<xs:attribute name="displayName" type="xs:string"/>
<xs:attribute name="name" type="xs:string"/>
</xs:complexType>
<xs:complexType name="relationType">
<xs:sequence>
<xs:element name="customProperties" type="customProperty" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="color" type="xs:string"/>
<xs:attribute name="direction" type="relationDirection"/>
<xs:attribute name="inner" type="xs:boolean"/>
<xs:attribute name="inwardDisplayName" type="xs:string"/>
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="outwardDisplayName" type="xs:string"/>
</xs:complexType>
<xs:complexType name="relation">
<xs:sequence>
<xs:element name="customProperties" type="customProperty" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="fromAssetType" type="xs:string"/>
<xs:attribute name="fromCardinality" type="xs:int"/>
<xs:attribute name="relationType" type="xs:string"/>
<xs:attribute name="required" type="xs:boolean"/>
<xs:attribute name="toAssetType" type="xs:string"/>
<xs:attribute name="toCardinality" type="xs:int"/>
</xs:complexType>
<xs:complexType name="measurementSettings">
<xs:attribute name="categoryId" type="xs:string"/>
<xs:attribute name="defaultUnitId" type="xs:string"/>
</xs:complexType>
<xs:simpleType name="arrayValueType">
<xs:restriction base="xs:string">
<xs:enumeration value="Date"/>
<xs:enumeration value="Time"/>
<xs:enumeration value="Timestamp"/>
<xs:enumeration value="String"/>
<xs:enumeration value="Integer"/>
<xs:enumeration value="Number"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="simpleDataType">
<xs:restriction base="xs:string">
<xs:enumeration value="Date"/>
<xs:enumeration value="Time"/>
<xs:enumeration value="Timestamp"/>
<xs:enumeration value="String"/>
<xs:enumeration value="Integer"/>
<xs:enumeration value="Number"/>
<xs:enumeration value="Boolean"/>
<xs:enumeration value="Blob"/>
<xs:enumeration value="Clob"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="relationDirection">
<xs:restriction base="xs:string">
<xs:enumeration value="ONE_DIRECTIONAL"/>
<xs:enumeration value="BIDIRECTIONAL"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
|