Salesforce · Schema

ShippingAddress11

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
city ['string', 'null']
country ['string', 'null']
geocodeAccuracy ['string', 'null']
latitude ['string', 'null']
longitude ['string', 'null']
postalCode ['string', 'null']
state ['string', 'null']
street string
View JSON Schema on GitHub

JSON Schema

salesforce-shipping-address11-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "city": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "country": {
      "type": "['string', 'null']",
      "example": 42
    },
    "geocodeAccuracy": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "latitude": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "longitude": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "postalCode": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "state": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "street": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "city",
    "country",
    "geocodeAccuracy",
    "latitude",
    "longitude",
    "postalCode",
    "state",
    "street"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ShippingAddress11"
}