{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Formal Invitation","description":"Formal invitation to an event: event name, date, time, venue, dress code, format, purpose, optional agenda, RSVP deadline and contact, plus signatory.","type":"object","required":["host","guest","invitation_date","event","purpose","rsvp","signatory"],"additionalProperties":false,"properties":{"host":{"type":"object","required":["name","address"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"address":{"type":"string","minLength":1}}},"guest":{"type":"object","required":["name","address"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"address":{"type":"string","minLength":1}}},"invitation_date":{"type":"string","format":"date"},"event":{"type":"object","required":["name","date","start_time","venue_name","venue_address"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"date":{"type":"string","format":"date"},"start_time":{"type":"string","minLength":1},"end_time":{"type":"string"},"venue_name":{"type":"string","minLength":1},"venue_address":{"type":"string","minLength":1},"dress_code":{"type":"string"},"format":{"type":"string","enum":["in_person","hybrid","online"]}}},"purpose":{"type":"string","minLength":1},"agenda":{"type":"array","items":{"type":"object","required":["time","description"],"additionalProperties":false,"properties":{"time":{"type":"string","minLength":1},"description":{"type":"string","minLength":1}}}},"rsvp":{"type":"object","required":["deadline","contact_name","contact_email"],"additionalProperties":false,"properties":{"deadline":{"type":"string","format":"date"},"contact_name":{"type":"string","minLength":1},"contact_email":{"type":"string","format":"email"},"contact_phone":{"type":"string"}}},"additional_information":{"type":"string"},"signatory":{"type":"object","required":["name","role"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"role":{"type":"string","minLength":1}}}}}