{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/TaxID.schema.json", "title": "Type - Tax Identifier", "description": "Type representation of a government identifier for tax purposes (e.g. EIN) and corresponding country code (ISO-3166)", "type": "object", "properties": { "tax_id": { "description": "Tax identifier as string", "type": "string" }, "country": { "description": "Issuing country code (ISO 3166-1 alpha-2) for the tax identifier", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/CountryCode.schema.json" } }, "additionalProperties": false, "required": ["tax_id", "country"], "$comment": "Copyright © 2025 Open Cap Table Coalition (https://opencaptablecoalition.com) / Original File: https://github.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/tree/main/schema/types/TaxID.schema.json" }