HubSpot · Schema

CollectionResponseAssociation

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
results array
paging object
View JSON Schema on GitHub

JSON Schema

hubspot-engagement-emails-collection-response-association-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "example": [
        {
          "id": "500123",
          "type": "standard"
        }
      ],
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "example": "500123"
          },
          "type": {
            "type": "string",
            "example": "standard"
          }
        }
      }
    },
    "paging": {
      "type": "object",
      "properties": {
        "next": {
          "type": "object",
          "example": {
            "after": "example-value"
          },
          "properties": {
            "after": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CollectionResponseAssociation"
}