{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/commerce-subscriptions-api-collection-response-association-schema.json", "title": "CollectionResponseAssociation", "description": "CollectionResponseAssociation schema from HubSpot Commerce Subscriptions API", "type": "object", "properties": { "results": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "example": "500123" }, "type": { "type": "string", "example": "standard" } } }, "example": [ { "id": "500123", "type": "standard" } ] }, "paging": { "type": "object", "properties": { "next": { "type": "object", "properties": { "after": { "type": "string" } }, "example": { "after": "example-value" } } } } } }