Docs API schemas

neoserver 0.1.2

LayerGroup

LayerGroup schema for the neoserver management API.

← All schemas

object
allowed_roles array of string
default_style string
description string
enabled boolean
id string
members array of LayerGroupMember ↗ required
native_extent object
max_x number required
max_y number required
min_x number required
min_y number required
srid integer required
stale boolean
public boolean
public_id string required
styles array of string
tile_cache_generation integer · int64
tile_cache_quota_bytes integer · int64
title string
workspace_id string
OpenAPI schema definition
{
  "properties": {
    "allowed_roles": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "default_style": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "id": {
      "type": "string"
    },
    "members": {
      "items": {
        "$ref": "#/components/schemas/LayerGroupMember"
      },
      "type": "array"
    },
    "native_extent": {
      "properties": {
        "max_x": {
          "type": "number"
        },
        "max_y": {
          "type": "number"
        },
        "min_x": {
          "type": "number"
        },
        "min_y": {
          "type": "number"
        },
        "srid": {
          "type": "integer"
        },
        "stale": {
          "type": "boolean"
        }
      },
      "required": [
        "min_x",
        "min_y",
        "max_x",
        "max_y",
        "srid"
      ],
      "type": "object"
    },
    "public": {
      "type": "boolean"
    },
    "public_id": {
      "type": "string"
    },
    "styles": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "tile_cache_generation": {
      "format": "int64",
      "type": "integer"
    },
    "tile_cache_quota_bytes": {
      "format": "int64",
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "workspace_id": {
      "type": "string"
    }
  },
  "required": [
    "public_id",
    "members"
  ],
  "type": "object"
}

Search documentation

Type to search guides and reference pages.