{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/Email.schema.json", "title": "Type - Email", "description": "Type representation of an email address", "type": "object", "properties": { "email_type": { "description": "Type of e-mail address (e.g. personal or business)", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/enums/EmailType.schema.json" }, "email_address": { "description": "A valid e-mail address", "type": "string", "format": "email" } }, "additionalProperties": false, "required": ["email_type", "email_address"], "$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/Email.schema.json" }