{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OldAddress", "title": "Address", "type": "object", "properties": { "Id": { "type": "string", "description": "Unique identifier of the address.", "format": "uuid" }, "Line1": { "type": "string", "description": "First line of the address.", "nullable": true }, "Line2": { "type": "string", "description": "Second line of the address.", "nullable": true }, "City": { "type": "string", "description": "The city.", "nullable": true }, "PostalCode": { "type": "string", "description": "Postal code.", "nullable": true }, "CountryCode": { "type": "string", "description": "ISO 3166-1 code of the `Country`.", "nullable": true }, "CountrySubdivisionCode": { "type": "string", "description": "ISO 3166-2 code of the administrative division, e.g. `DE-BW`.", "nullable": true }, "Latitude": { "type": "number", "description": "The latitude.", "format": "double", "nullable": true }, "Longitude": { "type": "number", "description": "The longitude.", "format": "double", "nullable": true } }, "additionalProperties": false, "description": "", "x-schema-id": "OldAddress" }