Properties
| Name | Type | Description |
|---|---|---|
| first_name | string | First Name |
| last_name | string | Last Name |
| metadata | string | Client supplied json metadata to be stored with the prospect |
| source | string | Source of prospect |
| status | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/prospect_editable",
"title": "Prospect",
"properties": {
"first_name": {
"description": "First Name",
"example": "John",
"type": "string"
},
"last_name": {
"description": "Last Name",
"example": "Smith",
"type": "string"
},
"metadata": {
"description": "Client supplied json metadata to be stored with the prospect",
"example": "{'foo':'bar'}",
"type": "string"
},
"source": {
"description": "Source of prospect",
"example": "email",
"type": "string"
},
"status": {
"$ref": "#/components/schemas/prospect_status",
"readOnly": false
}
},
"type": "object"
}