{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://schema.entrecode.de/schema-data/dm-client-template",
  "type": "object",
  "properties": {
    "clientID": {
      "type": "string",
      "pattern": "^[0-9a-z\\-_]+$"
    },
    "callbackURL": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "type": "string",
          "format": "uri"
        }
      ]
    },
    "tokenMethod": {
      "type": "array",
      "items": {
        "enum": ["query", "cookie", "body"]
      },
      "uniqueItems": true
    },
    "grantTypes": {
      "type": "array",
      "items": {
        "enum": ["authorization_code", "implicit", "password", "client_credentials", "refresh_token"]
      },
      "uniqueItems": true
    },
    "disableStrategies": {
      "type": "array",
      "items": {
        "type": ["string"]
      }
    },
    "hexColor": {
      "type": "string",
      "pattern": "^#[A-Fa-f0-9]{6}$"
    },
    "federatedOIDC": {
      "$ref": "https://schema.entrecode.de/schema-data/dm-client#properties.federatedOIDC"
    }
  },
  "required": ["clientID"]
}
