stac-validate 0.6.8

json-schema validation for the Rust implementation of the STAC specification
Documentation
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/provider.json",
  "title": "Provider Fields",
  "type": "object",
  "properties": {
    "providers": {
      "title": "Providers",
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "title": "Organization name",
            "type": "string",
            "minLength": 1
          },
          "description": {
            "title": "Organization description",
            "type": "string"
          },
          "roles": {
            "title": "Organization roles",
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "producer",
                "licensor",
                "processor",
                "host"
              ]
            }
          },
          "url": {
            "title": "Organization homepage",
            "type": "string",
            "format": "iri"
          }
        }
      }
    }
  }
}