Fastly · Schema
UserGroup
An IAM user group that organizes users and assigns roles and service group access.
CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The alphanumeric string identifying the user group. |
| name | string | The name of the user group. |
| description | string | A description of the user group. |
| users_count | integer | The number of users in the group. |
| roles_count | integer | The number of roles assigned to the group. |
| service_groups_count | integer | The number of service groups associated with the user group. |
| created_at | string | The date and time the user group was created. |
| updated_at | string | The date and time the user group was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserGroup",
"title": "UserGroup",
"type": "object",
"description": "An IAM user group that organizes users and assigns roles and service group access.",
"properties": {
"id": {
"type": "string",
"description": "The alphanumeric string identifying the user group."
},
"name": {
"type": "string",
"description": "The name of the user group."
},
"description": {
"type": "string",
"description": "A description of the user group."
},
"users_count": {
"type": "integer",
"description": "The number of users in the group."
},
"roles_count": {
"type": "integer",
"description": "The number of roles assigned to the group."
},
"service_groups_count": {
"type": "integer",
"description": "The number of service groups associated with the user group."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the user group was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the user group was last updated."
}
}
}