ZoomInfo · JSON Structure

Zoominfo Address Structure

Type: object Properties: 5 Required: 5
B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Address is a JSON Structure definition published by ZoomInfo, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

street city state country zipCode

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Address",
  "properties": {
    "street": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "zipCode": {
      "type": "string"
    }
  },
  "required": [
    "street",
    "city",
    "state",
    "country",
    "zipCode"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}