Amazon Clean Rooms · JSON Structure

Clean Rooms Create Membership Request Structure

Request body for creating a membership.

Type: object Properties: 2 Required: 2
Clean RoomsData CollaborationPrivacyAnalyticsMarketing

CreateMembershipRequest is a JSON Structure definition published by Amazon Clean Rooms, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

collaborationIdentifier queryLogStatus

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-clean-rooms/refs/heads/main/json-structure/clean-rooms-create-membership-request-structure.json",
  "name": "CreateMembershipRequest",
  "description": "Request body for creating a membership.",
  "type": "object",
  "properties": {
    "collaborationIdentifier": {
      "type": "string",
      "description": "The unique ID for the associated collaboration.",
      "example": "collab-abc12345"
    },
    "queryLogStatus": {
      "type": "string",
      "enum": [
        "ENABLED",
        "DISABLED"
      ],
      "description": "An indicator as to whether query logging has been enabled or disabled."
    }
  },
  "required": [
    "collaborationIdentifier",
    "queryLogStatus"
  ]
}