Introduction

                                                        

 

Ansicht mit Navigationswerkzeuge           

IDMP 3.1.0 XML schema

Documentation

 

Last revised 22/11/2021

 

Documented XML schema:

IDMP_3_1_0.xsd

 

 

Contakt DCC e.V.


Dr.-Ing. Olaf Plümer
E-Mail 
pluemer@dcc-moebel.org
Telephon 0 52 21/12 65-37

 


Anika Degenhard
E-Mail 
degenhard@dcc-moebel.org
Telephon 0 52 21/12 65-38

 

 

 

Basic structure of the IDM schema

IDMP 3.1.0 XML schema documentation

 

Introduction > The basic structure of the IDM schema

 

The basic structure of the IDMP schema

 

The main element T_NEW_CATALOG defines that a new and complete catalogue data pool is made available.

 

The IDM schema is subdivided in data ranges that are specified in the subsequent child-elements (see figure 1) in T_NEW_CATALOG.

 

Ein Bild, das Text enthält.

Automatisch generierte Beschreibung

Figure 1 - child elements in T_NEW_CATALOG

 

 

The data ranges are not used in isolation from each other. In some data ranges, data is initially created and used from other data ranges via referencing.

 

 

 

Description of the data ranges

 

CATALOG

 

CATALOG is used to store administrative information concerning the data pool. E.g. the version of the data format, release date or the unique identification of the data pool.

 

 

 

SUPPLIER

 

SUPPLIER is used to store administrative information concerning the manufacturer. Example: specification of contact data, EDI communication parameters or the manufacturer's country of origin.

 

 

GLOBAL_DEFINITION

 

The GLOBAL_DEFINITION data range is a kind of data pool for information used in the other data ranges. Example: storage of media, e.g. photos and installation and/or various notes instructions.

 

 

SERIES

 

SERIES is used to store the data for the description of the items. Items are combined into product groups, such as armchairs or intermediate elements.

 

 

PART_LISTS

 

PARTS_LISTS is used to assemble dynamic piece lists, with the sub-positions assigned to rules (DECISIONS) that determine depending on the version in which quantity the respective position exists in the piece list.

 

 

FEATURE_DEFINITION

 

The version information is specified in FEATURE_DEFINITION. Example: Data for version families (FEATURE_CLASS), version types (FEATURE), the associated versions (OPTIONS) or rules (DECISIONS) are specified.

 

 

PRICE_DEFINITION

 

The price information is specified in PRICE_DEFINITION. Example: Data for price characteristics groups (PRICE_FEATURE_GROUP),, VAT (VALUE_ADDED_TAXES), product categories (MERCHANDISE GROUP) or price types (PRICE_TYPE) are specified.

 

 

 

 

 

 

 

 

 

 

 

 

 

Elements of the catalogue structure

IDMP 3.1.0 XML schema documentation

 

Introduction > Elements of the catalogue structure

 

Creating elements of the catalogue structure

 

Creating series information

 

Series are defined in the following element:

 

 T_NEW_CATALOG/SERIES/SERIE

 

Ein Bild, das Text enthält.

Automatisch generierte Beschreibung

All child elements are used to describe the properties of the series.Versions are assigned to series via assessment procedures (RESTRICTION_REF).

 

Creating versions

 

Example: creating versions

 

1. Definition of the version properties/version variations

 

The version properties are defined in the following element:

 

FEATURE_DEFINITION/OPTION_DEFINITION

<OPTION_DEFINITION>

</OPTION_DEFINITION>

 

This element is used to define the properties of colours, materials, shape versions and dimensions.

 

 

2. Creating the versions

 

The versions are created in the following element:

 

FEATURE_DEFINITION/FEATURES/FEATURE

<FEATURE FEATURE_NO="1">

            <OPTIONS>

                         <OPTION OPTION_KEY="L" 

                         </OPTION>

                         <OPTION OPTION_KEY="S" 

                                                            </OPTION>

             </OPTIONS>

</FEATURE>

 

Version types are defined via version type numbers, e.g. 1. The version is unequivocally identified by the combination of FEATURE_NO in FEATURE_DEFINITION/FEATURES/FEATURE  and OPTION_KEY in FEATURE_DEFINITION/FEATURES/FEATURE/OPTIONS/OPTION.

 

Creating item information

 

Item information is specified in the following element:

 

T_NEW_CATALOG/SERIES/SERIE/PRODUCT_GROUPS/PRODUCT_GROUP/ITEMS/ITEM

 

The element ITEM has a multitude of elements used to describe the properties of items. An item is identified via the attribute TYPE_NO.

Please note that depending on the series, an item may have different properties. Consequently, an item and its properties can only be unequivocally identified in combination with the series.

 

Series-specific item information

 

Depending on the series, items may have different properties. Items are automatically assigned to a series because the element ITEM is a child element of the SERIE element.

 

Creating version information

 

Version information is created in the IDM schema as described in the following:

 

- Creation of variations for the versions

- Assignment of variation and version type

 

Creating variations

 

The variations for the versions are defined as a data pool in the element T_NEW_CATALOG/FEATURE_DEFINITION/OPTION_DEFINITION. 

 

Figure 2 - The element OPTION_DEFINITION

 

The OPTION_DEFINITION element contains elements in which the respective variations are specified:

 

MATERIAL

This element is used to define the properties of materials using colours and textures. These elements are referenced from variation version types.

OPTION_MEASURE

This element is used to specify the values of versions that are expressed in a dimension (e.g. sitting height (variation type 35)).

 

 

Example: variations for colours

    

<OPTION_DEFINITION>

 <MATERIAL>

             <COLOR COLOR_NO="1">

                         <RGB_RED>255</RGB_RED>

                         <RGB_GREEN>0</RGB_GREEN>

                         <RGB_BLUE>0</RGB_BLUE>

             </COLOR>

             <COLOR COLOR_NO="2">

                         <RGB_RED>133</RGB_RED>

                         <RGB_GREEN>273</RGB_GREEN>

                         <RGB_BLUE>0</RGB_BLUE>

             </COLOR>

             <COLOR COLOR_NO="3">

                         <RGB_RED>0</RGB_RED>

                         <RGB_GREEN>89</RGB_GREEN>

                         <RGB_BLUE>89</RGB_BLUE>

             </COLOR>

 </MATERIAL>

</OPTION_DEFINITION>

 

The above elements define three colours that are identified by numbers (COLOR_NO) 1-3.

 

Assignment of variation and version type

 

To use the colours defined in the example above, version types must be assigned, which results in versions.

 

The assignment of version types (FEATURE) and variations (OPTION) to versions is done in the element T_NEW_CATALOG/FEATURE_DEFINITION/FEATURES/FEATURE. A variation is formed and identified by the combination of FEATURE and OPTION. The following XML elements define 2 feed heights (version type 15).

 

Example: assembly of versions from version type and variations 

 

<FEATURE FEATURE_NO="15">

             <OPTIONS>

                         <OPTION OPTION_KEY="10">

                                    <OPTION_TEXT>

       </OPTION_TEXT>

                         </OPTION>

                         <OPTION OPTION_KEY="30">

                                    <OPTION_TEXT>

      </OPTION_TEXT>

                         </OPTION>

             </OPTIONS>

             <FEATURE_TEXT>

   </FEATURE_TEXT>

 <HEADER_POS_VARIATION_TYPE>K</HEADER_POS_VARIATION_TYPE>

</FEATURE>

 

The child elements of FEATURE describe the properties of the version type, the child elements of OPTION describe the properties of the version. Analogous to this principle, which applies for essentially all elements in the IDM schema, the OPTION_TEXT defines a text that designates the version. The element FEATURE_TEXT defines a text that designates the version type.

Soll in den Daten eine Variante referenziert werden, muss immer die Kombination aus FEATURE_NO und OPTION_KEY als Referenzierungschlüssel angegeben werden.Soll in den Daten eine Variante referenziert werden, muss immer die Kombination aus FEATURE_NO und OPTION_KEY als Referenzierungschlüssel angegeben werden.

 

If the data is supposed to reference a version, the combination of FEATURE_NO and OPTION_KEY must always be specified as a reference key.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Arranging the catalogue structure

IDMP 3.1.0 XML schema documentation

 

Introduction > Arranging the catalogue structure

 

Arranging the catalogue structure

 

Assigning series to versions

 

Ranges are assigned to all series in the following element:

 

SERIES/DECISIONS/DECISION_REF

 

The version is assigned to the series by referencing a rule that defines the version as a valid combination in the SERIES/SERIE/DECISIONS/DECISION_REF element.
 

Assigning items, series and versions

 

Item-series assignment

 

Items are automatically assigned to series because the ITEM element is a child element of the SERIES element:

 

SERIES/SERIE/PRODUCT_GROUPS/PRODUCT_GROUP/ITEMS/ITEM

 

Item-specific rules can be defined via SERIES/SERIE/PRODUCT_GROUPS/PRODUCT_GROUP/ITEMS/ITEM/DECISIONS/DECISIONS_REF.

 

 

Example: Rule for version assignment

 

Element: FEATURE_DEFINITION/DECISIONS/DECISION

 

<DECISIONS>
 
     <DECISIONVALIDATION_TYPE="0"DECISION_NO="1">
 
       <DECISION_NAME_TEXT>
         <LANGUAGEISO_LANGUAGE_ID="EN">
           <TEXT_LINESEQUENCE_NO="1">
             <TEXT>item numbers</TEXT>
           </TEXT_LINE>
         </LANGUAGE>
       </DECISION_NAME_TEXT>
       <OPTION_COMBINATIONSEQUENCE="1">
         <FEATURE_REFFEATURE_NO="1">
           <OPTION_REF_OPOPTION_KEY="1"OPERATOR="eq"/>
         </FEATURE_REF>
         <FEATURE_REFFEATURE_NO="201">
           <OPTION_REF_OPOPTION_KEY="0"OPERATOR="eq"/>
         </FEATURE_REF>
         <FEATURE_REFFEATURE_NO="202">
           <OPTION_REF_OPOPTION_KEY="00"OPERATOR="eq"/>
         </FEATURE_REF>
         <ACTIONS>
           <SET_FEATURE_FIXEDFEATURE_NO="204">
             <OPTION_REFOPTION_KEY="1000"/>
           </SET_FEATURE_FIXED>
         </ACTIONS>
       </OPTION_COMBINATION>
     </DECISION>
   </DECISIONS>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Catalogue structure

IDMP 3.1.0 XML schema documentation

 

Introduction > Catalogue structure

 

Catalogue and element structure

 

The catalogue structure in the IDM schema is mapped by the following element hierarchy:

 

 

 

Figure 1 - Element hierarchy in the IDM schema

 

The SERIE element is used to define the properties of a series.Product groups (PRODUCT_GROUPS) in which items (ITEMS) with similar version types are combined are defined within the series. The items are automatically assigned to a series because they are child elements of the SERIE element. The DECISIONS elements are used to cross-series assign versions to a series, product group or item via rules. It is also possible to assign actions (ACTIONS) to the rules defined in DECISIONS.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Referencing

IDMP 3.1.0 XML schema documentation

 

Introduction > Referencing

 

Referencing of elements

 

The IDM schema establishes relationships between elements and defines information at a central point which are used on multiple occasions in another position. The reuse of the information and the structure of element relationships takes place via referencing. The type of referencing used in the IDM schema is described in the following.

 

Definition of terms

 

The IDM schema uses the following terms for the referencing of elements:

 

Key element

An XML element referenced by other elements.

Ref element

An XML element referencing other elements.

 

 

Referencing procedure

 

The key element has attributes that allow for its unequivocal identification. The ref element has at least the key attributes of the key element. The reference in which the attribute values of the ref element are identical to those of the key element is established between the elements.

 

Example: Referencing the rule across multiple series, from the series, the product group and the item.

The following example shows how a rule (DECISION) is referenced from an item (ITEM). Only some of the XML elements are explained.

 

 

Key element

T_NEW_CATALOG/FEATURE_DEFINITION/DECISIONS

 

<DECISIONS>                                                                                                                        <DECISION DECISION_NO="1"/> … </DECISION>                                                                   <DECISION DECISION_NO="2"/> … </DECISION>                                                                   <DECISION DECISION_NO="3"/> … </DECISION>                                                                   . . .                                                                                                                          </DECISIONS>

 

Ref element

T_NEW_CATALOG/SERIES/SERIE/PRODUCT_GROUPS/PRODUCT_GROUP/ITEMS/ITEM

 

 

<ITEMS>                                                                                                                                            <ITEM TYPE_NO="1111">                                                                                                                  <DECISIONS>                                                                                                                                    <DECISION_REF DECISION_NO="1" > … </DECISION_REF>                                                        . . .                                                                                                 </ITEMS>

 

Example: referencing of a version

 

The following example shows how to reference a version from an assessment procedure.

 

Key element

T_NEW_CATALOG/FEATURE_DEFINITION/FEATURES/FEATURE/OPTIONS/OPTION

 

<FEATURES>                                                                                                                          <FEATURE FEATURE_NO="15"> <!-- Fußhöhe -->                                                                               <OPTIONS>                                                                                                                                      <OPTION OPTION_KEY="100"> … </OPTION>                                                                        <OPTION OPTION_KEY="120"> … </OPTION>                                                                            <OPTION OPTION_KEY="30"> … </OPTION>                                                                  </OPTIONS>                                                                                                          </FEATURE>                                                                                                              <FEATURE FEATURE_NO="17"> <!-- Fußform -->                                                                         <OPTIONS>                                                                                                                                      <OPTION OPTION_KEY="F00"> … </OPTION>                                                                        <OPTION OPTION_KEY="F3Z"> … </OPTION>                                                                        <OPTION OPTION_KEY="F70"> … </OPTION>                                                            </OPTIONS>                                                                                                              </FEATURE>                                                                                                       </FEATURES>

For version type 15, the XML elements define three versions (OPTION) with codes 100,120,30. For version type 17, three versions with codes F00, F3Z, F70 are defined. A version is identified via the combination of FEATURE_NO and OPTION_KEY.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Assessment procedure

IDMP 3.1.0 XML schema documentation

 

Introduction > Assessment procedure

 

Definition and assignment of rules

 

 

The earlier assessments (RESTRICTIONS) are now fully replaced by rules (DECISIONS).

The rules/assessment procedures are assigned to serious or items by references from the corresponding elements. In total, all assessment procedures defined in this element must be referenced from either series or items.

Rules that are referenced by items take priority over rules referenced by series.

 

DECISIONS have 3 types of rules (identified by TEST_ID).

Depending on the TEST_ID element, different rules can be specified.

If the value in TEST_ID is 1, the rule is a "preparation rule".

This allows for the definition of valid versions in OPTION_COMBINATION. These are used to determine the valid versions of a version type. These rules do not have an action part ("ACTIONS") and they define a quantity of version combinations that are either true or false. This is a table with the version types (FEATURES) as column headings; the cell contents of this table are values, lists, intervals, version groups that are linked by quantity operators.

The conditions are supplemented with operators. The special data type operator was defined for this purpose. It may contain the following values:

 

eq (equal)                                                                                                                                       ne (not equal)                                                                                                                                      in (is contained in a quantity)                                                                                                             nin (is not contained in a quantity)                                                                                             gt (greater)                                                                                                                                           lt (less)                                                                                                                                               ge (greater than or equal)                                                                                                         le (less than or equal)

The individual OPTION_COMBINATIONs must be considered as ELSE branches. This means that as soon as a condition line (OPTION_COMBINATIONS) receives a hit, the others will not be executed anymore.

If the value in TEST_ID is 2, the rule is a an action rule. It allows for the definition of actions in addition to the conditions.

If all conditions within an „OPTION_COMBINATION“ are satisfied, all signed actions (ACTIONS) then can set values or make version types (FEATURES) invisible depending on conditions. If an OPTION_COMBINATION is satisfied, the other conditions are not processed.

Actions (ACTIONS) are instructions that are executed if a condition is met. The following actions can be executed:

 

·        The setting of versions (SET_FEATURE_FIXED) with the following options:

o   Direct, e.g. main fabric = "blue" (OPTION)

o   the setting of version values from another version type (FEATURE), e.g. ledge fabric = main fabric

o   the calculation of versions (e.g. sitting height + 5 cm).

This function is only available for dimension versions and takes place via a formula string that may contain parameters and values.

This requires the version type (e.g. sitting height) to be assigned with a parameter (e.g. "sh").

The measure parameter (MEASURE_PARAMETER) can be supplemented with a unit (MEASURE_UNIT). The formula (FORMULA_STRING) therefore only contains the parameters (e.g. planning width = 2 * st + sb, which means that the planning width results from the sitting width + 2 times the side element width.

·        Setting default versions (SET_FEATURE_DEFAULT):

These can be filled if no value has been entered yet. The same options as above apply.

·        The visibility of version types (SET_FEATURE_VISIBLE, SET_FEATURE_INVISIBLE) and disabling of rules (DISABLE_DECISION, ENABLE_DECISION):

Example: for wooden feet, a potentially existing version type for a shade can be displayed and made invisible if a metal foot is selected.

 

Action rules are usually used in the configurator if an option value (a version) changes. If, for example, the foot version is changed from stainless steel to wood, a version type for the shade can be displayed.

 

 

Data types

IDMP 3.1.0 XML schema documentation

 

Introduction > Data types

 

Data types and value ranges

 

The IDM schema uses the data types defined in the standard XML schema 1.0 second edition (28 October 2004).

 

It uses the following data types:

 

boolean

This data type maps the logical values "true" or "false". In accordance with the W3C recommendation for XML schemas, the values that can be used in the IDM are true/false or 1/0.

date

In the IDMP, the data type date is used in conformity with the XML schemas as follows:

 

YYYY-MM-DD

Y = year, M = moth, D = day

integer

Numbers can be positive and negative integers.

nonNegativeInteger

Value is a positive integer, including 0

positiveInteger

Value is a positive integer, excluding 0

decimal

The data type is used in the IDMP for floating-point values. Floating-point values for this data type are, as recommended by the W3C, stored as 126.56 or -45.98000 or +27.0.

string

A limited number of alphanumeric characters and special characters.

anyURI

The data type is used in the IDMP for URLs.anyURI represents a Uniform Resource Identifier (URI). The lexical part of anyURI is an indefinite sequence of characters that correspond to a legal URI. An anyURI value can be absolute or relative and may contain fragment codes (e.g. an URI reference).

language

The data type is used in the IDMP for the mapping of valid language keys.language represents codes for natural languages Tags for the Identification of Languagesas defined in the Thevaluerangeof language is the quantum of all character sequences that represent a valid code of a natural language. For ISO languages, the format consists of a sequence of 2-3 lower case letters optionally followed by a hyphen and a country code consisting of 2 upper case letters, e.g. en-US.

Additionally, there is also a user-defined data type:

operator

Thy data type is used for rules in the IDMP. This simple, self-defined data type defines an operator for comparisons. The comparison operator is a string of 1 to 4 characters length and may contain the following values:

eq (equal)

ne (not equal)

in (is contained in a quantity)

nin (is not contained in a quantity)

gt (greater)

lt (less)

ge (greater than or equal)

le (less than or equal)

 

 

The value ranges of the above data types are usually restricted for the elements in the IDMP. The "restrictions" in the data type definition contains restrictions for minimum and maximum values, permitted characters (pattern) and value lists.

 

In the documentation of the XML schema of the IDM, the value ranges are specified by the information coming after M and P.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Notes to the documentation

IDMP 3.1.0 XML schema documentation

 

Introduction > Notes to the documentation

 

Notes to the IDMP documentation

 

Notes to the IDM documentation schema are stored in this section.

 

Explanation of the element properties

 

Each element is documented on the basis of a description and its properties. The following shows an example for an element description:

 

Description:

 

This element is used to specify the currency key for the prices stated in the data pool. For the currency keyISO Währungs-ID must be used.

Changing currencies within the same data pool are not permitted. Updates during the year must be delivered in the same currency as the base file.

   D   string

   P   [A-Z]{1,3}

   M   [1:3]

 

The element properties are documented on the right side. They have the following meaning:

 

D

The data type of the element is documented here. If this position is left blank, the element does not contain any reference data but additional child-elements.

P

The entries made in P and M document the value range of an element. A regular expression that defines the permitted values must be entered in P.

M

The minimum and maximum permitted values must be entered in M. In the case of a string data type, P defines the permitted characters and M the minimum and maximum character length.

In the case of a numeric data type, the permitted minimum and maximum value is defined.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Version types

IDMP 3.1.0 XML schema documentation

 

Introduction > Version types

 

Version types

 

The following version types have been defined:

 

Freely defined version types are available from 213 to 999.

 

Type:    A = finish

F = colour

P = planning

 

 

Version_type

Version_type_text

Type

Remark/possible variations

1

Reference type

A

 

2

Main reference type

A

 

3

Main reference colour

F

 

4

base cover material

A

 

5

base cover colour

F

 

6

back cover type

A

 

7

back cover colour

F

 

8

seam pattern

A

UNKNOWN TERM

9

Seat cushion type

A

 

10

Seat cushion colour

F

 

11

Decorative cushion type

A

soft, firm, round, rectangular, ...

12

Decorative cushion colour

F

 

13

Contrast stitching type / variation

A

 

14

Contrast stitching colour

F

 

15

Foot height

A

 

16

Foot material

A

Metal, timber, plastic, beech,. ..

17

Foot shape

A

metal runner, wooden runner, metal leg, wooden leg, castor, plastic glider

18

Foot colour

F

 

19

chatose type

A

 

20

chatose colour

F

 

21

UNKNOWN TERM

A

 

22

UNKNOWN TERM

F

 

23

UNKNOWN TERM

A

 

24

UNKNOWN TERM

F

 

25

Side pocket type

A

 

26

Side pocket colour

F

 

27

material of piping

A

 

28

colour of piping

F

 

29

kind of bottom linen

A

 

30

colour of bottom linen

F

 

31

Zipper type

A

 

32

Zipper colour

F

 

33

Seat hardness, quality

A

with/without spring core, ...

34

Drive type

A

Nozzle, manual, gas pressure spring, motor plug-in, motor battery, do

35

Seat height

A

 

36

Seat depth

A

 

37

Seat width

A

 

38

Back height

A

 

39

Back cushion height

A

 

40

Back cushion type

A

 

41

Armrests/side element configuration

A

without, left, right, both sides, ...

42

Armrests/side element type

A

 

43

Side element adjustment

A

 

44

Headrest type

A

movable, fixed, neck rest, ...

45

Headrest colour

F

 

46

lower front part

A

floor level, floor-free

47

Fabric combination

K

 

48

Fire / flame retardant

A

 

49

Resting area type

A

 

50

Resting area colour

F

 

51

Country version

A

 

52

Crossways sleepers

A

 

53

Seat angle adjustment

A

 

54

Seat depth adjustment

A

Mechanical, electrical, gas spring, ...

55

Backrest adjustment

A

Mechanical, electrical, gas spring, ...

56

Footrest adjustment

A

Mechanical, electrical, gas spring, ...

57

Massage function

A

 

58

Seat heating

A

 

59

Lumbar support

A

 

60

Swivel base

A

 

61

Stand-up aid

A

Mechanical, electrical, gas spring, ...

62

Folding table

A

 

63

plug-in table

A

 

64

Pull-out table

A

 

65

Cupholder

A

 

66

Headboard

A

Shape 1, shape 2 etc., headboard shortening at a surcharge, without K

67

Headboard fabric

A

 

68

Throw-over

A

short, half-length, full length, shroud

69

Day cover fabric

A

 

70

Lying surface

A

160x200, 180x200, 200x200 at a surcharge, other lengths at a surcharge

71

Bedding box

A

standard, inserting mechanism, highline etc.

72

Bedding box upholstery

A

 

73

Slatted base

A

Standard or alternatives at a surcharge, separate slats if appropriate

74

Mattress

A

Standard or alternatives at a surcharge >> firmness level H2

75

Handles (for bedside tables)

F

 

76

Bedside tables

A

Drawer with plastic or metal rails

77

Lamp colour and finish

A

 

78

Knob cover

F

 

79

Slatted base adjustment

A

Mechanical, electrical, gas spring, multiple, ...

80

Function/adjustment in general

A

 

81

freely defined version type

F

 

82

freely defined version type

F

 

83

freely defined version type

F

 

84

freely defined version type

F

 

85

freely defined version type

F

 

86

freely defined version type

F

 

87

freely defined version type

F

 

88

freely defined version type

F

 

89

Connection type L

P

ID of the connection vector in the SVG: AVL

90

Connection type R

P

ID of the connection vector in the SVG: AVR

91

freely defined version type

P

 

92

freely defined version type

P

 

93

freely defined version type

P

 

94

freely defined version type

P

 

95

Planning width

P

Item width

96

Planning depth

P

Item depth

97

Planning height

P

Item height

98

Drive position

A

 

99

Table colour

F

 

100

Head-section adjustment

A

 

101

Relax function

A

 

102

Vitalising function

A

 

103

Power source/motor

A

 

104

Accessories

A

 

105

Top table

A

 

106

Back holder

A

 

107

Slot-in back

A

 

108

Intermediate table

A

 

109

Newspaper rack

A

 

110

Swivel function

A

 

111

Reading lamp

A

 

112

Decorative item

A

 

150

freely defined version type

P

 

151

freely defined version type

P

 

152

freely defined version type

P

 

153

freely defined version type

P

 

154

freely defined version type

P

 

155

freely defined version type

P

 

160

Connection type top 1

P

ID of the connection vector in the SVG: AVO1

161

Connection type top 2

P

ID of the connection vector in the SVG: AVO2

162

Connection type top 3

P

ID of the connection vector in the SVG: AVO3

163

Connection type top  4

P

ID of the connection vector in the SVG: AVO4

164

Connection type top 5

P

ID of the connection vector in the SVG: AVO5

165

Connection type bottom 1

P

ID of the connection vector in the SVG: AVU1

166

Connection type bottom 2

P

ID of the connection vector in the SVG: AVU2

167

Connection type bottom 3

P

ID of the connection vector in the SVG: AVU3

168

Connection type bottom 4

P

ID of the connection vector in the SVG: AVU4

169

Connection type bottom 5

P

ID of the connection vector in the SVG: AVU5

170

Connection type top 6

P

ID of the connection vector in the SVG: AVO6

171

Connection type top 7

P

ID of the connection vector in the SVG: AVO7

172

Connection type top 8

P

ID of the connection vector in the SVG: AVO8

173

Connection type top  9

P

ID of the connection vector in the SVG: AVO9

174

Connection type top 10

P

ID of the connection vector in the SVG: AVO10

175

Connection type bottom 6

P

ID of the connection vector in the SVG: AVU6

176

Connection type bottom 7

P

ID of the connection vector in the SVG: AVU7

177

Connection type bottom 8

P

ID of the connection vector in the SVG: AVU8

178

Connection type bottom 9

P

ID of the connection vector in the SVG: AVU9

179

Connection type bottom 10

P

ID of the connection vector in the SVG: AVU10

180

Connection type north 1

P

ID of the connection vector in the SVG: AVN1

181

Connection type north 2

P

ID of the connection vector in the SVG: AVN2

182

Connection type north 3

P

ID of the connection vector in the SVG: AVN3

183

Connection type north 4

P

ID of the connection vector in the SVG: AVN4

184

Connection type north 5

P

ID of the connection vector in the SVG: AVN5

185

Connection type north 6

P

ID of the connection vector in the SVG: AVN6

186

Connection type north 7

P

ID of the connection vector in the SVG: AVN7

187

Connection type north 8

P

ID of the connection vector in the SVG: AVN8

188

Connection type north 9

P

ID of the connection vector in the SVG: AVN9

189

Connection type north 10

P

ID of the connection vector in the SVG: AVN10

190

Connection type south 1

P

ID of the connection vector in the SVG: AVS1

191

Connection type south 2

P

ID of the connection vector in the SVG: AVS2

192

Connection type south 3

P

ID of the connection vector in the SVG: AVS3

193

Connection type south 4

P

ID of the connection vector in the SVG: AVS4

194

Connection type south 5

P

ID of the connection vector in the SVG: AVS5

195

Connection type south 6

P

ID of the connection vector in the SVG: AVS6

196

Connection type south 7

P

ID of the connection vector in the SVG: AVS7

197

Connection type south 8

P

ID of the connection vector in the SVG: AVS8

198

Connection type south 9

P

ID of the connection vector in the SVG: AVS9

199

Connection type south 10

P

ID of the connection vector in the SVG: AVS10

200

freely defined version type

F

 

201

freely defined version type

F

 

202

freely defined version type

F

 

203

freely defined version type

F

 

204

freely defined version type

F

 

205

freely defined version type

F

 

206

freely defined version type

F

 

207

freely defined version type

F

 

208

freely defined version type

F

 

209

freely defined version type

F

 

210

freely defined version type

F

 

211

fabric requirement

A

in linear metres

212

leather requirement

A

in m²

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Model code 

IDMP 3.1.0 XML schema documentation

 

Introduction > Model code

 

 

This element is used to specify the model code:

 

T_NEW_CATALOG/SERIES/SERIE/PRODUCT_GROUPS/PRODUCT_GROUP/ITEMS/ITEM/TYPE_KEY/TK_TYPE

 

The following model codes have been defined:

 

Typ-Nr.

Bezeichnung (deutsch)

1

Sessel / Hochlehnsessel

2

Clubchair

3

TV-Sessel / Ruhe- / Liege- / Relaxsessel

4

Longchair

5

Sofa / Canapé

6

Zwischenelement

7

Ecke / Trapezteil

8

Einzelliege / Recamiere / Ottomane / Cheselon / Chaiselongue

9

Hocker

10

Kissen

11

Couchtisch / Anstelltische / Stecktische ...

12

Esstisch

13

Kombinationen

14

Abschlusselement

15

Bettsofa / Bettcouch / Liegesofa / Schlafelement / Polsterliegen

16

Sitzbank, Essplatzbank, Dinnersofa, ...

17

Stühle

18

Fußbank

19

Kopfstütze

20

Leuchten

21

Teppiche

22

Zubehör / Kleinteile

23

Polsterbetten / Polsterbett-Systeme

24

Polsterbettgestelle

25

Metrage

26

Sonstiges

Language key

IDMP 3.1.0 XML schema documentation

 

Introduction > Language key

 

 

Language key

Language name

AA

Afar

AB

Abkhazian

AE

Avestan

AF

Afrikaans

AK

Akan

AM

Amharic

AN

Aragonese

AR

Arabic

AS

Assam

AV

Avarisch

AY

Aymara

AZ

Azerbaijanian

BA

Baschkirian

BE

Byelorussian

BG

Bulgarian

BH

Biharic

BI

Bislamic

BM

Bambara

BN

Bengal

BO

Tibetan

BR

Breton

BS

Bosnian

CA

Catalan

CE

Circassian

CH

Chamorro

CO

Corsican

CR

Cree

CS

Czech

CU

Old slavish

CV

Chuvash

CY

Welsh

DA

Danish

DE

German

DV

Dhivehi

DZ

Dzongkha

EE

Estonian

EL

Greek

EN

English

EO

Esperanto

ES

Spanish

ET

Estonian

EU

Basque

FA

Persian

FF

Fulfulde

FI

Finno-Ugric

FJ

Fiji

FO

Faroese

FR

French

FY

Frisian

GA

Irish

GD

Gaelic

GL

Galician

GN

Guarani

GU

Gujaratic

GV

Manx, Manx-Gaelic

HA

Hausa

HE

Hebrew

HI

Hindi

HO

Hiri Motu

HR

Croatian

HT

Haitian

HU

Hungarian

HY

Armenian

HZ

Herero

IA

Interlingua

ID

Indonesian

IE

Interlingue

IG

Igbo

II

Yi

IK

Inupiak

IN

former Indonesian

IO

Ido

IS

Icelandic

IT

Italian

IU

Inuit

JA

Japanese

JV

Javanese

KA

Georgian

KG

Kikongo

KI

Kikuyu

KJ

Kuanyama

KK

Kazakh

KL

Kalaallisut (Greenland)

KM

Cambodian

KN

Canadian

KO

Korean

KR

Kanuri

KS

Kashmirian

KU

Kurdish

KV

Komi

KW

Cornish

KY

Kirghiz

LA

Latin

LB

Luxembourgish

LG

Luganda

LI

Limburg

LN

Lingala

LO

Laotian

LT

Lithuanian

LU

Kiluba

LV

Lett

MG

Malagasy

MH

Marshallese

MI

Maori

MK

Macedonian

ML

Malay

MN

Mongolian

MO

Moldovan

MR

Marathi

MS

Malayan

MT

Maltese

MY

Burmese

NA

Nauruan

NB

Norwegian Bokmål

ND

North Ndebele

NE

Nepalese

NG

Ndonga

NL

Dutch

NN

Norwegian Nynorsk

NO

Norwegian

NR

South Ndebele

NV

Navajo

NY

Chichewa

OC

Occitan

OJ

Ojibwe

OM

Oromo

OR

Orija

OS

Ossetian

PA

Punjab

PI

Pali

PL

Polish

PS

Paschtu

PT

Portugese

QU

Quechua

RM

Rhaeto-Romanic

RN

Kirundish

RO

Romanian

RU

Russian

RW

Kijarwanda

SA

Sanskrit

SC

Sardinian

SD

Sinto

SE

North Sami

SG

Sango

SI

Sinhalese

SK

Slovakian

SL

Slovenian

SM

Samoan

SN

Shonian

SO

Somali

SQ

Albanian

SR

Serbian

SS

Swazi

ST

Sesothish

SU

Sudanese

SV

Swedish

SW

Swahili

TA

Tamil

TE

Tegulu

TG

Tajik

TH

Thai

TI

Tigrinja

TK

Turkmenian

TL

Tagalog

TN

Sezuan

TO

Tongan

TR

Turkish

TS

Tongan

TT

Tartary

TW

Twi

TY

Thai

UG

Uighur

UK

Ukranian

UR

Urdu

UZ

Uzbek

VE

Tshivenda

VI

Vietnamese

VO

Volapük

WA

Walloon

WO

Wolof

XH

Xhosa

YI

Yiddish

YO

Joruba

ZA

Zhuang

ZH

Chinese

ZU

Zulu

 

 

According to the ISO standard, the language keys are generally written with small letters. Capital letters are used for the IDM data.

 

Country code

IDMP 3.1.0 XML schema documentation

 

Introduction > Country code

 

 

country code

country

AC

Ascension

AD

Andorra

AE

United Arab Emirates

AF

Afghanistan

AG

Antigua and Barbuda

AI

Anguilla

AL

Albania

AM

Armenia

AN

Dutch Antilles

AO

Angola

AQ

Antarctica

AR

Argentina

AS

American Samoa

AT

Austria

AU

Australia

AW

Aruba

AX

Aland

AZ

Azerbaijan

BA

Bosnia and Herzegovina

BB

Barbados

BD

Bangladesh

BE

Belgium

BF

Burkina Faso

BG

Bulgaria

BH

Bahrain

BI

Burundi

BJ

Benin

BL

Saint-Barthélemy

BM

Bermuda

BN

Brunei Darussalam

BO

Bolivia

BQ

Bonaire, Sint Eustatius and Saba

BR

Brazil

BS

Bahamas

BT

Bhutan

BU

Burma

BV

Bouvet Island

BW

Botswana

BY

Belarus

BZ

Belize

CA

Canada

CC

Cocos) Islands

CD

Democratic Republic of the Congo

CF

Central African Republic

CG

Republic of the Congo

CH

Switzerland

CI

Ivory Coast

CK

Cook Islands

CL

Chile

CM

Cameroon

CN

China

CO

Columbia

CP

Clipperton

CR

Costa Rica

CU

Cuba

CV

Cape Verde

CW

Curaçao

CX

Christmas Island

CY

Cyprus

CZ

Czech Republic

DE

Germany

DG

Diego Garcia

DJ

Djibouti

DK

Denmark

DM

Dominica

DO

Dominican Republic

DZ

Algeria

EA

Ceuta, Melilla

EC

Ecuador

EE

Estonia

EG

Egypt

EH

Westsahara

EN

England

ER

Eritrea

ES

Spain

ET

Ethiopia

FI

Finland

FJ

Fiji

FK

Falklands

FM

Micronesia

FO

Faeroe Islands

FR

France

GA

Gabon

GB

England/Great Britain

GD

Grenada

GE

Georgia

GF

French Guiana

GG

Guernsey (Channel Island)

GH

Ghana

GI

Gibraltar

GL

Greenland

GM

Gambia

GN

Guinea

GP

Guadeloupe

GQ

Equatorial Guinea

GR

Greece

GS

South Georgia and the South Sandwich Islands

GT

Guatemala

GU

Guam

GW

Guinea-Bissau

GY

Guyana

HK

Hong Kong

HM

Heard and McDonald Islands

HN

Honduras

HR

Croatia

HT

Haiti

HU

Hungary

ID

Indonesian

IE

Ireland

IL

Israel

IM

Isle of Man

IN

India

IO

British Indian Ocean Territory

IQ

Iraq

IR

Islamic Republic of Iran

IS

Iceland

IT

Italy

JE

Channel Island of Jersey

JM

Jamaica

JO

Jordan

JP

Japan

KE

Kenya

KG

Kyrgyzstan

KH

Cambodia

KI

Kiribati

KM

Comoros

KN

Saint Kitts and Nevis

KP

Democratic People's Republic of Korea

KR

Republic of Korea

KW

Kuwait

KY

Cayman Islands

KZ

Kazakstan

LA

Laos

LB

Lebanon

LC

Saint Lucia

LI

Liechtenstein

LK

Sri Lanka

LR

Liberia

LS

Lesotho

LT

Lithuania

LU

Luxembourg

LV

Latvia

LY

Libya

MA

Morocco

MC

Monaco

MD

Moldavia

ME

Montenegro

MF

Saint Martin

MG

Madagascar

MH

Marshall Islands

MK

North Macedonia

ML

Mali

MM

Myanmar (Burma)

MN

Mongolia

MO

Macau

MP

Northern Mariana Islands

MQ

Martinique

MR

Mauritania

MS

Montserrat

MT

Malta

MU

Mauritius

MV

Maldives

MW

Malawi

MX

Mexico

MY

Malaysia

MZ

Mozambique

NA

Namibia

NC

New Caledonia

NE

Niger

NF

Norfolk Island

NG

Nigeria

NI

Nicaragua

NL

Netherlands

NO

Norway

NP

Nepal

NR

Nauru

NU

Niue

NZ

New Zealand

OM

Oman

PA

Panama

PE

Peru

PF

French Polynesia

PG

Papuan New Guinea

PH

Philippine

PK

Pakistan

PL

Poland

PM

St. Pierre and Miquelon

PN

Pitcairn Islands

PR

Puerto Rica

PS

Palestine

PT

Portugal

PW

Palau

PY

Paraguay

QA

Qatar

RE

Reunion

RO

Romania

RS

Serbia

RU

Russia

RW

Ruanda

SA

Saudi Arabia

SB

Solomon Islands

SC

Seychelles

SD

Sudan

SE

Sweden

SG

Singapore

SH

St. Helena

SI

Slovenia

SJ

Svalbard and Jan Mayen Islands

SK

Slovak Republic

SL

Sierra Leone

SM

San Marino

SN

Senegal

SO

Somalia

SR

Suriname

SS

South Sudan

ST

Democratic Republic of São Tomé and Príncipe

SV

El Salvador

SX

Sint Maarten

SY

Syrian Arab Republic

SZ

Swaziland

TC

Turks and Caicos Islands

TD

Chad

TF

French Southern and Antarctic Territories

TG

Togo

TH

Thailand

TJ

Tadschikistan

TK

Tokelau

TL

East Timor

TM

Turkmenistan

TN

Tunisia

TO

Tonga

TR

Turkey

TT

Trinidad and Tobago

TV

Tuvalu

TW

Taiwan

TZ

Tanzania

UA

Ukraine

UG

Uganda

UM

United States Minor Outlying Islands

US

United States of America

UY

Uruguay

UZ

Uzbekistan

VA

Vatican City

VC

Saint Vincent and the Grenadines

VE

Venezuela

VG

British Virgin Islands

VI

American Virgin Islands

VN

Vietnam

VU

Vanuatu

WF

Wallis and Futuna Islands

WS

Samoa

YE

Yemen

YT

Mayotte

ZA

South Africa

ZM

Sambia

ZW

Zimbabwe

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Types of detailed information  

IDMP 3.1.0 XML schema documentation

 

Introduction > Types of detailed information  

 

The following info types can be used to describe the type of detail information:

 

1 = Milieu photo

2 = Item pictogram (type/item overview)

3 = Magnetic planner drawing (SVGs in top view)

4 = Version photo

5 = Version texture (leather type, ...)

6 = Manufacturer logo/product brand

7 = Colour consultancy (the versions are defined in an assessment procedure)

8 = Fabric sample book (PDF for fabric groups)

9 = Model description sheets (PDF below series)

10 = Installation instructions

11 = Marketing

12 = Miscellaneous

13 = Colour consultancy wall

14 = Colour consultancy floor

15 = Description of function

16 = Planning advice

17 = Catalogue image                                                            

 

 

Schema IDMP_3_1_0.xsd.EN.xsd




schema location C:\Users\degenhard\Desktop\Dokumentationen\IDMP\Doku IDMP\IDMP_3_1_0.xsd.EN.xsd
attributeFormDefault unqualified
elementFormDefault qualified
 
Elements  Complex types  Simple types 
T_NEW_CATALOG  languagetext  measure_unit 
languagetext30  operator 
languagetext40 
languagetext60 


element T_NEW_CATALOG

diagram index_diagrams/index_p1.png
properties
content complex
children CATALOG SUPPLIER GLOBAL_DEFINITION SERIES PART_LISTS FEATURE_DEFINITION PRICE_DEFINITION
annotation
documentation
This element is used to specify all information and data for the provisioning of a complete catalogue/data pool.

attribute T_NEW_CATALOG/@MAJOR

type restriction of xs:positiveInteger
properties
use required
facets
Kind Value Annotation
minInclusive 3
maxInclusive 3
annotation
documentation
The version number "MAJOR" specifies the format version the data pool is delivered. The major version number will only change in the case of a fundamental revision of the entire format.
The complete information about the format version in which a data pool is delivered consists of MAJOR, MINOR and REVISION.

attribute T_NEW_CATALOG/@MINOR

type restriction of xs:nonNegativeInteger
properties
use required
facets
Kind Value Annotation
minInclusive 1
maxInclusive 1
annotation
documentation
The sub-version number "MINOR" usually changes every year. If the main version MAJOR is modified, the subversion is reset to 0.

attribute T_NEW_CATALOG/@REVISION

type restriction of xs:nonNegativeInteger
properties
use required
facets
Kind Value Annotation
minInclusive 0
maxInclusive 0
annotation
documentation
The revision number "REVISION" highlights changes during the year resultant from individual working groups. The revisions are not published if they are not concerned with necessary corrections. Revision is reset to 0 with each new MINOR sub-version number.

attribute T_NEW_CATALOG/@FORMAT

type restriction of xs:string
properties
use required
facets
Kind Value Annotation
pattern [ABGKOPSWZ]
annotation
documentation
This element is used to specify the manufacturer's industry code. The following industry codes are currently defined:

A = worktop manufacturers
B = bathroom furniture manufacturers
G = appliance manufacturers
K = kitchen furniture manufacturers
O = office furniture manufacturers
P = upholstered furniture manufacturers
S = sanitary products manufacturers
W = living room furniture manufacturers
Z = accessories manufacturers

element T_NEW_CATALOG/CATALOG

diagram index_diagrams/index_p2.png
properties
content complex
children CATALOG_IDENTIFICATION CURRENCY_KEY CATALOG_LANGUAGE CATALOG_NAME DATA_VERSION VALID_FROM_DATE VALID_UNTIL_DATE FILE_ID CATALOG_MARK CATALOG_MERGE_TYPE CATALOG_DATA_VERSION CATALOG_INFO CATALOG_VERSION FALL_BACK_LANGUAGE DETAIL_INFOS
annotation
documentation
This element is used to store administrative information concerning the catalogue/data pool.

element T_NEW_CATALOG/CATALOG/CATALOG_IDENTIFICATION

diagram index_diagrams/index_p3.png
properties
content complex
children GLN_NO CATALOG_ID MAJOR_NO MINOR_NO FILE_RELEASE_DATE
annotation
documentation
This element is used to specify the catalogue's identifying characteristics.
          
If the contents of these fields in an updated catalogue are different from the base file, it is not easily possible to update an existing catalogue.

element T_NEW_CATALOG/CATALOG/CATALOG_IDENTIFICATION/GLN_NO
diagram index_diagrams/index_p4.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
pattern (0-9){13}
annotation
documentation
This element is used to enter a unique global location number (GLN). The GLN allows for an unequivocal assignment of companies or business units, e.g. for the automated electronic exchange of data.

element T_NEW_CATALOG/CATALOG/CATALOG_IDENTIFICATION/CATALOG_ID
diagram index_diagrams/index_p5.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 64
annotation
documentation
The manufacturer must enter a unique ID (e.g. GUID) that unequivocally identifies the catalogue here.
This ID is required for identification in the case of multi-manufacturer catalogues.

A manufacturer catalogue must always have the same ID for the same dealership.

element T_NEW_CATALOG/CATALOG/CATALOG_IDENTIFICATION/MAJOR_NO
diagram index_diagrams/index_p6.png
type restriction of xs:gYear
properties
content simple
annotation
documentation
The catalogue version number MAJOR_NO provides the year in which the data pool was produced. The full indication of the catalogue version in which a data pool is delivered consists of MAJOR and MINOR.

element T_NEW_CATALOG/CATALOG/CATALOG_IDENTIFICATION/MINOR_NO
diagram index_diagrams/index_p7.png
type restriction of xs:nonNegativeInteger
properties
content simple
facets
Kind Value Annotation
minInclusive 1
maxInclusive 999
annotation
documentation
The catalogue sub-version number MINOR_NO is given in serial numbers for the year. The full indication of the catalogue version in which a data pool is delivered consists of MAJOR and MINOR. If the catalogue version MAJOR is changed, the catalogue sub-version is reset to 0.

element T_NEW_CATALOG/CATALOG/CATALOG_IDENTIFICATION/FILE_RELEASE_DATE
diagram index_diagrams/index_p8.png
type xs:dateTime
properties
content simple
annotation
documentation
This element provides the time stamp for the creation of the data pool in UTC time.

element T_NEW_CATALOG/CATALOG/CURRENCY_KEY

diagram index_diagrams/index_p9.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
pattern [A-Z]{1,3}
annotation
documentation
This element is used to specify the currency key for the prices stated in the data pool. The ISO currency ID must be used for the currency key.
Changing currencies within the same data pool are not permitted. Updates during the year must be delivered in the same currency as the base file.

element T_NEW_CATALOG/CATALOG/CATALOG_LANGUAGE

diagram index_diagrams/index_p10.png
properties
content complex
children ISO_LANGUAGE_ID
annotation
documentation
This element indicates the languages used in the data pool.

element T_NEW_CATALOG/CATALOG/CATALOG_LANGUAGE/ISO_LANGUAGE_ID
diagram index_diagrams/index_p11.png
type restriction of xs:language
properties
minOcc 1
maxOcc unbounded
content simple
facets
Kind Value Annotation
pattern [A-Z]{2}
annotation
documentation
The language code defines the language in which the texts in the data pool were created. The ISO language code must be used.

element T_NEW_CATALOG/CATALOG/CATALOG_NAME

diagram index_diagrams/index_p12.png
type languagetext30
properties
content complex
children LANGUAGE
annotation
documentation
This element is used to specify the catalogue name of the data pool. It serves as the basis for displaying the catalogue name in the software products. Catalogue names that include the year are permitted.

element languagetext30/LANGUAGE
diagram index_diagrams/index_p322.png
properties
minOcc 1
maxOcc unbounded
content complex
children TEXT
annotation
documentation
This element is used to store texts in multiple languages. One element is created for each language. Language is specified in the attribute ISO_LANGUAGE_ID. The same languages must be specified for each element in the data pool. They must be identical to the ISO_LANGUAGE_ID elements under T_NEW_CATALOG/CATALOG/CATALOG_IDENTIFICATION

attribute languagetext30/LANGUAGE/@ISO_LANGUAGE_ID
type restriction of xs:language
properties
use required
facets
Kind Value Annotation
pattern [A-Z]{2}
annotation
documentation
This attribute specifies the ISO code of the stored text's language.

element languagetext30/LANGUAGE/TEXT
diagram index_diagrams/index_p323.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
pattern [\p{L}\p{N}\p{P}\p{S}][\p{L}\p{N}\p{P}\p{S} ]{1,30}
annotation
documentation
This element is used to store the text in the language specified in the LANGUAGE element of the ISO_LANGUAGE_ID attribute.

element T_NEW_CATALOG/CATALOG/DATA_VERSION

diagram index_diagrams/index_p13.png
type restriction of xs:date
properties
content simple
annotation
documentation
The data version (DATA_VERSION) defines the date until which catalogue data, supplements and error corrections published by the manufacturer was included in the data pool.

element T_NEW_CATALOG/CATALOG/VALID_FROM_DATE

diagram index_diagrams/index_p14.png
type restriction of xs:date
properties
content simple
annotation
documentation
The element is used to specify the validity period date of the catalogue and thereby of the current data pool.

element T_NEW_CATALOG/CATALOG/VALID_UNTIL_DATE

diagram index_diagrams/index_p15.png
type restriction of xs:date
properties
content simple
annotation
documentation
The element is used to specify the validity period date of the catalogue and thereby of the current data pool.

element T_NEW_CATALOG/CATALOG/FILE_ID

diagram index_diagrams/index_p16.png
type restriction of xs:boolean
properties
content simple
annotation
documentation
This element is used to specify whether the data pool contains test data or released data.

0/false = test data
1/true = released data

element T_NEW_CATALOG/CATALOG/CATALOG_MARK

diagram index_diagrams/index_p17.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
pattern [BKVF]
annotation
documentation
This element is used to specify whether the provisions data are

B = block data with prices
K = catalogue data
V = block data without prices (fictional prices must be specified)
F = correction update.

element T_NEW_CATALOG/CATALOG/CATALOG_MERGE_TYPE

diagram index_diagrams/index_p18.png
type xs:boolean
properties
minOcc 0
maxOcc 1
content simple
annotation
documentation
This element CATALOG_MERGE_TYPE is optional and contains boolean data with the following values.

0: The value if the element is not present; it means that this catalogue does not have to be part of a multi-manufacturer catalogue.

1: This catalogue is always part of a multi-manufacturer catalogue.

element T_NEW_CATALOG/CATALOG/CATALOG_DATA_VERSION

diagram index_diagrams/index_p19.png
type restriction of xs:date
properties
minOcc 0
maxOcc 1
content simple
annotation
documentation
This element must be filled if the CATALOG_MARK element (catalogue identifier) contains the value F for correction update.

This element is used to enter the date of the base file (element DATA_VERSION) to which the correction update relates.

element T_NEW_CATALOG/CATALOG/CATALOG_INFO

diagram index_diagrams/index_p20.png
type languagetext
properties
minOcc 0
maxOcc 1
content complex
children LANGUAGE
annotation
documentation
This element is used to store the information texts.

element languagetext/LANGUAGE
diagram index_diagrams/index_p319.png
properties
minOcc 1
maxOcc unbounded
content complex
children TEXT
annotation
documentation
This element is used to store texts in multiple languages. One element is created for each language. Language is specified in the attribute ISO_LANGUAGE_ID. The same languages must be specified for each element in the data pool.

attribute languagetext/LANGUAGE/@ISO_LANGUAGE_ID
type restriction of xs:language
properties
use required
facets
Kind Value Annotation
pattern [A-Z]{2}
annotation
documentation
This attribute specifies the ISO code of the stored text's language.

element languagetext/LANGUAGE/TEXT
diagram index_diagrams/index_p320.png
type xs:string
properties
content simple
annotation
documentation
This element is used to store the text in the language specified in the LANGUAGE element of the ISO_LANGUAGE_ID attribute.

This element contains the text for a CDATA node.

The text must be specified in HTML format:
b       Bold font
br     line break

element T_NEW_CATALOG/CATALOG/CATALOG_VERSION

diagram index_diagrams/index_p21.png
type restriction of xs:positiveInteger
properties
content simple
facets
Kind Value Annotation
minInclusive 1
maxInclusive 999999999
annotation
documentation
The manufacturer can assign a version number for the catalogue in this field.

element T_NEW_CATALOG/CATALOG/FALL_BACK_LANGUAGE

diagram index_diagrams/index_p22.png
type restriction of xs:language
properties
content simple
facets
Kind Value Annotation
pattern [A-Z]{2}
annotation
documentation
This element corresponds to the language code that defines the language in which the data pool texts were created if no language identifier for multi-language texts is specified. The two-digit ISO language code must be used. The specified fallback language must be included in the catalogue.

element T_NEW_CATALOG/CATALOG/DETAIL_INFOS

diagram index_diagrams/index_p23.png
properties
minOcc 0
maxOcc 1
content complex
children DETAIL_INFO_REF
annotation
documentation
This element serves to specify images on catalogue level, e.g. a manufacturer or catalogue logo.

element T_NEW_CATALOG/CATALOG/DETAIL_INFOS/DETAIL_INFO_REF
diagram index_diagrams/index_p24.png
properties
minOcc 1
maxOcc unbounded
content complex
annotation
documentation
This element is used to reference the detailed information.

attribute T_NEW_CATALOG/CATALOG/DETAIL_INFOS/DETAIL_INFO_REF/@DETAIL_INFO_NO
type restriction of xs:positiveInteger
properties
use required
facets
Kind Value Annotation
maxInclusive 999999999
annotation
documentation
This attribute is used to specify the identification number of the referenced detailed information.

attribute T_NEW_CATALOG/CATALOG/DETAIL_INFOS/DETAIL_INFO_REF/@SEQUENCE_NO
type restriction of xs:positiveInteger
properties
use required
annotation
documentation
This attribute allows for the specification of detailed information for the catalogue with a freely-defined sorting order.

element T_NEW_CATALOG/SUPPLIER

diagram index_diagrams/index_p25.png
properties
content complex
children ISO_COUNTRY_ID WEEE_NO CONTACT_PERSON CONTACT_SUPPLIER
annotation
documentation
This element is used to specify the manufacturer's data, e.g. communication and contact information.

element T_NEW_CATALOG/SUPPLIER/ISO_COUNTRY_ID

diagram index_diagrams/index_p26.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
pattern [A-Z]{2}
annotation
documentation
This element is used to specify the manufacturer's country in accordance with the ISO standard.

element T_NEW_CATALOG/SUPPLIER/WEEE_NO

diagram index_diagrams/index_p27.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
annotation
documentation
This element is used to enter the WEEE registration number. A WEEE registration number is mandatory for everyone classified as a manufacturer or importer of electrical appliances in accordance with the "Electrical and Electronic Equipment Act (ElektroG)".
In Germany, WEEE numbers look as follows: "DE12345678".
Dealers can verify the validity of WEEE numbers on the website of the register for Waste Electrical Appliances (http://www.stiftung-ear.de).

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON

diagram index_diagrams/index_p28.png
properties
minOcc 1
maxOcc 2
content complex
children CONTACT_PERSON_NO CONTACT_ROLE CONTACT_NAME FIRST_NAME FORM_OF_ADDRESS DEPARTMENT TELEPHONE FAX EMAIL STREET ZIPCODE_STREET CITY ISO_COUNTRY_ID
annotation
documentation
This element is used to specify the information of a contact person.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/CONTACT_PERSON_NO
diagram index_diagrams/index_p29.png
type restriction of xs:positiveInteger
properties
content simple
facets
Kind Value Annotation
minInclusive 1
maxInclusive 2
annotation
documentation
This element is used to specify the priorities of methods for making contact with the contact person. (1=1st Contact, 2=2nd contact)

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/CONTACT_ROLE
diagram index_diagrams/index_p30.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 60
annotation
documentation
This element is used to specify the role of the newly created contact. The role designation certified by the manufacturer (e.g. substitute, person responsible for IT).

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/CONTACT_NAME
diagram index_diagrams/index_p31.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 20
annotation
documentation
This element is used to specify the last name of the direct contact person for the software house.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/FIRST_NAME
diagram index_diagrams/index_p32.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 20
annotation
documentation
This element is used to specify the first name of the direct contact person.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/FORM_OF_ADDRESS
diagram index_diagrams/index_p33.png
type restriction of xs:positiveInteger
properties
content simple
facets
Kind Value Annotation
minInclusive 1
maxInclusive 2
annotation
documentation
This element is used to specify the salutation for the direct contact person.
1 = Mrs
2 = Mr

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/DEPARTMENT
diagram index_diagrams/index_p34.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
minLength 1
maxLength 15
annotation
documentation
This element is, if present, used to specify the department of the direct contact person.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/TELEPHONE
diagram index_diagrams/index_p35.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 18
annotation
documentation
This element is used to specify the telephone number of the direct contact person. This also includes all (international) dialling codes, e.g. +49(1234)56-7890.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/FAX
diagram index_diagrams/index_p36.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
minLength 1
maxLength 18
annotation
documentation
This element is used to specify the fax number of the direct contact person. This also includes all (international) dialling codes, e.g. +49(5251)60-3284.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/EMAIL
diagram index_diagrams/index_p37.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
pattern [a-zA-Z0-9._%+\-!#$%'*/=?^_`{|}~]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,}
annotation
documentation
This element is used to specify the email address.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/STREET
diagram index_diagrams/index_p38.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
minLength 1
maxLength 30
annotation
documentation
This element as you specify the street of the manufacturer's business address.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/ZIPCODE_STREET
diagram index_diagrams/index_p39.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
minLength 1
maxLength 8
annotation
documentation
This element is used to specify the postcode of the manufacturer's business address.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/CITY
diagram index_diagrams/index_p40.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
minLength 1
maxLength 30
annotation
documentation
This element is used to specify the manufacturer's place registered office.

element T_NEW_CATALOG/SUPPLIER/CONTACT_PERSON/ISO_COUNTRY_ID
diagram index_diagrams/index_p41.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
pattern [A-Z]{2}
annotation
documentation
This element is used to specify the manufacturer's country in accordance with theISO standard.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER

diagram index_diagrams/index_p42.png
properties
content complex
children MANUFACTURER_NAME_1 MANUFACTURER_NAME_2 EMAIL INTERNET_ADDRESS STREET ZIPCODE_STREET CITY ISO_COUNTRY_ID ZIPCODE_POSTBOX POSTBOX TELEPHONE_SWITCHBOARD FAX_SWITCHBOARD
annotation
documentation
This element is used to specify the manufacturer's contact data.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER/MANUFACTURER_NAME_1
diagram index_diagrams/index_p43.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 30
annotation
documentation
This element is used to specify the first line of the company name.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER/MANUFACTURER_NAME_2
diagram index_diagrams/index_p44.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
minLength 1
maxLength 30
annotation
documentation
If activated, this element is used to store the second line of the company name.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER/EMAIL
diagram index_diagrams/index_p45.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
facets
Kind Value Annotation
pattern [a-zA-Z0-9._%+\-!#$%'*/=?^_`{|}~]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,}
annotation
documentation
This element is used to specify the official email address for the dealership or consumer.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER/INTERNET_ADDRESS
diagram index_diagrams/index_p46.png
type restriction of xs:string
properties
minOcc 0
maxOcc 1
content simple
annotation
documentation
This element, if present, is used to specify the official URL (e.g. http://www.company.com) for dealerships or consumers.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER/STREET
diagram index_diagrams/index_p47.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 30
annotation
documentation
This element as you specify the street of the manufacturer's business address.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER/ZIPCODE_STREET
diagram index_diagrams/index_p48.png
type restriction of xs:string
properties
content simple
facets
Kind Value Annotation
minLength 1
maxLength 8
annotation
documentation
This element is used to specify the postcode of the manufacturer's business address.

element T_NEW_CATALOG/SUPPLIER/CONTACT_SUPPLIER/CITY
diagram index_diagrams/index_p49.png
type restriction of xs:string
properties
content simple