User Story
The user wants to request a list of all available attributes in the system.
Note: Do not use this request in an application during runtime.
Response
The response to the request contains the following information blocks:
- name of each attribute
- description of each attribute where available
- names of all the layers that contain the attribute
[
...
{
"name": "DEPENDEND_SPEED_TYPE",
"description": "Indicates situations which would limit travel speed, such as weather, certain times of day, or special zones.<br/>1: School<br/>2: Rain<br/>3: Snow<br/>4: Time-Dependent<br/>5: Approximate seasonal time<br/>6: Lane-Dependend<br/>7: Fog",
"layers": [
"SPEED_LIMITS_COND_FC1",
"SPEED_LIMITS_COND_FC2",
"SPEED_LIMITS_COND_FC3",
"SPEED_LIMITS_COND_FC4",
"SPEED_LIMITS_COND_FC5"
]
},
{
"name": "DEST_LINK_IDS",
"description": "List of permanent identifiers of destination links of the sign post. The destinations define the directions indicated by the sign.",
"layers": [
"SIGNPOST"
]
},
...
{
"name": "DIESEL",
"description": "Indicates whether Diesel fuel for automobiles is available at a petrol/gasoline station. y = true, n = false.<br/>NULLABLE",
"layers": [
"EVCHARGING_POI"
]
},
{
"name": "DIESEL",
"description": "Indicates whether Diesel fuel for trucks is available at a POI. Semicolon seperated values: y/n;Additives;FuelUse<br/> Values:<br/>y - yes<br/>n - no<br/>Additives: Provides additives available for a specific fuel type. Values: AUS32, AUS32 in cans<br/>FuelUse: Indicates whether the available diesel fuel is for commercial or noncommercial use. Values: Commercial, Non-commercial<br/>NULLABLE",
"layers": [
"TRUCK_POI"
]
},
...
{
"name": "UTURN_AT_INTERSECTION",
"description": "Indicates if U-turns are restricted throughout the entire administrative area unless otherwise posted.",
"layers": [
"ADMIN_PLACE_0",
"ADMIN_PLACE_1",
"ADMIN_PLACE_2",
"ADMIN_PLACE_8",
"ADMIN_PLACE_9"
]
},
Removed for readability
]