Amazon Outposts · JSON Structure

Openapi Address Structure

Information about an address.

Type: object Properties: 11 Required: 5
Edge ComputingHybrid CloudInfrastructureOn-Premises

Address is a JSON Structure definition published by Amazon Outposts, describing 11 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ContactName ContactPhoneNumber AddressLine1 AddressLine2 AddressLine3 City StateOrRegion DistrictOrCounty PostalCode CountryCode Municipality

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-outposts/refs/heads/main/json-structure/openapi-address-structure.json",
  "name": "Address",
  "description": " Information about an address. ",
  "type": "object",
  "properties": {
    "ContactName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContactName"
        },
        {
          "description": "The name of the contact."
        }
      ]
    },
    "ContactPhoneNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContactPhoneNumber"
        },
        {
          "description": "The phone number of the contact."
        }
      ]
    },
    "AddressLine1": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AddressLine1"
        },
        {
          "description": "The first line of the address."
        }
      ]
    },
    "AddressLine2": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AddressLine2"
        },
        {
          "description": "The second line of the address."
        }
      ]
    },
    "AddressLine3": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AddressLine3"
        },
        {
          "description": "The third line of the address."
        }
      ]
    },
    "City": {
      "allOf": [
        {
          "$ref": "#/components/schemas/City"
        },
        {
          "description": "The city for the address."
        }
      ]
    },
    "StateOrRegion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StateOrRegion"
        },
        {
          "description": "The state for the address."
        }
      ]
    },
    "DistrictOrCounty": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DistrictOrCounty"
        },
        {
          "description": "The district or county for the address."
        }
      ]
    },
    "PostalCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PostalCode"
        },
        {
          "description": "The postal code for the address."
        }
      ]
    },
    "CountryCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CountryCode"
        },
        {
          "description": "The ISO-3166 two-letter country code for the address."
        }
      ]
    },
    "Municipality": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Municipality"
        },
        {
          "description": "The municipality for the address."
        }
      ]
    }
  },
  "required": [
    "AddressLine1",
    "City",
    "StateOrRegion",
    "PostalCode",
    "CountryCode"
  ]
}