Axway · Schema

Role

Role schema from Axway Amplify Platform API

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
client boolean Whether the role can be assigned to a client.
consumer boolean Whether the role is assignable on consumer org members (bypassing all other requirements for role).
default boolean Whether the role is default.
disabled boolean Indicates the role is deprecated and no longer assignable
entitlement string Entitlement which must be active to allow the role.
id string Identifier of the role.
name string The role's name.
order number Indicates the relative access rights for the role. The lower the value, the more access the role has.
org boolean Whether the role can be assigned as a org-level role.
partner string Product name key for service to which a "service role" applies.
platform_restricted boolean Whether the user has limited platform visibility and capabilities
product string Partner that must be provisioned and have an active entitlement for to allow the role.
required_default_roles array Org-level default roles a user must be assigned in order to allow the service role.
subscription array Subscriptions for which one or more of is required to allow the role.
team boolean Whether the role can be assigned as a team-level role.
web_only boolean Indicates that users with the role are only able to access the platform in web contexts.
View JSON Schema on GitHub

JSON Schema

amplify-platform-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/axway/amplify-platform-role-schema.json",
  "title": "Role",
  "description": "Role schema from Axway Amplify Platform API",
  "type": "object",
  "properties": {
    "client": {
      "type": "boolean",
      "description": "Whether the role can be assigned to a client.",
      "x-deprecated": true,
      "example": true
    },
    "consumer": {
      "type": "boolean",
      "description": "Whether the role is assignable on consumer org members (bypassing all other requirements for role).",
      "example": true
    },
    "default": {
      "type": "boolean",
      "description": "Whether the role is default.",
      "example": true
    },
    "disabled": {
      "type": "boolean",
      "description": "Indicates the role is deprecated and no longer assignable",
      "example": true
    },
    "entitlement": {
      "type": "string",
      "description": "Entitlement which must be active to allow the role.",
      "example": "example_value"
    },
    "id": {
      "type": "string",
      "description": "Identifier of the role.",
      "example": "507f1f77bcf86cd799439011"
    },
    "name": {
      "type": "string",
      "description": "The role's name.",
      "minLength": 1,
      "maxLength": 40,
      "example": "Example Name"
    },
    "order": {
      "type": "number",
      "description": "Indicates the relative access rights for the role. The lower the value, the more access the role has.",
      "example": 1.0
    },
    "org": {
      "type": "boolean",
      "description": "Whether the role can be assigned as a org-level role.",
      "example": true
    },
    "partner": {
      "type": "string",
      "description": "Product name key for service to which a \"service role\" applies.",
      "example": "example_value"
    },
    "platform_restricted": {
      "type": "boolean",
      "description": "Whether the user has limited platform visibility and capabilities",
      "example": true
    },
    "product": {
      "type": "string",
      "description": "Partner that must be provisioned and have an active entitlement for to allow the role.",
      "example": "example_value"
    },
    "required_default_roles": {
      "type": "array",
      "description": "Org-level default roles a user must be assigned in order to allow the service role.",
      "items": {
        "type": "string"
      },
      "example": [
        "example_value"
      ]
    },
    "subscription": {
      "type": "array",
      "description": "Subscriptions for which one or more of is required to allow the role.",
      "items": {
        "type": "string"
      },
      "example": [
        "10.0.0.1"
      ]
    },
    "team": {
      "type": "boolean",
      "description": "Whether the role can be assigned as a team-level role.",
      "example": true
    },
    "web_only": {
      "type": "boolean",
      "description": "Indicates that users with the role are only able to access the platform in web contexts.",
      "example": true
    }
  },
  "required": [
    "id",
    "name"
  ]
}