Schema Structure
- type (
string) - enum: map - default: map (required) - data (
object- ref: location) (required)
We've updated our API endpoints to match what we use in our application. Some endpoints have been deprecated. See our Deprecated Endpoints page for migration details.
Validate map category
string) - enum: map - default: map (required)object - ref: location) (required){
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Map category schema",
"description": "Validate map category",
"examples": [],
"required": [
"type",
"data"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"map"
],
"default": "map"
},
"data": {
"$ref": "components/_base_map.json#properties/location"
}
}
}
Was this page helpful?