{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "PermissionProfileSummary": { "properties": { "description": { "description": "Optional user-facing description for display in clients.", "type": [ "string", "null" ] }, "id": { "description": "Available permission profile identifier.", "type": "string" } }, "required": [ "id" ], "type": "object" } }, "properties": { "data": { "items": { "$ref": "#/definitions/PermissionProfileSummary" }, "type": "array" }, "nextCursor": { "description": "Opaque cursor to pass to the next call to continue after the last item. If None, there are no more items to return.", "type": [ "string", "null" ] } }, "required": [ "data" ], "title": "PermissionProfileListResponse", "type": "object" }