mirror of
https://github.com/FoggedLens/id-tagging-schema.git
synced 2026-06-09 00:13:53 +02:00
add alpr as a preset
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"key": "camera:direction",
|
||||
"key": "direction",
|
||||
"type": "number",
|
||||
"label": "Direction (Degrees Clockwise)",
|
||||
"increment": 5,
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"key": "manufacturer",
|
||||
"type": "combo",
|
||||
"label": "Manufacturer",
|
||||
"options": [
|
||||
"Flock Safety",
|
||||
"Motorola Solutions",
|
||||
"Genetec",
|
||||
"Leonardo",
|
||||
"Neology, Inc.",
|
||||
"Insight"
|
||||
],
|
||||
"default": "Flock Safety"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"icon": "temaki-security_camera",
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex"
|
||||
],
|
||||
"fields": [
|
||||
"surveillance",
|
||||
"surveillance/type",
|
||||
"camera/type",
|
||||
"camera/direction",
|
||||
"camera/manufacturer",
|
||||
"surveillance/zone"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "surveillance",
|
||||
"surveillance:type": "ALPR",
|
||||
"camera:mount": "fixed"
|
||||
},
|
||||
"name": "License Plate Reader"
|
||||
}
|
||||
Vendored
+72
-1
@@ -2829,6 +2829,10 @@
|
||||
"autoSuggestions": false,
|
||||
"customValues": false
|
||||
},
|
||||
"dog_check": {
|
||||
"key": "dog",
|
||||
"type": "check"
|
||||
},
|
||||
"dog": {
|
||||
"key": "dog",
|
||||
"type": "combo",
|
||||
@@ -4727,6 +4731,31 @@
|
||||
"minValue": 0,
|
||||
"type": "number"
|
||||
},
|
||||
"roof/shape": {
|
||||
"key": "roof:shape",
|
||||
"type": "combo",
|
||||
"autoSuggestions": true,
|
||||
"customValues": false,
|
||||
"options": [
|
||||
"flat",
|
||||
"gabled",
|
||||
"skillion",
|
||||
"hipped",
|
||||
"half-hipped",
|
||||
"mansard",
|
||||
"gambrel",
|
||||
"pyramidal",
|
||||
"cone",
|
||||
"dome",
|
||||
"onion",
|
||||
"round"
|
||||
]
|
||||
},
|
||||
"roof/height": {
|
||||
"key": "roof:height",
|
||||
"minValue": 0,
|
||||
"type": "number"
|
||||
},
|
||||
"roof/colour": {
|
||||
"key": "roof:colour",
|
||||
"type": "colour"
|
||||
@@ -5267,6 +5296,14 @@
|
||||
"4"
|
||||
]
|
||||
},
|
||||
"model/wikidata": {
|
||||
"key": "model:wikidata",
|
||||
"keys": [
|
||||
"model:wikidata",
|
||||
"model:wikipedia"
|
||||
],
|
||||
"type": "wikidata"
|
||||
},
|
||||
"memorial/addr_subtags": {
|
||||
"type": "address",
|
||||
"key": "memorial:addr",
|
||||
@@ -5303,6 +5340,14 @@
|
||||
"key": "maxspeed:advisory",
|
||||
"type": "roadspeed"
|
||||
},
|
||||
"manufacturer/wikidata": {
|
||||
"key": "manufacturer:wikidata",
|
||||
"keys": [
|
||||
"manufacturer:wikidata",
|
||||
"manufacturer:wikipedia"
|
||||
],
|
||||
"type": "wikidata"
|
||||
},
|
||||
"lift_gate/type": {
|
||||
"key": "lift_gate:type",
|
||||
"type": "combo",
|
||||
@@ -6078,8 +6123,21 @@
|
||||
"key": "camera:mount",
|
||||
"type": "combo"
|
||||
},
|
||||
"camera/manufacturer": {
|
||||
"key": "manufacturer",
|
||||
"type": "combo",
|
||||
"options": [
|
||||
"Flock Safety",
|
||||
"Motorola Solutions",
|
||||
"Genetec",
|
||||
"Leonardo",
|
||||
"Neology, Inc.",
|
||||
"Insight"
|
||||
],
|
||||
"default": "Flock Safety"
|
||||
},
|
||||
"camera/direction": {
|
||||
"key": "camera:direction",
|
||||
"key": "direction",
|
||||
"type": "number",
|
||||
"increment": 5
|
||||
},
|
||||
@@ -6164,6 +6222,19 @@
|
||||
"key": "area:highway",
|
||||
"type": "typeCombo"
|
||||
},
|
||||
"aircraft/type": {
|
||||
"key": "aircraft:type",
|
||||
"type": "semiCombo",
|
||||
"options": [
|
||||
"military",
|
||||
"helicopter",
|
||||
"airliner",
|
||||
"jet",
|
||||
"fixed_wing",
|
||||
"cargo",
|
||||
"glider"
|
||||
]
|
||||
},
|
||||
"aerialway/occupancy": {
|
||||
"key": "aerialway:occupancy",
|
||||
"type": "number",
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+71
-4
@@ -355,7 +355,9 @@
|
||||
"height",
|
||||
"building/material",
|
||||
"building/colour",
|
||||
"roof/colour"
|
||||
"roof/colour",
|
||||
"roof/height",
|
||||
"roof/shape"
|
||||
],
|
||||
"moreFields": [
|
||||
"layer"
|
||||
@@ -389,6 +391,8 @@
|
||||
"not/name",
|
||||
"operator",
|
||||
"roof/colour",
|
||||
"roof/shape",
|
||||
"roof/height",
|
||||
"smoking",
|
||||
"wheelchair"
|
||||
],
|
||||
@@ -9567,7 +9571,8 @@
|
||||
"species/wikidata",
|
||||
"taxon",
|
||||
"diameter_crown",
|
||||
"diameter"
|
||||
"diameter",
|
||||
"ref"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
@@ -11815,7 +11820,8 @@
|
||||
"icon": "maki-observation-tower",
|
||||
"moreFields": [
|
||||
"{man_made/tower}",
|
||||
"opening_hours"
|
||||
"opening_hours",
|
||||
"direction"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
@@ -12001,6 +12007,26 @@
|
||||
"surveillance:type": "camera"
|
||||
}
|
||||
},
|
||||
"man_made/surveillance/alpr": {
|
||||
"icon": "temaki-security_camera",
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex"
|
||||
],
|
||||
"fields": [
|
||||
"surveillance",
|
||||
"surveillance/type",
|
||||
"camera/type",
|
||||
"camera/direction",
|
||||
"camera/manufacturer",
|
||||
"surveillance/zone"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "surveillance",
|
||||
"surveillance:type": "ALPR",
|
||||
"camera:mount": "fixed"
|
||||
}
|
||||
},
|
||||
"man_made/street_cabinet/waste": {
|
||||
"icon": "maki-recycling",
|
||||
"geometry": [
|
||||
@@ -16266,6 +16292,29 @@
|
||||
"historic": "archaeological_site"
|
||||
}
|
||||
},
|
||||
"historic/aircraft": {
|
||||
"icon": "roentgen-plane",
|
||||
"fields": [
|
||||
"name",
|
||||
"start_date",
|
||||
"aircraft/type",
|
||||
"model"
|
||||
],
|
||||
"moreFields": [
|
||||
"ref",
|
||||
"model/wikidata",
|
||||
"manufacturer",
|
||||
"manufacturer/wikidata",
|
||||
"description"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"historic": "aircraft"
|
||||
}
|
||||
},
|
||||
"historic/memorial/stolperstein-EU": {
|
||||
"icon": "temaki-plaque",
|
||||
"fields": [
|
||||
@@ -21040,7 +21089,9 @@
|
||||
"gnis/feature_id-US",
|
||||
"not/name",
|
||||
"operator",
|
||||
"roof/colour"
|
||||
"roof/colour",
|
||||
"roof/shape",
|
||||
"roof/height"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
@@ -25162,6 +25213,7 @@
|
||||
"moreFields": [
|
||||
"bottle",
|
||||
"covered",
|
||||
"dog_check",
|
||||
"indoor",
|
||||
"level",
|
||||
"lit"
|
||||
@@ -29060,6 +29112,21 @@
|
||||
"value": "clinic"
|
||||
}
|
||||
},
|
||||
"amenity/cafe/teahouse": {
|
||||
"icon": "maki-cafe",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "cafe",
|
||||
"cuisine": "tea"
|
||||
},
|
||||
"reference": {
|
||||
"key": "amenity",
|
||||
"value": "cafe"
|
||||
}
|
||||
},
|
||||
"amenity/cafe/coffee_shop": {
|
||||
"icon": "temaki-hot_drink_cup",
|
||||
"geometry": [
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+180
-8
@@ -6636,6 +6636,15 @@
|
||||
],
|
||||
"icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"
|
||||
},
|
||||
{
|
||||
"key": "camera:mount",
|
||||
"value": "fixed",
|
||||
"description": "🄿 License Plate Reader",
|
||||
"object_types": [
|
||||
"node"
|
||||
],
|
||||
"icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"
|
||||
},
|
||||
{
|
||||
"key": "street_cabinet",
|
||||
"value": "waste",
|
||||
@@ -8709,6 +8718,15 @@
|
||||
],
|
||||
"icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"value": "aircraft",
|
||||
"description": "🄿 Historic Aircraft",
|
||||
"object_types": [
|
||||
"node",
|
||||
"area"
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"value": "stolperstein",
|
||||
@@ -14748,6 +14766,16 @@
|
||||
],
|
||||
"icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "tea",
|
||||
"description": "🄿 Teahouse, 🄵🅅 Cuisines: Tea",
|
||||
"object_types": [
|
||||
"node",
|
||||
"area"
|
||||
],
|
||||
"icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe.svg"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "coffee_shop",
|
||||
@@ -18921,7 +18949,7 @@
|
||||
},
|
||||
{
|
||||
"key": "dog",
|
||||
"description": "🄵 Dogs"
|
||||
"description": "🄵 Dogs, 🄵 Suitable For Dogs"
|
||||
},
|
||||
{
|
||||
"key": "dog",
|
||||
@@ -19327,11 +19355,6 @@
|
||||
"value": "friture",
|
||||
"description": "🄵🅅 Cuisines: Friterie"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "tea",
|
||||
"description": "🄵🅅 Cuisines: Tea"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "grill",
|
||||
@@ -21571,6 +21594,74 @@
|
||||
"key": "rotor:diameter",
|
||||
"description": "🄵 Rotor Diameter (Meters)"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"description": "🄵 Roof Shape"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "flat",
|
||||
"description": "🄵🅅 Roof Shape: Flat"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "gabled",
|
||||
"description": "🄵🅅 Roof Shape: Gabled"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "skillion",
|
||||
"description": "🄵🅅 Roof Shape: Skillion"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "hipped",
|
||||
"description": "🄵🅅 Roof Shape: Hipped"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "half-hipped",
|
||||
"description": "🄵🅅 Roof Shape: Half-Hipped"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "mansard",
|
||||
"description": "🄵🅅 Roof Shape: Mansard"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "gambrel",
|
||||
"description": "🄵🅅 Roof Shape: Gambrel"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "pyramidal",
|
||||
"description": "🄵🅅 Roof Shape: Pyramidal"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "cone",
|
||||
"description": "🄵🅅 Roof Shape: Cone"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "dome",
|
||||
"description": "🄵🅅 Roof Shape: Dome"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "onion",
|
||||
"description": "🄵🅅 Roof Shape: Onion"
|
||||
},
|
||||
{
|
||||
"key": "roof:shape",
|
||||
"value": "round",
|
||||
"description": "🄵🅅 Roof Shape: Round"
|
||||
},
|
||||
{
|
||||
"key": "roof:height",
|
||||
"description": "🄵 Roof Height (Meters)"
|
||||
},
|
||||
{
|
||||
"key": "roof:colour",
|
||||
"description": "🄵 Roof Color"
|
||||
@@ -22159,6 +22250,14 @@
|
||||
"value": "4",
|
||||
"description": "🄵🅅 IMBA Trail Difficulty: ◆◆ Extremely Difficult (double black diamond)"
|
||||
},
|
||||
{
|
||||
"key": "model:wikidata",
|
||||
"description": "🄵 Model Wikidata"
|
||||
},
|
||||
{
|
||||
"key": "model:wikipedia",
|
||||
"description": "🄵 Model Wikidata"
|
||||
},
|
||||
{
|
||||
"key": "memorial:addr:city",
|
||||
"description": "🄵 Nearest Building Address"
|
||||
@@ -22199,6 +22298,14 @@
|
||||
"key": "maxspeed:advisory",
|
||||
"description": "🄵 Advisory Speed Limit"
|
||||
},
|
||||
{
|
||||
"key": "manufacturer:wikidata",
|
||||
"description": "🄵 Manufacturer Wikidata"
|
||||
},
|
||||
{
|
||||
"key": "manufacturer:wikipedia",
|
||||
"description": "🄵 Manufacturer Wikidata"
|
||||
},
|
||||
{
|
||||
"key": "lift_gate:type",
|
||||
"description": "🄵 Type"
|
||||
@@ -23112,8 +23219,34 @@
|
||||
"description": "🄵 Camera Mount"
|
||||
},
|
||||
{
|
||||
"key": "camera:direction",
|
||||
"description": "🄵 Direction (Degrees Clockwise)"
|
||||
"key": "manufacturer",
|
||||
"value": "Flock Safety",
|
||||
"description": "🄵🅅 Manufacturer: `Flock Safety`"
|
||||
},
|
||||
{
|
||||
"key": "manufacturer",
|
||||
"value": "Motorola Solutions",
|
||||
"description": "🄵🅅 Manufacturer: `Motorola Solutions`"
|
||||
},
|
||||
{
|
||||
"key": "manufacturer",
|
||||
"value": "Genetec",
|
||||
"description": "🄵🅅 Manufacturer: `Genetec`"
|
||||
},
|
||||
{
|
||||
"key": "manufacturer",
|
||||
"value": "Leonardo",
|
||||
"description": "🄵🅅 Manufacturer: `Leonardo`"
|
||||
},
|
||||
{
|
||||
"key": "manufacturer",
|
||||
"value": "Neology, Inc.",
|
||||
"description": "🄵🅅 Manufacturer: `Neology, Inc.`"
|
||||
},
|
||||
{
|
||||
"key": "manufacturer",
|
||||
"value": "Insight",
|
||||
"description": "🄵🅅 Manufacturer: `Insight`"
|
||||
},
|
||||
{
|
||||
"key": "building:prefabricated",
|
||||
@@ -23180,6 +23313,45 @@
|
||||
"key": "bath:open_air",
|
||||
"description": "🄵 Open Air"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"description": "🄵 Type"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"value": "military",
|
||||
"description": "🄵🅅 Type: Military"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"value": "helicopter",
|
||||
"description": "🄵🅅 Type: Helicopter"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"value": "airliner",
|
||||
"description": "🄵🅅 Type: Airliner"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"value": "jet",
|
||||
"description": "🄵🅅 Type: Jet"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"value": "fixed_wing",
|
||||
"description": "🄵🅅 Type: Fixed Wing"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"value": "cargo",
|
||||
"description": "🄵🅅 Type: Cargo"
|
||||
},
|
||||
{
|
||||
"key": "aircraft:type",
|
||||
"value": "glider",
|
||||
"description": "🄵🅅 Type: Glider"
|
||||
},
|
||||
{
|
||||
"key": "aerialway:occupancy",
|
||||
"description": "🄵 Occupancy"
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+60
-5
@@ -2220,6 +2220,9 @@
|
||||
"label": "Door"
|
||||
},
|
||||
"dog_yes": {},
|
||||
"dog_check": {
|
||||
"label": "Suitable For Dogs"
|
||||
},
|
||||
"dog": {
|
||||
"label": "Dogs",
|
||||
"terms": "animals,pets",
|
||||
@@ -3716,6 +3719,26 @@
|
||||
"rotor/diameter": {
|
||||
"label": "Rotor Diameter (Meters)"
|
||||
},
|
||||
"roof/shape": {
|
||||
"label": "Roof Shape",
|
||||
"options": {
|
||||
"flat": "Flat",
|
||||
"gabled": "Gabled",
|
||||
"skillion": "Skillion",
|
||||
"hipped": "Hipped",
|
||||
"half-hipped": "Half-Hipped",
|
||||
"mansard": "Mansard",
|
||||
"gambrel": "Gambrel",
|
||||
"pyramidal": "Pyramidal",
|
||||
"cone": "Cone",
|
||||
"dome": "Dome",
|
||||
"onion": "Onion",
|
||||
"round": "Round"
|
||||
}
|
||||
},
|
||||
"roof/height": {
|
||||
"label": "Roof Height (Meters)"
|
||||
},
|
||||
"roof/colour": {
|
||||
"label": "Roof Color"
|
||||
},
|
||||
@@ -4023,6 +4046,9 @@
|
||||
"4": "◆◆ Extremely Difficult (double black diamond)"
|
||||
}
|
||||
},
|
||||
"model/wikidata": {
|
||||
"label": "Model Wikidata"
|
||||
},
|
||||
"memorial/addr_subtags": {},
|
||||
"memorial/addr": {
|
||||
"label": "Nearest Building Address"
|
||||
@@ -4038,6 +4064,9 @@
|
||||
"label": "Advisory Speed Limit",
|
||||
"placeholder": "40, 50, 60..."
|
||||
},
|
||||
"manufacturer/wikidata": {
|
||||
"label": "Manufacturer Wikidata"
|
||||
},
|
||||
"lift_gate/type": {
|
||||
"label": "Type",
|
||||
"options": {
|
||||
@@ -4452,6 +4481,9 @@
|
||||
"camera/mount": {
|
||||
"label": "Camera Mount"
|
||||
},
|
||||
"camera/manufacturer": {
|
||||
"label": "Manufacturer"
|
||||
},
|
||||
"camera/direction": {
|
||||
"label": "Direction (Degrees Clockwise)",
|
||||
"placeholder": "45, 90, 180, 270"
|
||||
@@ -4509,6 +4541,18 @@
|
||||
"area/highway": {
|
||||
"label": "Type"
|
||||
},
|
||||
"aircraft/type": {
|
||||
"label": "Type",
|
||||
"options": {
|
||||
"military": "Military",
|
||||
"helicopter": "Helicopter",
|
||||
"airliner": "Airliner",
|
||||
"jet": "Jet",
|
||||
"fixed_wing": "Fixed Wing",
|
||||
"cargo": "Cargo",
|
||||
"glider": "Glider"
|
||||
}
|
||||
},
|
||||
"aerialway/occupancy": {
|
||||
"label": "Occupancy",
|
||||
"placeholder": "2, 4, 8..."
|
||||
@@ -5236,7 +5280,7 @@
|
||||
"shop/stationery": {
|
||||
"name": "Stationery Store",
|
||||
"aliases": "Office Supply Store",
|
||||
"terms": "card,paper"
|
||||
"terms": "card,paper,stationary"
|
||||
},
|
||||
"shop/sports": {
|
||||
"name": "Sporting Goods Store",
|
||||
@@ -5653,7 +5697,7 @@
|
||||
},
|
||||
"shop/clothes": {
|
||||
"name": "Clothing Store",
|
||||
"terms": "blouses,boutique,bras,clothes,dresses,fashion,outfits,pants,shirts,shorts,skirts,slacks,socks,suits,underwear"
|
||||
"terms": "apparel,blouses,boutique,bras,clothes,dresses,fashion,outfits,pants,shirts,shorts,skirts,slacks,socks,suits,underwear"
|
||||
},
|
||||
"shop/chocolate": {
|
||||
"name": "Chocolate Store",
|
||||
@@ -7305,6 +7349,9 @@
|
||||
"name": "Surveillance Camera",
|
||||
"terms": "anpr,alpr,camera,car plate recognition,cctv,guard,license plate recognition,monitoring,number plate recognition,security,video,webcam"
|
||||
},
|
||||
"man_made/surveillance/alpr": {
|
||||
"name": "License Plate Reader"
|
||||
},
|
||||
"man_made/street_cabinet/waste": {
|
||||
"name": "Private Waste Collection Cabinet"
|
||||
},
|
||||
@@ -8173,6 +8220,10 @@
|
||||
"historic/archaeological_site": {
|
||||
"name": "Archaeological Site"
|
||||
},
|
||||
"historic/aircraft": {
|
||||
"name": "Historic Aircraft",
|
||||
"terms": "gate guardian"
|
||||
},
|
||||
"historic/memorial/stolperstein-EU": {
|
||||
"name": "Memorial Plaque Stolperstein"
|
||||
},
|
||||
@@ -9587,7 +9638,7 @@
|
||||
"amenity/toilets": {
|
||||
"name": "Restroom",
|
||||
"aliases": "Toilets\nBathroom\nLavatory\nWater Closet",
|
||||
"terms": "outhouse,privy,head,latrine,wc,w.c."
|
||||
"terms": "outhouse,privy,head,latrine,public toilet,public restroom,wc,w.c."
|
||||
},
|
||||
"amenity/ticket_validator": {
|
||||
"name": "Ticket Validator",
|
||||
@@ -9600,7 +9651,7 @@
|
||||
},
|
||||
"amenity/telephone": {
|
||||
"name": "Telephone",
|
||||
"terms": "payphone,pay phone,phone booth,phone"
|
||||
"terms": "payphone,pay phone,phone booth,phone,public phone,public telephone"
|
||||
},
|
||||
"amenity/taxi": {
|
||||
"name": "Taxi Stand",
|
||||
@@ -9621,7 +9672,7 @@
|
||||
},
|
||||
"amenity/social_facility": {
|
||||
"name": "Social Facility",
|
||||
"terms": "community,nonprofit,social services"
|
||||
"terms": "community,group home,halfway house,nonprofit,social services"
|
||||
},
|
||||
"amenity/social_centre": {
|
||||
"name": "Social Center",
|
||||
@@ -10709,6 +10760,10 @@
|
||||
"name": "Abortion Clinic",
|
||||
"terms": "women's healthcare"
|
||||
},
|
||||
"amenity/cafe/teahouse": {
|
||||
"name": "Teahouse",
|
||||
"terms": "tea house,tearoom,tea room,tea,tea drink,black tea,green tea,yellow tea,white tea,oolong tea,hot drinks"
|
||||
},
|
||||
"amenity/cafe/coffee_shop": {
|
||||
"name": "Coffeehouse",
|
||||
"terms": "americano,brew,cafe,café,caffe,caffè,cappuccino,cocoa,coffee shop,drip,espresso,hot drinks,latte,macchiato,tea"
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+37
-12
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": 4,
|
||||
"terraform_version": "1.9.2",
|
||||
"serial": 25,
|
||||
"serial": 29,
|
||||
"lineage": "cf04ad7f-ea29-d2e3-80c6-14fc4ab44b37",
|
||||
"outputs": {},
|
||||
"resources": [
|
||||
@@ -55,7 +55,7 @@
|
||||
"logging": [],
|
||||
"object_lock_configuration": [],
|
||||
"object_lock_enabled": false,
|
||||
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me/*\"},{\"Action\":\"s3:GetBucketCors\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me\"}],\"Version\":\"2012-10-17\"}",
|
||||
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me/*\"}],\"Version\":\"2012-10-17\"}",
|
||||
"region": "us-east-1",
|
||||
"replication_configuration": [],
|
||||
"request_payer": "BucketOwner",
|
||||
@@ -89,14 +89,7 @@
|
||||
"mfa_delete": false
|
||||
}
|
||||
],
|
||||
"website": [
|
||||
{
|
||||
"error_document": "error.html",
|
||||
"index_document": "index.html",
|
||||
"redirect_all_requests_to": "",
|
||||
"routing_rules": ""
|
||||
}
|
||||
],
|
||||
"website": [],
|
||||
"website_domain": "s3-website-us-east-1.amazonaws.com",
|
||||
"website_endpoint": "id-tagging-schema.deflock.me.s3-website-us-east-1.amazonaws.com"
|
||||
},
|
||||
@@ -189,6 +182,38 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"mode": "managed",
|
||||
"type": "aws_s3_bucket_website_configuration",
|
||||
"name": "static_website_website_configuration",
|
||||
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||
"instances": [
|
||||
{
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"bucket": "id-tagging-schema.deflock.me",
|
||||
"error_document": [],
|
||||
"expected_bucket_owner": "",
|
||||
"id": "id-tagging-schema.deflock.me",
|
||||
"index_document": [
|
||||
{
|
||||
"suffix": "index.html"
|
||||
}
|
||||
],
|
||||
"redirect_all_requests_to": [],
|
||||
"routing_rule": [],
|
||||
"routing_rules": "",
|
||||
"website_domain": "s3-website-us-east-1.amazonaws.com",
|
||||
"website_endpoint": "id-tagging-schema.deflock.me.s3-website-us-east-1.amazonaws.com"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"private": "bnVsbA==",
|
||||
"dependencies": [
|
||||
"aws_s3_bucket.static_website"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"mode": "managed",
|
||||
"type": "null_resource",
|
||||
@@ -198,9 +223,9 @@
|
||||
{
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"id": "1203062013005394770",
|
||||
"id": "6496238540669436752",
|
||||
"triggers": {
|
||||
"always_run": "2025-06-12T22:41:29Z"
|
||||
"always_run": "2025-06-19T22:32:18Z"
|
||||
}
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": 4,
|
||||
"terraform_version": "1.9.2",
|
||||
"serial": 20,
|
||||
"serial": 25,
|
||||
"lineage": "cf04ad7f-ea29-d2e3-80c6-14fc4ab44b37",
|
||||
"outputs": {},
|
||||
"resources": [
|
||||
@@ -21,7 +21,23 @@
|
||||
"bucket_domain_name": "id-tagging-schema.deflock.me.s3.amazonaws.com",
|
||||
"bucket_prefix": "",
|
||||
"bucket_regional_domain_name": "id-tagging-schema.deflock.me.s3.us-east-1.amazonaws.com",
|
||||
"cors_rule": [],
|
||||
"cors_rule": [
|
||||
{
|
||||
"allowed_headers": [
|
||||
"*"
|
||||
],
|
||||
"allowed_methods": [
|
||||
"GET"
|
||||
],
|
||||
"allowed_origins": [
|
||||
"*"
|
||||
],
|
||||
"expose_headers": [
|
||||
"ETag"
|
||||
],
|
||||
"max_age_seconds": 3000
|
||||
}
|
||||
],
|
||||
"force_destroy": false,
|
||||
"grant": [
|
||||
{
|
||||
@@ -39,7 +55,7 @@
|
||||
"logging": [],
|
||||
"object_lock_configuration": [],
|
||||
"object_lock_enabled": false,
|
||||
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me/*\"}],\"Version\":\"2012-10-17\"}",
|
||||
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me/*\"},{\"Action\":\"s3:GetBucketCors\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me\"}],\"Version\":\"2012-10-17\"}",
|
||||
"region": "us-east-1",
|
||||
"replication_configuration": [],
|
||||
"request_payer": "BucketOwner",
|
||||
@@ -139,7 +155,7 @@
|
||||
"attributes": {
|
||||
"bucket": "id-tagging-schema.deflock.me",
|
||||
"id": "id-tagging-schema.deflock.me",
|
||||
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me/*\"},{\"Action\":\"s3:GetBucketCors\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me\"}],\"Version\":\"2012-10-17\"}"
|
||||
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Resource\":\"arn:aws:s3:::id-tagging-schema.deflock.me/*\"}],\"Version\":\"2012-10-17\"}"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"private": "bnVsbA==",
|
||||
@@ -173,42 +189,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"mode": "managed",
|
||||
"type": "aws_s3_bucket_website_configuration",
|
||||
"name": "static_website_config",
|
||||
"provider": "provider[\"registry.terraform.io/hashicorp/aws\"]",
|
||||
"instances": [
|
||||
{
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"bucket": "id-tagging-schema.deflock.me",
|
||||
"error_document": [
|
||||
{
|
||||
"key": "error.html"
|
||||
}
|
||||
],
|
||||
"expected_bucket_owner": "",
|
||||
"id": "id-tagging-schema.deflock.me",
|
||||
"index_document": [
|
||||
{
|
||||
"suffix": "index.html"
|
||||
}
|
||||
],
|
||||
"redirect_all_requests_to": [],
|
||||
"routing_rule": [],
|
||||
"routing_rules": "",
|
||||
"website_domain": "s3-website-us-east-1.amazonaws.com",
|
||||
"website_endpoint": "id-tagging-schema.deflock.me.s3-website-us-east-1.amazonaws.com"
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
"private": "bnVsbA==",
|
||||
"dependencies": [
|
||||
"aws_s3_bucket.static_website"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"mode": "managed",
|
||||
"type": "null_resource",
|
||||
@@ -218,9 +198,9 @@
|
||||
{
|
||||
"schema_version": 0,
|
||||
"attributes": {
|
||||
"id": "4758897972960695945",
|
||||
"id": "1203062013005394770",
|
||||
"triggers": {
|
||||
"always_run": "2025-06-12T22:30:50Z"
|
||||
"always_run": "2025-06-12T22:41:29Z"
|
||||
}
|
||||
},
|
||||
"sensitive_attributes": [],
|
||||
|
||||
Reference in New Issue
Block a user