{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountDetails", "title": "AccountDetails", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "integration": { "type": "string" }, "integration_slug": { "type": "string" }, "category": { "oneOf": [ { "$ref": "#/components/schemas/CategoryEnum" }, { "type": "null" } ] }, "end_user_origin_id": { "type": "string" }, "end_user_organization_name": { "type": "string" }, "end_user_email_address": { "type": "string", "format": "email" }, "status": { "type": "string" }, "webhook_listener_url": { "type": "string", "format": "uri" }, "is_duplicate": { "type": [ "boolean", "null" ], "description": "Whether a Production Linked Account's credentials match another existing Production Linked Account. This field is `null` for Test Linked Accounts, incomplete Production Linked Accounts, and ignored duplicate Production Linked Account sets." }, "account_type": { "type": "string" }, "completed_at": { "type": [ "string", "null" ], "format": "date-time", "description": "The time at which account completes the linking flow." }, "instance_id": { "type": [ "string", "null" ] }, "instance_display_value": { "type": [ "string", "null" ] } } }