JFrog · Schema

UpdateUserRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
email string
password string
admin boolean
profile_updatable boolean
disable_ui_access boolean
status string
groups array
View JSON Schema on GitHub

JSON Schema

jfrog-updateuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateUserRequest",
  "title": "UpdateUserRequest",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email"
    },
    "password": {
      "type": "string"
    },
    "admin": {
      "type": "boolean"
    },
    "profile_updatable": {
      "type": "boolean"
    },
    "disable_ui_access": {
      "type": "boolean"
    },
    "status": {
      "type": "string",
      "enum": [
        "enabled",
        "disabled"
      ]
    },
    "groups": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}