opengeospatial / styles-and-symbology

OGC Styles & Symbology Standards
Other
11 stars 6 forks source link

Add keywords element in Style node #57

Closed ebocher closed 1 month ago

ebocher commented 1 month ago

Add the keywords in the metadata element of a style.

On json schema

 "metadata": {
            "type": "object",
            "properties":
            {
               "$comment": { "type": "string" },
               "title": { "type": "string" },
               "abstract": { "type": "string" },
               "authors": { "type": "array", "items": { "type": "string" } },
               "keywords": { "type": "array", "items": { "type": "string" } },
               "geoDataClasses": { "type": "array", "items": { "type": "string", "format": "uri" } }
            }
         }
ebocher commented 1 month ago

See #58

ebocher commented 1 month ago

Done