{
  "$schema": "http://json-schema.org/schema#",
  "$id": "https://app.aplas.com/static/schema/style/v1/styleSchema.json",
  "type": "object",
  "required": ["id"],
  "properties": {
    "id": { "type": "string" },
    "mapId": { "type": "string" },
    "version": { "type": "string" },
    "description": { "type": "string" },
    "parameters": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "string" }
        }
      }
    },
    "layers": {
      "type": "array",
      "items": {
        "$ref": "./styleLayerSchema.json"
      }
    }
  }
}
