{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://schema.entrecode.de/schema-data/datamanager",
  "type": "object",
  "required": [
    "dataManagerID",
    "created",
    "title",
    "description",
    "config",
    "hexColor",
    "rights",
    "publicAssetRights",
    "locales",
    "defaultLocale"
  ],
  "properties": {
    "dataManagerID": {
      "$ref": "https://schema.entrecode.de/schema-data/uuidV4"
    },
    "template": {
      "oneOf": [
        {
          "$ref": "https://schema.entrecode.de/schema-data/uuidV4"
        },
        { "type": "null" }
      ]
    },
    "created": {
      "$ref": "https://schema.entrecode.de/schema-data/datetime"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "config": {
      "type": "object",
      "properties": {
        "users": {
          "type": ["null", "object"],
          "properties": {
            "anonymous": {
              "type": ["null", "boolean"]
            },
            "password": {
              "type": ["null", "boolean"]
            },
            "google": {
              "type": ["null", "object"],
              "properties": {
                "clientID": {
                  "type": "string"
                },
                "clientSecret": {
                  "type": "string"
                }
              },
              "required": ["clientID", "clientSecret"]
            },
            "facebook": {
              "type": ["null", "object"],
              "properties": {
                "clientID": {
                  "type": "string"
                },
                "clientSecret": {
                  "type": "string"
                }
              },
              "required": ["clientID", "clientSecret"]
            }
          }
        },
        "auth": {
          "type": "object"
        },
        "publicConfig": {
          "type": "object"
        },
        "customAssetDomain": {
          "type": "string",
          "format": "uri"
        },
        "assetSettings": {
          "$ref": "https://schema.entrecode.de/schema-data/dm-assetgroup#/definitions/settings"
        }
      }
    },
    "hexColor": {
      "$ref": "https://schema.entrecode.de/schema-data/hexcolor"
    },
    "rights": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "publicAssetRights": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "locales": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "$ref": "https://schema.entrecode.de/schema-data/locale"
          },
          {
            "type": "null"
          }
        ]
      }
    },
    "defaultLocale": {
      "oneOf": [
        {
          "$ref": "https://schema.entrecode.de/schema-data/locale"
        },
        {
          "type": "null"
        }
      ]
    },
    "_links": {
      "type": "object",
      "additionalProperties": {
        "$ref": "https://schema.entrecode.de/schema-data/hal#/definitions/linkOrLinkArray"
      }
    }
  }
}
