{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","required":["sender","recipient","letter","closing"],"properties":{"sender":{"type":"object","required":["name","address"],"properties":{"name":{"type":"string"},"address":{"type":"string"},"email":{"type":"string"},"phone":{"type":"string"}}},"recipient":{"type":"object","required":["name","address"],"properties":{"name":{"type":"string"},"title":{"type":"string"},"organization":{"type":"string"},"address":{"type":"string"}}},"letter":{"type":"object","required":["date","subject","body"],"properties":{"date":{"type":"string"},"subject":{"type":"string"},"reference":{"type":"string"},"body":{"type":"array","items":{"type":"string"}}}},"closing":{"type":"object","required":["salutation","sender_name"],"properties":{"salutation":{"type":"string"},"sender_name":{"type":"string"},"sender_title":{"type":"string"}}},"cc":{"type":"array","items":{"type":"string"}},"enclosures":{"type":"array","items":{"type":"string"}}}}