addedOutput schema / properties / geojson
Added value: +{
+ "additionalProperties": true,
+ "properties": {
+ "features": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "geometry": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {
+ "coordinates": {},
+ "geometries": {
+ "items": {},
+ "type": "array"
+ },
+ "type": {
+ "anyOf": [
+ {
+ "enum": [
+ "Point",
+ "LineString",
+ "Polygon",
+ "MultiPoint",
+ "MultiLineString",
+ "MultiPolygon",
+ "GeometryCollection"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ }
+ },
+ "required": [
+ "type"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "type": [
+ "string",
+ "number"
+ ]
+ },
+ "properties": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "type": {
+ "const": "Feature",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "geometry"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "type": {
+ "const": "FeatureCollection",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "features"
+ ],
+ "type": "object"
+}