
| Property Name | Type | Description |
|---|---|---|
| species | string | species (DRMDAT-01.json) |
| grade | string | grade (DRMDAT-01.json) |
| quality | string | quality (DRMDAT-01.json) |
| use | string |
A String value
where
length <=
10
Description : Verwendungssorte
|
| preservation | boolean |
A Boolean value
Description : Chemischer Holzschutz
|
| length | number | length (DRMDAT-01.json) |
| diameter | integer | diameter (DRMDAT-01.json) |
| media | number | media (DRMDAT-01.json) |
| bark | boolean |
A Boolean value
Description : Rindenzustand (mit Rinde = 1)
|
| pieces | integer | pieces (DRMDAT-01.json) |
| amountValue | number | amountValue (DRMDAT-01.json) |
| amountUnit | string | amountUnit (DRMDAT-01.json) |
| conversionFactor | number | conversionFactor (DRMDAT-01.json) |
| fellingDate | string | fellingDate (DRMDAT-01.json) |
| residualAmount | integer | residualAmount (DRMDAT-01.json) |
| productMovement | object | productMovement (DRMDAT-01.json) |
| measurementProtocol | unknown | Unresolved link to [Unresolved]: http://drmdat.eu/container.schema.json#/definitions/measurementProtocol |
| file | object | file (DRMDAT-01.json) |
| woodCertification | object | woodCertification (DRMDAT-01.json) |
| businessReference | object | businessReference (DRMDAT-01.json) |
| Additional Properties | Type | Description |
| Any Property | Any | All values are valid, no restrictions. |
"productData": {
"type": "object",
"description": "Holz-Warenbeschreibung",
"properties": {
"species": {
"type": "string",
"description": "Baum-/Holzart",
"enum": [
"FI",
"TA"
],
"maxLength": 10
},
"grade": {
"type": "string",
"description": "Sortiment",
"enum": [
"SRH",
"IRU"
],
"maxLength": 10
},
"quality": {
"type": "string",
"description": "Qualität/Güteklasse",
"enum": [
"B",
"C"
],
"maxLength": 10
},
"use": {
"type": "string",
"description": "Verwendungssorte",
"maxLength": 10
},
"preservation": {
"type": "boolean",
"description": "Chemischer Holzschutz"
},
"length": {
"type": "number",
"description": "mehrheitliche durchschnittliche Stammlänge in Meter",
"maximum": 50,
"examples": [
4,
4.5
]
},
"diameter": {
"type": "integer",
"description": "durchschnittlicher Mittendurchmesser in cm (ohne Rinde)",
"maximum": 999,
"examples": [
20
]
},
"media": {
"type": "number",
"description": "Media in cm (ohne Rinde)",
"maximum": 999,
"examples": [
20,
20.3
]
},
"bark": {
"type": "boolean",
"description": "Rindenzustand (mit Rinde = 1)"
},
"pieces": {
"type": "integer",
"description": "Stück/Anzahl Bloche",
"examples": [
14
]
},
"amountValue": {
"type": "number",
"description": "Menge ohne Rinde (multipliziert mit dem Umrechnungsfaktor)",
"examples": [
12.123,
12.12,
12.1,
12
]
},
"amountUnit": {
"type": "string",
"description": "Mengeneinheit",
"enum": [
"EFM",
"AMM",
"AKG",
"STD",
"STK"
],
"maxLength": 10
},
"conversionFactor": {
"type": "number",
"description": "Faktor zur Rückrechnung auf das Bruttomaß (Erfassungsmaß)",
"examples": [
12.12,
12.1,
12
]
},
"fellingDate": {
"type": "string",
"description": "Fällungsdatum",
"format": "date",
"examples": [
20210303
]
},
"residualAmount": {
"type": "integer",
"description": "Restmenge am Abholort",
"examples": [
12
]
},
"productMovement": {
"$ref": "#/definitions/productMovement"
},
"measurementProtocol": {
"$ref": "#/definitions/measurementProtocol"
},
"file": {
"$ref": "#/definitions/file"
},
"woodCertification": {
"$ref": "#/definitions/woodCertification"
},
"businessReference": {
"$ref": "#/definitions/businessReference"
}
},
"required": [
"species",
"grade",
"quality",
"amountValue",
"amountUnit"
]
}