add fields tents, [static_]caravans, picnic_table, nudism to camp site preset

This commit is contained in:
Martin Raifer 2023-01-23 13:35:27 +01:00
No known key found for this signature in database
GPG key ID: 3CD561F7B1C461BD
9 changed files with 109 additions and 9 deletions

View file

@ -2,6 +2,10 @@
"key": "capacity:caravans",
"type": "number",
"minValue": 0,
"label": "Capacity (Caravans)",
"placeholder": "10, 20, 50..."
"label": "Capacity (Campervan / Camping Trailer)",
"placeholder": "10, 20, 50...",
"prerequisiteTag": {
"key": "caravans",
"valueNot": "no"
}
}

11
data/fields/caravans.json Normal file
View file

@ -0,0 +1,11 @@
{
"key": "caravans",
"type": "check",
"label": "Campervan / Camping Trailer",
"terms": [
"Camper",
"Camper Trailer",
"Caravan",
"Tourer"
]
}

23
data/fields/nudism.json Normal file
View file

@ -0,0 +1,23 @@
{
"key": "nudism",
"type": "combo",
"label": "Nudism",
"strings": {
"options": {
"customary": "Customary",
"designated": "Designated",
"no": "Prohibited",
"obligatory": "Obligatory",
"permissive": "Permissive",
"yes": "Allowed"
}
},
"autoSuggestions": false,
"customValues": false,
"terms": [
"naturism",
"naturist",
"nude recreation",
"nudist"
]
}

View file

@ -0,0 +1,9 @@
{
"key": "picnic_table",
"type": "check",
"label": "Picnic Table",
"terms": [
"outdoor table",
"bench"
]
}

View file

@ -0,0 +1,11 @@
{
"key": "static_caravans",
"type": "check",
"label": "Mobile Homes",
"terms": [
"House Trailers",
"Park Home",
"Static Caravans",
"Trailer home"
]
}

5
data/fields/tents.json Normal file
View file

@ -0,0 +1,5 @@
{
"key": "tents",
"type": "check",
"label": "Tents"
}