Skip to content

Commit

Permalink
Add support for compound CRS as CURIEs
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsdukai committed Apr 9, 2024
1 parent 671a7f8 commit 8876897
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions schemas/metadata.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,20 @@
"maxItems": 6
},
"referenceSystem": {
"type": "string",
"pattern": "^(http|https)://www.opengis.net/def/crs/"
"anyOf": [
{
"type": "string",
"pattern": "^(http|https)://www.opengis.net/def/crs/"
},
{
"type": "array",
"items": {
"type": "string",
"pattern": "^\\[[a-zA-Z]+:[a-zA-Z0-9]+\\]$"
},
"minItems": 1
}
]
}
},
"additionalProperties": false
Expand Down

0 comments on commit 8876897

Please sign in to comment.