Klaviyo · Schema

GetProfileBulkImportJobProfilesRelationshipsResponseCollection

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
data array
links object
View JSON Schema on GitHub

JSON Schema

klaviyo-getprofilebulkimportjobprofilesrelationshipsresponsecollecti-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetProfileBulkImportJobProfilesRelationshipsResponseCollection",
  "title": "GetProfileBulkImportJobProfilesRelationshipsResponseCollection",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "type",
          "id"
        ],
        "properties": {
          "type": {
            "$ref": "#/components/schemas/ProfileEnum"
          },
          "id": {
            "description": "Primary key that uniquely identifies this profile. Generated by Klaviyo.",
            "type": "string",
            "example": "01GDDKASAP8TKDDA2GRZDSVP4H"
          }
        }
      }
    },
    "links": {
      "$ref": "#/components/schemas/CollectionLinks"
    }
  },
  "required": [
    "data"
  ]
}