All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schemas.schema-form.json Maven / Gradle / Ivy

There is a newer version: 4.6.0-alpha.2
Show newest version
{
  "type" : "object",
  "id" : "urn:jsonschema:io:gravitee:am:identityprovider:inline:InlineIdentityProviderConfiguration",
  "properties" : {
    "users" : {
      "type" : "array",
      "title": "Users",
      "items" : {
        "type" : "object",
        "id" : "urn:jsonschema:io:gravitee:am:identityprovider:inline:model:User",
        "title": "User",
        "properties" : {
          "firstname" : {
            "title": "Firstname",
            "description": "Firstname",
            "type" : "string"
          },
          "lastname" : {
            "title": "Lastname",
            "description": "Lastname",
            "type" : "string"
          },
          "username" : {
            "title": "Username",
            "description": "Username",
            "type" : "string"
          },
          "email" : {
            "title": "Email",
            "description": "Email",
            "type" : "string"
          },
          "password" : {
            "title": "Password",
            "description": "Password",
            "type" : "string",
            "widget": "password"
          }
        },
        "required": [
          "firstname",
          "lastname",
          "username",
          "password"
        ]
      }
    },
    "passwordEncoder" : {
      "type": "string",
      "enum": ["BCrypt"],
      "title": "Password encoder",
      "description": "The encoding mechanism to store password value."
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy