cityjson / specs

Specifications for CityJSON, a JSON-based encoding for 3D city models
https://cityjson.org
Creative Commons Zero v1.0 Universal
107 stars 25 forks source link

Fix "url" in extension schema #138

Closed balazsdukai closed 1 year ago

balazsdukai commented 1 year ago

It was missed by 87720c17878495f927a87889407f675e91e60635

However, the uri needs to stay in the validation in order to preserve compatibility with v1.1.

"anyOf": [
    {
      "required": [
        "url"
      ]
    },
    {
      "required": [
        "uri"
      ]
    }
  ],