User

A Rackspace Cloud Identity user account.

CloudManaged ServiceMulti-CloudInfrastructureDevOps

Properties

Name Type Description
id string
username string
email string
enabled boolean
domainId string
defaultRegion string
roles array
View JSON Schema on GitHub

JSON Schema

rackspace-cloud-identity-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/rackspace-technology/main/json-schema/rackspace-cloud-identity-user-schema.json",
  "title": "User",
  "description": "A Rackspace Cloud Identity user account.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "username": { "type": "string" },
    "email": { "type": "string", "format": "email" },
    "enabled": { "type": "boolean" },
    "domainId": { "type": "string" },
    "defaultRegion": { "type": "string" },
    "roles": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "string" },
          "name": { "type": "string" },
          "tenantId": { "type": "string" }
        }
      }
    }
  },
  "required": ["username", "email"]
}