Docs API schemas

neoserver 0.1.2

GeoJSONFeature

GeoJSONFeature schema for the neoserver management API.

← All schemas

object
geometry object required
type string
id string
properties object required

Additional properties: values must match the following schema

one of

Must match exactly one schema

Schema 1

string

Schema 2

number

Schema 3

boolean

Schema 4

array of string
type string 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"
}

Search documentation

Type to search guides and reference pages.