{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/convertkit/main/json-schema/add_subscriber_to_sequence_response.json", "title": "Add subscriber to sequence Response", "x-tag": "Sequences", "type": "object", "properties": { "subscriber": { "type": "object", "properties": { "id": { "type": "integer" }, "first_name": { "type": "string", "nullable": true }, "email_address": { "type": "string" }, "state": { "type": "string", "enum": [ "active", "cancelled", "bounced", "complained", "inactive" ] }, "created_at": { "type": "string" }, "added_at": { "type": "string" }, "fields": { "type": "object", "properties": {} } }, "required": [ "id", "first_name", "email_address", "state", "created_at", "added_at", "fields" ] } }, "required": [ "subscriber" ] }