{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://poseidat.org/schema/core/address.json",
  "title": "Address",
  "description": "A street address",
  "properties": {
    "street_address": {
      "description": "The street and number",
      "type": "string"
    },
    "street_address_extension": {
      "description": "An optional street and number extension",
      "type": "string"
    },
    "postal_code": {
      "description": "The postal or ZIP code of the city",
      "type": "string"
    },
    "city": {
      "description": "The city or town",
      "type": "string"
    },
    "region": {
      "description": "The region or province",
      "type": "string"
    },
    "country": {
      "description": "The country",
      "type": "string"
    }
  },
  "required": [
    "street_address",
    "postal_code",
    "city",
    "country"
  ],
  "type": "object",
  "additionalProperties": false
}