IBM WebSphere · Schema

User

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
uid string
displayName string
email string
groups array
View JSON Schema on GitHub

JSON Schema

websphere-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "example": "500123"
    },
    "displayName": {
      "type": "string",
      "example": "example_value"
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "groups": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}