{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Power of Attorney","description":"General or limited power of attorney (mandate) granted by a grantor to an attorney-in-fact (mandatary). Country-agnostic structure compatible with BE Civil Code arts. 1984–2010 (mandat), FR Code civil arts. 1984–2010, DE BGB §§164–181 (Vollmacht) and NL BW Boek 3 art. 3:60 et seq. (volmacht).","type":"object","additionalProperties":false,"required":["grantor","attorney","scope_type","powers_granted","effective_date","substitution_allowed","compensation","governing_law","notarisation_required","signatories"],"$defs":{"person":{"type":"object","additionalProperties":false,"required":["name","address","identification"],"properties":{"name":{"type":"string"},"address":{"type":"string"},"identification":{"type":"string"}}},"signatory":{"type":"object","additionalProperties":false,"required":["name","role","place","date"],"properties":{"name":{"type":"string"},"role":{"type":"string"},"place":{"type":"string"},"date":{"type":"string","format":"date"}}}},"properties":{"grantor":{"$ref":"#/$defs/person"},"attorney":{"$ref":"#/$defs/person"},"scope_type":{"type":"string","enum":["general","limited"]},"powers_granted":{"type":"array","minItems":1,"items":{"type":"string"}},"restrictions":{"type":"array","items":{"type":"string"}},"effective_date":{"type":"string","format":"date"},"expiry":{"type":"object","additionalProperties":false,"properties":{"expiry_date":{"type":"string","format":"date"},"expiry_event":{"type":"string"}}},"substitution_allowed":{"type":"boolean"},"compensation":{"type":"object","additionalProperties":false,"required":["type"],"properties":{"type":{"type":"string","enum":["none","reimbursement_only","fee_structure"]},"fee_structure_prose":{"type":"string"}}},"governing_law":{"type":"string"},"notarisation_required":{"type":"boolean"},"signatories":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/signatory"}}}}