object
-
geometryobject required -
-
typestring
-
-
idstring -
propertiesobject required -
Additional properties: values must match the following schema
one ofMust match exactly one schema
Schema 1
stringSchema 2
numberSchema 3
booleanSchema 4
array of string -
typestring required -
- Allowed values
-
["Feature"]
OpenAPI schema definition
{
"properties": {
"geometry": {
"properties": {
"type": {
"type": "string"
}
},
"type": "object"
},
"id": {
"type": "string"
},
"properties": {
"additionalProperties": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"type": "object"
},
"type": {
"enum": [
"Feature"
],
"type": "string"
}
},
"required": [
"type",
"geometry",
"properties"
],
"type": "object"
}