Amazon Clean Rooms · Schema

ListCollaborationsResponse

Response for listing collaborations.

Clean RoomsData CollaborationPrivacyAnalyticsMarketing

Properties

Name Type Description
nextToken string The token value retrieved from a previous paginated request.
collaborationList array The list of collaborations.
View JSON Schema on GitHub

JSON Schema

clean-rooms-list-collaborations-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-clean-rooms/refs/heads/main/json-schema/clean-rooms-list-collaborations-response-schema.json",
  "title": "ListCollaborationsResponse",
  "description": "Response for listing collaborations.",
  "type": "object",
  "properties": {
    "nextToken": {
      "type": "string",
      "description": "The token value retrieved from a previous paginated request."
    },
    "collaborationList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Collaboration"
      },
      "description": "The list of collaborations."
    }
  }
}