{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EnrichPerson", "title": "EnrichPerson", "description": "A person object from an enrichment integration", "properties": { "address": { "$ref": "#/components/schemas/property_EnrichPerson_address" }, "bio": { "type": "string" }, "birthdate": { "type": "string" }, "company": { "type": "string" }, "company_domain": { "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "emails": { "$ref": "#/components/schemas/property_EnrichPerson_emails" }, "facebook_url": { "type": "string" }, "first_name": { "type": "string" }, "gender": { "enum": [ "MALE", "FEMALE" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "github_url": { "type": "string" }, "github_username": { "type": "string" }, "id": { "type": "string" }, "image_url": { "type": "string" }, "last_name": { "type": "string" }, "linkedin_url": { "type": "string" }, "name": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "telephones": { "$ref": "#/components/schemas/property_EnrichPerson_telephones" }, "timezone": { "type": "string" }, "title": { "type": "string" }, "twitter_handle": { "type": "string" }, "twitter_url": { "type": "string" }, "updated_at": { "format": "date-time", "type": "string" }, "utc_offset": { "type": "number" }, "work_histories": { "$ref": "#/components/schemas/property_EnrichPerson_work_histories" } }, "type": "object" }