Term | Description | XML type |
---|---|---|
boolean | The boolean data type is used to specify a true or false value. | xs:boolean |
Celsius | For temperature measurements. SI unit derived from Kelvin. | decimal |
Count | For terms/attributes that are a count of something, typical example is passenger. | int |
dateTime | XSD dateTime type The dateTime is specified in the following form "YYYY-MM-DDThh:mm:ss.s+" where:
Note:
| xs:dateTime |
DateTimeUtc | XML dateTime always in UTC. NB! A 'Z' shall always be appended to indicate UTC! | dateTime |
DateUtc | XML date always in UTC. | date |
decimal | XSD decimal type The decimal data type is used to specify a numeric value. The following is an example of a decimal declaration in a schema: <xs:element name="prize" type="xs:decimal"/> | xs:decimal |
duration | XSD "duration" type The lexical representation for duration is the ISO 8601 extended format PnYnMnDTnHnMnS, where nY represents the number of years, nM the number of months, nD the number of days, 'T' is the date/time separator, nH the number of hours, nM the number of minutes and nS the number of seconds. The number of seconds can include decimal digits to arbitrary precision. P is required. | xs:duration |
Gram | Weight of something in grams. | decimal |
int | XSD integer type | xs:int |
Kilogram | Representing the mass (weight) of something. SI unit is kilogram. | decimal |
Liter | Measurement of volume. SI name is "Litre". NB! Official SI unit name is "Litre". US uses "Liter". The ACRIS Data Dictionary uses US English. | decimal |
Meter | For attributes that are some sort of distance that are measured in meters. SI name is "Metre". NB! Official SI unit name is "Metre". US uses "Meter". The ACRIS Data Dictionary uses US English. | decimal |
PartyIdentifier | System specific identifier of a Party. | string (32) |
string | XSD String type. | xs:string |
TimestampUtc | A precise time for when something happened. Always UTC. NB! A 'Z' shall always be appended to indicate UTC! | dateTime |