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

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

The newest version!
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type" : "object",
  "properties" : {
    "users" : {
      "type" : "array",
      "title": "Inline users",
      "description": "List of inline users",
      "items" : {
        "type" : "object",
        "title": "User",
        "properties" : {
          "username" : {
            "title": "Username",
            "description": "Username",
            "type" : "string"
          },
          "password" : {
            "title": "Password",
            "description": "Password",
            "type" : "string"
          },
          "roles" : {
            "type" : "array",
            "title": "Roles",
            "description": "Roles",
            "items" : {
              "type" : "string"
            }
          }
        },
        "required": [
          "username"
        ]
      }
    }
  },
  "required": [
    "users"
  ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy