{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Role", "title": "Role", "type": "object", "description": "An IAM role that defines a set of permissions for Fastly resources.", "properties": { "id": { "type": "string", "description": "The alphanumeric string identifying the role." }, "name": { "type": "string", "description": "The name of the role." }, "description": { "type": "string", "description": "A description of the role." }, "custom": { "type": "boolean", "description": "Whether this is a custom role." }, "permissions_count": { "type": "integer", "description": "The number of permissions associated with the role." }, "created_at": { "type": "string", "format": "date-time", "description": "The date and time the role was created." }, "updated_at": { "type": "string", "format": "date-time", "description": "The date and time the role was last updated." } } }