Prospecting

prospecting-company

{
  "addresses": {
    "items": {
      "properties": {
        "address_type": {
          "enum": [
            "PRIMARY",
            "SECONDARY",
            "OFFICE",
            "SHIPPING",
            "BILLING",
            "OTHER"
          ],
          "title": "Address Type",
          "type": "string"
        },
        "city": {
          "title": "City",
          "type": "string"
        },
        "country": {
          "title": "Country",
          "type": "string"
        },
        "postal_code": {
          "title": "Postal Code",
          "type": "string"
        },
        "state": {
          "title": "State",
          "type": "string"
        },
        "street_1": {
          "title": "Street 1",
          "type": "string"
        },
        "street_2": {
          "title": "Street 2",
          "type": "string"
        }
      },
      "type": "object"
    },
    "title": "Addresses",
    "type": "array"
  },
  "description": {
    "title": "Description",
    "type": "string"
  },
  "industry": {
    "title": "Industry",
    "type": "string"
  },
  "name": {
    "title": "Name",
    "type": "string"
  },
  "number_of_employees": {
    "title": "Number of Employees",
    "type": "number"
  },
  "phone_numbers": {
    "items": {
      "properties": {
        "phone_number": {
          "title": "Phone Number",
          "type": "string"
        },
        "phone_type": {
          "enum": [
            "HOME",
            "WORK",
            "PERSONAL",
            "MOBILE",
            "OTHER"
          ],
          "title": "Phone Type",
          "type": "string"
        }
      },
      "type": "object"
    },
    "title": "Phone Numbers",
    "type": "array"
  },
  "website": {
    "format": "uri",
    "title": "Website",
    "type": "string"
  }
}

Example Object:

{
  "addresses": [
    {
      "address_type": "PRIMARY",
      "city": "Seattle",
      "country": "USA",
      "postal_code": "98101",
      "state": "WA",
      "street_1": "123 Pine Street",
      "street_2": "Apt 202"
    },
    {
      "address_type": "OFFICE",
      "city": "San Francisco",
      "country": "USA",
      "postal_code": "94105",
      "state": "CA",
      "street_1": "456 Market Street",
      "street_2": "Suite 500"
    }
  ],
  "description": "We are a technology startup focused on developing innovative solutions for sustainable energy.",
  "industry": "Renewable Energy",
  "name": "EcoTech Solutions",
  "number_of_employees": 50,
  "phone_numbers": [
    {
      "phone_number": "+12065551234",
      "phone_type": "WORK"
    },
    {
      "phone_number": "+12065556789",
      "phone_type": "MOBILE"
    }
  ],
  "website": "https://www.ecotechsolutions.com"
}

prospecting-contact

{
  "description": {
    "title": "Description",
    "type": "string"
  },
  "email_addresses": {
    "items": {
      "properties": {
        "email_address": {
          "format": "email",
          "title": "Email Address",
          "type": "string"
        },
        "email_type": {
          "enum": [
            "WORK",
            "PERSONAL",
            "OTHER"
          ],
          "title": "Email Type",
          "type": "string"
        }
      },
      "type": "object"
    },
    "title": "Email Addresses",
    "type": "array"
  },
  "first_name": {
    "title": "First Name",
    "type": "string"
  },
  "last_name": {
    "title": "Last Name",
    "type": "string"
  },
  "phone_numbers": {
    "items": {
      "properties": {
        "phone_number": {
          "title": "Phone Number",
          "type": "string"
        },
        "phone_type": {
          "enum": [
            "HOME",
            "WORK",
            "PERSONAL",
            "MOBILE",
            "OTHER"
          ],
          "title": "Phone Type",
          "type": "string"
        }
      },
      "type": "object"
    },
    "title": "Phone Numbers",
    "type": "array"
  },
  "status": {
    "enum": [
      "NOT_CONFIRMED",
      "ON_HOLD",
      "CONFIRMED"
    ],
    "title": "Status",
    "type": "string"
  }
}

Example Object:

{
  "description": "An enthusiastic software engineer passionate about building innovative solutions.",
  "email_addresses": [
    {
      "email_address": "[email protected]",
      "email_type": "WORK"
    },
    {
      "email_address": "[email protected]",
      "email_type": "PERSONAL"
    }
  ],
  "first_name": "John",
  "last_name": "Doe",
  "phone_numbers": [
    {
      "phone_number": "+1 (123) 456-7890",
      "phone_type": "MOBILE"
    },
    {
      "phone_number": "+1 (987) 654-3210",
      "phone_type": "HOME"
    }
  ],
  "status": "CONFIRMED"
}