{
  "version": 8,
  "sources": {
    "vector": {
      "type": "vector",
      "url": "https://demotiles.maplibre.org/tiles/tiles.json"
    }
  },
  "layers": [
    {
      "id": "minimum",
      "type": "fill",
      "source": "vector",
      "source-layer": "layer",
      "paint": {
        "fill-opacity": -1,
        "fill-opacity-transition": {
          "duration": 500,
          "delay": -1,
          "bad": "value"
        },
        "bad-transition": {
          "duration": 400
        },
        "fill-antialias-transition": {
          "duration": 500
        }
      }
    },
    {
      "id": "maximum",
      "type": "fill",
      "source": "vector",
      "source-layer": "layer",
      "paint": {
        "fill-opacity": 1.5
      }
    },
    {
      "id": "null",
      "type": "fill",
      "source": "vector",
      "source-layer": "layer",
      "paint": {
        "fill-opacity": null
      }
    },
    {
      "id": "something",
      "type": "fill",
      "source": "vector",
      "source-layer": "layer",
      "paint": {
        "fill-opacity": {
          "stops": [[10, 0], [11, 1]],
          "foo": "bar"
        },
        "fill-color": {
          "property": "mapbox",
          "stops": [
            [{ "zoom": 10, "value": 10 }, "purple"],
            [{ "zoom": 11, "value": 20, "magic": "powers" }, "green"]
          ]
        },
        "bad": true
      }
    },
    {
      "id": "invalid attempt to use string interpolation rather than a property function",
      "type": "fill",
      "source": "vector",
      "source-layer": "layer",
      "paint": {
        "fill-opacity": "{opacity}"
      }
    }
  ]
}
