Skip to content

Instantly share code, notes, and snippets.

@vharmain
Last active July 11, 2024 09:59
Show Gist options
  • Save vharmain/d531983de8b935dcff838b1d5403a5f1 to your computer and use it in GitHub Desktop.
Save vharmain/d531983de8b935dcff838b1d5403a5f1 to your computer and use it in GitHub Desktop.
Lipas Location of Interest schema
{
"anyOf" : [ {
"title" : "Vaaranpaikka",
"description" : "water-conditions > hazard",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "water-conditions" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "hazard" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Rantautumispaikka",
"description" : "water-conditions > landing-spot",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "water-conditions" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "landing-spot" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Koski",
"description" : "water-conditions > rapid",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "water-conditions" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "rapid" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Avoin selkä",
"description" : "water-conditions > open-water",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "water-conditions" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "open-water" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Veneväylä",
"description" : "water-conditions > boat-lane",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "water-conditions" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "boat-lane" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Koskimelontakohde",
"description" : "water-conditions > whitewater-canoeing",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "water-conditions" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "whitewater-canoeing" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Yhteysalus",
"description" : "outdoor-recreation-facilities > passenger-ferry",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "passenger-ferry" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Koirien uintipaikka",
"description" : "outdoor-recreation-facilities > dog-swimming-area",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "dog-swimming-area" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Sauna",
"description" : "outdoor-recreation-facilities > sauna",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "sauna" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Kiinnityspoiju",
"description" : "outdoor-recreation-facilities > mooring-buoy",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "mooring-buoy" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Rakennus",
"description" : "outdoor-recreation-facilities > building",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "building" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Kaivo",
"description" : "outdoor-recreation-facilities > well",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "well" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Keittokatos",
"description" : "outdoor-recreation-facilities > cooking-shelter",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "cooking-shelter" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"use-structure-during-fire-warning" : {
"type" : "boolean"
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Katos",
"description" : "outdoor-recreation-facilities > canopy",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "canopy" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Historiallinen rakennus",
"description" : "outdoor-recreation-facilities > historical-building",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "historical-building" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Vanha puolustusrakennus",
"description" : "outdoor-recreation-facilities > old-defense-building",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "old-defense-building" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Veneluiska",
"description" : "outdoor-recreation-facilities > boat-ramp",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "boat-ramp" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Melontalaituri",
"description" : "outdoor-recreation-facilities > canoe-dock",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "canoe-dock" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Septitankin tyhjennys",
"description" : "outdoor-recreation-facilities > septic-tank-emptying",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "septic-tank-emptying" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Jätepiste",
"description" : "outdoor-recreation-facilities > waste-disposal-point",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "waste-disposal-point" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Tankkauspiste",
"description" : "outdoor-recreation-facilities > refueling-point",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "refueling-point" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Tulentekopaikka",
"description" : "outdoor-recreation-facilities > fire-pit",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "fire-pit" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"use-structure-during-fire-warning" : {
"type" : "boolean"
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Vesipiste",
"description" : "outdoor-recreation-facilities > water-source",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "water-source" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Infotaulu",
"description" : "outdoor-recreation-facilities > information-board",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "information-board" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Varaustulipaikka",
"description" : "outdoor-recreation-facilities > reservation-campsite",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "reservation-campsite" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"use-structure-during-fire-warning" : {
"type" : "boolean"
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Uimalaituri",
"description" : "outdoor-recreation-facilities > swimming-pier",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "swimming-pier" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Kalastuslaituri",
"description" : "outdoor-recreation-facilities > fishing-pier",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "fishing-pier" ]
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Soutuvenevuokraus",
"description" : "outdoor-recreation-facilities > rowboat-rental",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "rowboat-rental" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Kuivakäymälä",
"description" : "outdoor-recreation-facilities > dry-toilet",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "dry-toilet" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Vuokramajoitus",
"description" : "outdoor-recreation-facilities > accommodation-rental",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "accommodation-rental" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Silta",
"description" : "outdoor-recreation-facilities > bridge",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "bridge" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Portaat",
"description" : "outdoor-recreation-facilities > stairs",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "stairs" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Pukukoppi",
"description" : "outdoor-recreation-facilities > changing-room",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "changing-room" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Puuvaja",
"description" : "outdoor-recreation-facilities > woodshed",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "woodshed" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Näköalatasanne",
"description" : "outdoor-recreation-facilities > viewing-platform",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "viewing-platform" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Vuokrasauna",
"description" : "outdoor-recreation-facilities > sauna-rental",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "sauna-rental" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Kapulalossi",
"description" : "outdoor-recreation-facilities > chain-ferry",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "chain-ferry" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Näköalapaikka",
"description" : "outdoor-recreation-facilities > viewpoint",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "viewpoint" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Muistomerkki",
"description" : "outdoor-recreation-facilities > monument",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "monument" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Vierasvenelaituri",
"description" : "outdoor-recreation-facilities > guest-boat-dock",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "guest-boat-dock" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Taukopaikka",
"description" : "outdoor-recreation-facilities > rest-area",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "rest-area" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Lossi",
"description" : "outdoor-recreation-facilities > ferry",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "ferry" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Telttapaikka",
"description" : "outdoor-recreation-facilities > tent-site",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "tent-site" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Kiinnitysrengas",
"description" : "outdoor-recreation-facilities > mooring-ring",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "mooring-ring" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Historiallinen rakennelma",
"description" : "outdoor-recreation-facilities > historical-structure",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "historical-structure" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "WC",
"description" : "outdoor-recreation-facilities > wc",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "wc" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Kierrätyspiste",
"description" : "outdoor-recreation-facilities > recycling-point",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "recycling-point" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Vuokratila",
"description" : "outdoor-recreation-facilities > space-rental",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "space-rental" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Pysäköintipaikka",
"description" : "outdoor-recreation-facilities > parking-spot",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "parking-spot" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
},
"accessible?" : {
"type" : "boolean"
},
"accessibility" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Venelaituri",
"description" : "outdoor-recreation-facilities > boat-dock",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "outdoor-recreation-facilities" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "boat-dock" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Geokohde",
"description" : "natural-attractions-and-geo-objects > geo-object",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "natural-attractions-and-geo-objects" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "geo-object" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Luonnonnähtävyys",
"description" : "natural-attractions-and-geo-objects > natural-attraction",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "natural-attractions-and-geo-objects" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "natural-attraction" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Luonnonsuojelualue",
"description" : "protected-areas > nature-reserve",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "protected-areas" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "nature-reserve" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
}, {
"title" : "Muu alue, jolla on liikkumisrajoituksia",
"description" : "protected-areas > other-area-with-movement-restrictions",
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"event-date" : {
"type" : "string"
},
"created-at" : {
"type" : "string"
},
"geometries" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "FeatureCollection" ]
},
"features" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : [ "Feature" ]
},
"properties" : {
"type" : "object",
"properties" : { }
},
"geometry" : {
"type" : "object",
"properties" : {
"type" : {
"type" : "string",
"enum" : [ "Point" ]
},
"coordinates" : {
"anyOf" : [ {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
}, {
"type" : "array",
"items" : [ {
"type" : "number"
}, {
"type" : "number"
}, {
"type" : "number"
} ],
"additionalItems" : false
} ]
}
},
"required" : [ "type", "coordinates" ]
}
},
"required" : [ "type", "geometry" ]
}
}
},
"required" : [ "type", "features" ]
},
"status" : {
"type" : "string",
"enum" : [ "planning", "planned", "active", "out-of-service-temporarily", "out-of-service-permanently", "incorrect-data" ]
},
"loi-category" : {
"type" : "string",
"enum" : [ "protected-areas" ]
},
"loi-type" : {
"type" : "string",
"enum" : [ "other-area-with-movement-restrictions" ]
},
"name" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"images" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"url" : {
"type" : "string"
},
"description" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"alt-text" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
},
"copyright" : {
"type" : "object",
"properties" : {
"fi" : {
"type" : "string"
},
"se" : {
"type" : "string"
},
"en" : {
"type" : "string"
}
}
}
},
"required" : [ "url" ]
}
}
},
"required" : [ "id", "event-date", "created-at", "geometries", "status", "loi-category", "loi-type" ]
} ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment