Docs API schemas

neoserver 0.1.2

TileCacheJobRequest

TileCacheJobRequest schema for the neoserver management API.

← All schemas

object
all_resources boolean
bounds object
bbox array of number required
Minimum items
4
Maximum items
4
crs string required
format string
max_zoom integer
min_zoom integer
operation string required
Allowed values
["seed","reseed","truncate"]
resource string
style string
tile_matrix_set string
tile_type string
Allowed values
["map","vector"]
OpenAPI schema definition
{
  "properties": {
    "all_resources": {
      "type": "boolean"
    },
    "bounds": {
      "properties": {
        "bbox": {
          "items": {
            "type": "number"
          },
          "maxItems": 4,
          "minItems": 4,
          "type": "array"
        },
        "crs": {
          "type": "string"
        }
      },
      "required": [
        "bbox",
        "crs"
      ],
      "type": "object"
    },
    "format": {
      "type": "string"
    },
    "max_zoom": {
      "type": "integer"
    },
    "min_zoom": {
      "type": "integer"
    },
    "operation": {
      "enum": [
        "seed",
        "reseed",
        "truncate"
      ],
      "type": "string"
    },
    "resource": {
      "type": "string"
    },
    "style": {
      "type": "string"
    },
    "tile_matrix_set": {
      "type": "string"
    },
    "tile_type": {
      "enum": [
        "map",
        "vector"
      ],
      "type": "string"
    }
  },
  "required": [
    "operation"
  ],
  "type": "object"
}

Search documentation

Type to search guides and reference pages.