{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/ContactInfoWithoutName.schema.json", "title": "Type - Contact Info Without Name", "description": "Type representation of the contact info for an individual stakeholder", "type": "object", "properties": { "phone_numbers": { "title": "Contact Info - Phone Number Array", "description": "Phone numbers to reach the contact at", "type": "array", "items": { "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/Phone.schema.json" } }, "emails": { "title": "Contact Info - Email Address Array", "description": "Emails to reach the contact at", "type": "array", "items": { "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/Email.schema.json" } } }, "additionalProperties": false, "anyOf": [ { "required": ["phone_numbers"] }, { "required": ["emails"] } ], "$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/ContactInfoWithoutName.schema.json" }