Salesforce · Schema

Address1

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
addressType string
street string
city string
state string
postalCode string
country string
View JSON Schema on GitHub

JSON Schema

salesforce-address1-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "addressType": {
      "type": "string",
      "example": "example_value"
    },
    "street": {
      "type": "string",
      "example": "example_value"
    },
    "city": {
      "type": "string",
      "example": "example_value"
    },
    "state": {
      "type": "string",
      "example": "example_value"
    },
    "postalCode": {
      "type": "string",
      "example": "example_value"
    },
    "country": {
      "type": "string",
      "example": 42
    }
  },
  "required": [
    "addressType",
    "street",
    "city",
    "state",
    "postalCode",
    "country"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Address1"
}