{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Letter of Condolence","description":"Formal letter of condolence acknowledging a loss, sharing a personal recollection of the deceased, and offering concrete support to the recipient.","type":"object","required":["sender","recipient","letter_date","deceased","personal_recollection","support_offer","signatory"],"additionalProperties":false,"properties":{"sender":{"type":"object","required":["name","address"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"address":{"type":"string","minLength":1}}},"recipient":{"type":"object","required":["name","address"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"address":{"type":"string","minLength":1}}},"letter_date":{"type":"string","format":"date"},"deceased":{"type":"object","required":["name"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"relationship_to_recipient":{"type":"string"},"date_of_passing":{"type":"string","format":"date"}}},"personal_recollection":{"type":"string","minLength":1},"tribute":{"type":"string"},"support_offer":{"type":"string","minLength":1},"signatory":{"type":"object","required":["name","role"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"role":{"type":"string","minLength":1}}}}}