Get all domains
Retrieves all domains that are registered
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
the id of the domain
- slug string
the slug of the domain
phenomenon object[]
id integerthe id of the phenomenon
slug stringthe slug of the phenomenon
validation booleanboolean that is true if the information is validated by an admin
labelId integerunique identifier of the translation of the label
descriptionId integerunique identifier of the translation of the description
markdownId integerunique identifier of the markdown text
label object
item object[]
languageCode stringlanguageCode for the language of the label. 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. e.g.
en,de,...text stringthe description text
translationId integerunique identifier of the translation item
- validation boolean
boolean that is true if the information is validated by an admin
[
{
"id": 0,
"slug": "string",
"phenomenon": [
{
"id": 0,
"slug": "string",
"validation": true,
"labelId": 0,
"descriptionId": 0,
"markdownId": 0
}
],
"label": {
"item": [
{
"languageCode": "string",
"text": "string",
"translationId": 0
}
]
},
"description": {
"item": [
{
"languageCode": "string",
"text": "string",
"translationId": 0
}
]
},
"validation": true
}
]