Dimension Service API  2.0.0
api indexresource index

GET {+dimensionNode}/attributes

since: 0.6
Returns a list of all defined, non-null attribute values for a node. Attributes that do not have a value assigned to this node and also do not define a default value will not be listed.

Path Elements

+dimensionNode
0.6required
string
The URI path to a specific dimension node (whether by ID or by name).

Request Headers

pros-dimension-consistency
0.13optional
string
pros-dimension-consistency is an optional HTTP header used to define the data consistency level of the request. There is a trade off between data consistency and service availability and performance: higher data consistency can result in lower availability and slower performance, while lower data consistency can result in higher availability and faster performance.
0.13 valid values:
  • HIGHEST
  • HIGH
  • NORMAL
  • LOW
  • LOWEST
Accept-Language
0.13optional
string
The Accept-Language request HTTP header advertises which languages the client is able to understand, and which locale variant is preferred.

Resource Information

Response Content
json
Response Object
Success Statuses
200  OK

Example 1

Request:

Response:
HTTP/1.1  200  OK

[
  {
    "type": "integer",
    "attrID": "29be0fe0-8815-37d0-81b5-7f4781e3848e",
    "attrName": "POPULATION",
    "integer": "2076189",
    "text": "2,076,189"
  },
  {
    "type": "decimal",
    "attrID": "c689acc7-ee13-3482-aa7b-c6a13419421d",
    "attrName": "LAT",
    "decimal": "29.7628",
    "text": "29.7628"
  },
  {
    "type": "decimal",
    "attrID": "c689acc7-ee13-3482-aa7b-c6a13419421e",
    "attrName": "LON",
    "decimal": "-95.3831",
    "text": "-95.3831"
  }
]