{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/Address.schema.json", "title": "Type - Address", "description": "Type representation of an address", "type": "object", "properties": { "address_type": { "description": "What type of address is this (e.g. legal address, contact address, etc.)", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/enums/AddressType.schema.json" }, "street_suite": { "description": "Street address (multi-line string)", "type": "string" }, "city": { "description": "City", "type": "string" }, "country_subdivision": { "description": "State, province, or equivalent identifier required for an address in this country", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/CountrySubdivisionCode.schema.json" }, "country": { "description": "Country code for this address (ISO 3166-1 alpha-2)", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/CountryCode.schema.json" }, "postal_code": { "description": "Address postal code", "type": "string" } }, "additionalProperties": false, "required": ["address_type", "country"], "$comment": "Copyright © 2026 Open Cap Table Coalition (https://opencaptablecoalition.com) / Original File: https://github.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/tree/main/schema/types/Address.schema.json" }