This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Location
Matthias Rohmer edited this page Jun 15, 2022
·
5 revisions
Every organizer may have one ore more locations in which they make a cultural offer.
Features | Yes / No |
---|---|
Allows media | Yes |
Allows links | Yes |
Is taggable | Yes |
Is translatable | Yes |
interface Location = {
id: string;
type: "location"
attributes: {
status: "draft" | "published";
url?: string;
rentUrl?: string;
createdAt: string;
updatedAt: string;
};
relations: {
organizer?: Organizer;
address?: Address;
openingHours?: [
{
id: number;
type: "openinghours";
attributes: {
weekday: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday",
from: string,
to: string
}
}
];
accessibility?: Accessibility;
service?: Service;
links?: Link[];
media?: Media[];
tags?: Tag[];
};
}
Parameters | Values |
---|---|
sort |
createdAt , updatedAt , name
|
include |
* , organizer , address , media , tags
|
filter |
status=published , status=draft
|
{
"data": {
"id": "cl14oejxr2uyu0txy9zwpg5sv",
"type": "location",
"attributes": {
"status": "draft",
"type": "physical",
"url": "https://www.technologiestiftung-berlin.de/",
"rentUrl": null,
"createdAt": "2022-03-24T07:31:22.863+00:00",
"updatedAt": "2022-03-24T07:37:37.188+00:00"
},
"relations": {
"translations": [
{
"id": 301,
"type": "locationtranslation",
"attributes": {
"language": "de",
"name": "TSB Ausstellungshaus",
"description": "Im TSB Ausstellungshaus laden abwechslungsreiche Sonderausstellungen und 19 Dauerausstellungen zu einer erlebnisreichen Entdeckungsreise durch die Kulturgeschichte der Technik ein.",
"openingHours": "Bitte beachten Sie die gesonderten Öffnungszeiten an Feiertagen auf unserer Website."
}
},
{
"id": 302,
"type": "locationtranslation",
"attributes": {
"language": "de-easy",
"name": null,
"description": "Im TSB Ausstellungshaus laden verschiedene Sonderausstellungen und 19 Dauerausstellungen zu einer spannenden Entdeckungsreise durch die Kulturgeschichte der Technik ein.",
"openingHours": null
}
},
{
"id": 303,
"type": "locationtranslation",
"attributes": {
"language": "en",
"name": "TSB Exhibition House",
"description": "In the TSB Exhibition House, a variety of special exhibitions and 19 permanent exhibitions invite visitors on an eventful journey of discovery through the cultural history of technology.",
"openingHours": "Please note the special opening hours on public holidays on our website."
}
}
],
"openingHours": [
{
"id": 793,
"type": "openinghours",
"attributes": {
"weekday": "monday",
"from": "09:00",
"to": "16:00"
}
},
{
"id": 794,
"type": "openinghours",
"attributes": {
"weekday": "tuesday",
"from": "09:00",
"to": "16:00"
}
},
{
"id": 795,
"type": "openinghours",
"attributes": {
"weekday": "thursday",
"from": "09:00",
"to": "16:00"
}
},
{
"id": 796,
"type": "openinghours",
"attributes": {
"weekday": "friday",
"from": "09:00",
"to": "16:00"
}
},
{
"id": 797,
"type": "openinghours",
"attributes": {
"weekday": "saturday",
"from": "10:00",
"to": "20:00"
}
},
{
"id": 798,
"type": "openinghours",
"attributes": {
"weekday": "sunday",
"from": "10:00",
"to": "20:00"
}
}
],
"address": {
"id": 252,
"type": "address",
"attributes": {
"street1": "Teststraße 31",
"street2": "1. OG",
"city": "Berlin",
"district": "Tempelhof-Schöneberg",
"zipCode": "10823"
}
},
"links": [],
"media": [],
"tags": [],
"organizer": {
"id": "cl14o7cj62uqd0txycbfp546k",
"type": "organizer",
"attributes": {
"status": "draft",
"homepage": null,
"email": null,
"phone": null,
"createdAt": "2022-03-24T07:25:46.674+00:00",
"updatedAt": "2022-03-24T07:25:46.674+00:00"
},
"relations": {
"translations": [
{
"id": 319,
"type": "organizertranslation",
"attributes": {
"language": "de",
"name": null,
"description": null
}
},
{
"id": 320,
"type": "organizertranslation",
"attributes": {
"language": "de-easy",
"name": null,
"description": null
}
},
{
"id": 321,
"type": "organizertranslation",
"attributes": {
"language": "en",
"name": null,
"description": null
}
}
]
}
},
"accessibility": {
"id": 253,
"type": "accessibility",
"relations": {
"fields": []
}
},
"service": {
"id": 253,
"type": "service",
"relations": {
"fields": [
{
"id": 1,
"type": "servicefield",
"attributes": {
"type": "string",
"key": "services.parking",
"value": "[onSite,accessibleParking,bicycleParking]"
}
},
{
"id": 2,
"type": "servicefield",
"attributes": {
"type": "string",
"key": "services.publicTransport",
"value": "U Bayerischer Platz"
}
},
{
"id": 3,
"type": "servicefield",
"attributes": {
"type": "string",
"key": "services.publicTransport.bus",
"value": "100"
}
},
{
"id": 4,
"type": "servicefield",
"attributes": {
"type": "string",
"key": "services.publicTransport.tram",
"value": "M2"
}
},
{
"id": 5,
"type": "servicefield",
"attributes": {
"type": "string",
"key": "services.publicTransport.sbahn",
"value": "S3, S5"
}
},
{
"id": 6,
"type": "servicefield",
"attributes": {
"type": "string",
"key": "services.publicTransport.ubahn",
"value": "U7"
}
}
]
}
}
}
},
"meta": {
"publishable": true,
"language": "de"
}
}