Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | Input JSON schema. |
| value | string | The value of a role. |
| display | string | A human-readable name, primarily used for display purposes. |
| description | string | A human-readable description of a role. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Resource",
"title": "Resource",
"type": "object",
"required": [
"attribute",
"value",
"description",
"display"
],
"properties": {
"attribute": {
"type": "string",
"example": "\"urn:ietf:params:scim:api:messages:2.0:ListResponse\"",
"description": "Input JSON schema."
},
"value": {
"type": "string",
"example": "id_full_admin",
"description": "The value of a role."
},
"display": {
"type": "string",
"example": "id_full_admin",
"description": "A human-readable name, primarily used for display purposes."
},
"description": {
"type": "string",
"example": "Read-only administrator",
"description": "A human-readable description of a role."
}
}
}