{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://schema.entrecode.de/schema-data/dm-account",
  "type": "object",
  "properties": {
    "accountID": {
      "$ref": "https://schema.entrecode.de/schema-data/uuidV4"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "email": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "type": "string",
          "format": "email"
        }
      ]
    },
    "pending": {
      "type": "boolean"
    },
    "blocked": {
      "type": "boolean"
    },
    "pendingUpdated": {
      "type": "string",
      "format": "date-time"
    },
    "hasPassword": {
      "type": "boolean"
    },
    "oauth": {
      "type": "array",
      "items": {
        "type": ["string"]
      }
    }
  },
  "required": ["accountID", "created", "email", "pending", "pendingUpdated", "hasPassword", "oauth"]
}
