{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Dividend Notice","description":"Corporate notice announcing the declaration and payment of a dividend following a board or general-meeting resolution: per-share amount, record/ex/payment dates, withholding-tax information and optional per-shareholder distribution table.","type":"object","required":["notice_date","company","resolution","dividend","withholding","signatory"],"additionalProperties":false,"properties":{"notice_date":{"type":"string","format":"date"},"company":{"type":"object","required":["name","registration","address"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"registration":{"type":"string","minLength":1},"address":{"type":"string","minLength":1}}},"resolution":{"type":"object","required":["kind","date"],"additionalProperties":false,"properties":{"kind":{"type":"string","enum":["board","agm","egm"]},"date":{"type":"string","format":"date"},"reference":{"type":"string"}}},"dividend":{"type":"object","required":["nature","per_share","total_amount","share_class","currency","record_date","ex_date","payment_date","payment_method"],"additionalProperties":false,"properties":{"nature":{"type":"string","enum":["ordinary","interim","special","liquidation"]},"fiscal_year":{"type":"string"},"per_share":{"type":"number","exclusiveMinimum":0},"total_amount":{"type":"number","exclusiveMinimum":0},"share_class":{"type":"string","enum":["common","preferred_seed","preferred_a","preferred_b","preferred_c","all_classes"]},"currency":{"type":"string","minLength":3,"maxLength":3},"record_date":{"type":"string","format":"date"},"ex_date":{"type":"string","format":"date"},"payment_date":{"type":"string","format":"date"},"payment_method":{"type":"string","enum":["bank_transfer","cheque","reinvestment"]}}},"withholding":{"type":"object","required":["rate_pct","net_per_share","note"],"additionalProperties":false,"properties":{"rate_pct":{"type":"number","minimum":0,"maximum":100},"net_per_share":{"type":"number","minimum":0},"note":{"type":"string","minLength":1}}},"distribution_table":{"type":"array","items":{"type":"object","required":["shareholder","shares","gross_amount","withholding_amount","net_amount"],"additionalProperties":false,"properties":{"shareholder":{"type":"string","minLength":1},"shares":{"type":"integer","minimum":0},"gross_amount":{"type":"number","minimum":0},"withholding_amount":{"type":"number","minimum":0},"net_amount":{"type":"number","minimum":0}}}},"signatory":{"type":"object","required":["name","title"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1},"title":{"type":"string","minLength":1}}}}}