IBM WebSphere · Schema

SecurityRole

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
name string
description string
users array
groups array
View JSON Schema on GitHub

JSON Schema

websphere-securityrole-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecurityRole",
  "title": "SecurityRole",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "users": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "groups": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}