{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Press Release","description":"Standard press release: headline, subheadline, dateline, lead paragraph, body paragraphs, optional quotes and key facts, boilerplate about the issuing company and a media contact block.","type":"object","required":["company","headline","dateline","lead_paragraph","body_paragraphs","about_boilerplate","media_contact"],"additionalProperties":false,"properties":{"company":{"type":"object","required":["name","address"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"address":{"type":"string","minLength":1}}},"headline":{"type":"string","minLength":1},"subheadline":{"type":"string"},"dateline":{"type":"object","required":["city","date"],"additionalProperties":false,"properties":{"city":{"type":"string","minLength":1},"date":{"type":"string","format":"date"}}},"lead_paragraph":{"type":"string","minLength":1},"body_paragraphs":{"type":"array","minItems":1,"items":{"type":"string","minLength":1}},"quotes":{"type":"array","items":{"type":"object","required":["text","attribution_name","attribution_role"],"additionalProperties":false,"properties":{"text":{"type":"string","minLength":1},"attribution_name":{"type":"string","minLength":1},"attribution_role":{"type":"string","minLength":1}}}},"key_facts":{"type":"array","items":{"type":"string","minLength":1}},"about_boilerplate":{"type":"string","minLength":1},"media_contact":{"type":"object","required":["name","role","email"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"role":{"type":"string","minLength":1},"email":{"type":"string","format":"email"},"phone":{"type":"string"},"website":{"type":"string"}}}}}