{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentDisputeActivityHistory", "title": "PaymentDisputeActivityHistory", "type": "object", "properties": { "activity": { "type": "array", "description": "This array holds all activities of a payment dispute, from creation to resolution. For each activity, the activity type, the actor, and a timestamp is shown. The getActivities response is dynamic, and grows with each recorded activity.", "items": { "$ref": "#/components/schemas/PaymentDisputeActivity" } } }, "description": "This type is used by the base response of the getActivities method, and includes a log of all activities of a payment dispute, from creation to resolution." }