{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionHubspotUpsertContactParams", "title": "FlowActionHubspotUpsertContactParams", "type": "object", "additionalProperties": true, "required": [ "connection_id", "email" ], "properties": { "connection_id": { "type": "string", "maxLength": 30, "format": "flows-vault-connections-id" }, "email": { "type": "string" }, "properties": { "type": "array", "items": { "$ref": "#/components/schemas/FlowActionHubspotUpsertContactParamsProperty" } } } }