{
  "$schema" : "https://json-schema.org/draft/2019-09/schema",
  "type" : "object",
  "properties" : {
    "Email" : {
      "type" : "string",
      "description" : "Will be used to send info mails like license expiration"
    },
    "FullName" : {
      "type" : "string",
      "description" : "Used to display a nice name for this user"
    },
    "Password" : {
      "description" : "For security reasons, please hash the password(s) using \"${hash:mySecret}\"\nThe real password cannot be recovered from the hash.",
      "additionalProperties" : false,
      "type" : "string",
      "examples" : [ "\"${hash:mySecret}\"" ]
    }
  },
  "additionalProperties" : false
}
