Hello! Please see below Parse JSON schema that I used
{
"type": "object",
"properties": {
"pagination": {
"type": "object",
"properties": {
"object_count": {
"type": "integer"
},
"page_number": {
"type": "integer"
},
"page_size": {
"type": "integer"
},
"page_count": {
"type": "integer"
},
"continuation": {
"type": "string"
},
"has_more_items": {
"type": "boolean"
}
}
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"html": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"url": {
"type": "string"
},
"start": {
"type": "object",
"properties": {
"timezone": {
"type": "string"
},
"local": {
"type": "string"
},
"utc": {
"type": "string"
}
}
},
"organization_id": {
"type": "string"
},
"created": {
"type": "string"
},
"changed": {
"type": "string"
},
"resource_uri": {
"type": "string"
},
"capacity": {
"type": "integer"
},
"status": {
"type": "string"
}
},
"required": [
"name",
"id",
"url",
"start",
"organization_id",
"created",
"changed",
"resource_uri"
]
}
}
}
}
you should see the continuation field in the pagination section.