Get a single phenomenon
Retrieves a specific phenomena by its unique id or slug
Path Parameters
- iri integer or string required
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- id integer
the id of the phenomenon
- slug string
the slug of the phenomenon
label object
item object[]
languageCode stringlanguageCode for the language of the markdown text. e.g.
en,de,...text stringthe label text
translationId integerunique identifier of the translation item
description object
item object[]
languageCode stringlanguageCode for the language of the description text. e.g.
en,de,...text stringthe description text
translationId integerunique identifier of the translation item
markdown object
item object[]
languageCode stringlanguageCode for the language of the markdown text. e.g.
en,de,...text stringthe markdown text
translationId integerunique identifier of the translation item
- validation boolean
boolean that is true if the information is validated by an admin
domains object[]
domain items that are linked to the phenomenon
id integerthe id of the domain
slug stringthe slug of the domain
label object
item object[]
languageCode stringlanguageCode for the language of the markdown text. e.g.
en,de,...text stringthe label text
translationId integerunique identifier of the translation item
validation booleanboolean that is true if the information is validated by an admin
rov object[]
range of values that are connected to the phenomena
id integerthe id of the rov:
min integerthe minmum of the value range
max integerthe maximum of the value range
unit object
the unit of the associated value range
id integerthe id of the unit
slug stringthe slug of the unit
name stringthe name of the unit
notation stringthe notation of the unit
validation booleanboolean that is true if the information is validated by an admin
descriptionId integerthe id of the description that belongs to the unit
{
"id": 0,
"slug": "string",
"label": {
"item": [
{
"languageCode": "string",
"text": "string",
"translationId": 0
}
]
},
"description": {
"item": [
{
"languageCode": "string",
"text": "string",
"translationId": 0
}
]
},
"markdown": {
"item": [
{
"languageCode": "string",
"text": "string",
"translationId": 0
}
]
},
"validation": true,
"domains": [
{
"id": 0,
"slug": "string",
"label": {
"item": [
{
"languageCode": "string",
"text": "string",
"translationId": 0
}
]
},
"validation": true
}
],
"rov": [
{
"id": 0,
"min": 0,
"max": 0,
"unit": {
"id": 0,
"slug": "string",
"name": "string",
"notation": "string",
"validation": true,
"descriptionId": 0
}
}
]
}