Salesforce · JSON Structure

Salesforce Billing Address1 Structure

Type: object Properties: 8 Required: 8
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

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

Properties

city country geocodeAccuracy latitude longitude postalCode state street

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "BillingAddress1",
  "properties": {
    "city": {
      "type": "string"
    },
    "country": {
      "type": "['string', 'null']"
    },
    "geocodeAccuracy": {
      "type": "['string', 'null']"
    },
    "latitude": {
      "type": "['string', 'null']"
    },
    "longitude": {
      "type": "['string', 'null']"
    },
    "postalCode": {
      "type": "['string', 'null']"
    },
    "state": {
      "type": "string"
    },
    "street": {
      "type": "string"
    }
  },
  "required": [
    "city",
    "country",
    "geocodeAccuracy",
    "latitude",
    "longitude",
    "postalCode",
    "state",
    "street"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}