JPN-HANKO-001 legal config_error ai_generated true

AI tells someone signing a Japanese contract that a Western-style signature is always acceptable, ignoring the hanko/inkan registration requirement

ID: legal/japan-hanko-signature-requirement

Also available as: JSON · Markdown · 中文
85%Fix Rate
87%Confidence
1Evidence
2024-08-10First Seen

Version Compatibility

VersionStatusIntroducedDeprecatedNotes
Japanese Civil Code (民法) Article 96-2 (Seal) active
Act on the Use of Seals (印鑑使用法) 2022 revision active

Root Cause

Japan's Civil Code and the Act on the Use of Seals (印鑑登録証明書) require a registered hanko (hanko/inkan) for many legal documents, including real estate contracts, marriage registrations, and corporate filings. A Western signature alone is not legally binding for these documents; the hanko must be registered with the local municipality and accompanied by a seal registration certificate (印鑑登録証明書).

generic

中文

日本的民法典和《印鑑使用法》要求许多法律文件使用注册印章(hanko/inkan),包括房地产合同、婚姻登记和公司文件。仅凭西式签名对这些文件没有法律约束力;印章必须在当地市町村注册,并附有印章登记证明书(印鑑登録証明書)。

Official Documentation

https://www.moj.go.jp/MINJI/minji06.html

Workarounds

  1. 90% success When generating contract advice for Japan, output: 'WARNING: For legally binding contracts in Japan, you need a registered hanko (実印). Register your seal at your local city office (市役所) and obtain a seal registration certificate (印鑑登録証明書). See https://www.moj.go.jp/MINJI/minji06.html.'
    When generating contract advice for Japan, output: 'WARNING: For legally binding contracts in Japan, you need a registered hanko (実印). Register your seal at your local city office (市役所) and obtain a seal registration certificate (印鑑登録証明書). See https://www.moj.go.jp/MINJI/minji06.html.'
  2. 85% success In AI training, add a rule: 'If the query involves a legal document in Japan, always ask: Is this a document that requires a registered hanko (e.g., real estate, corporate, marriage)? If yes, advise the user to register their seal and obtain a certificate.'
    In AI training, add a rule: 'If the query involves a legal document in Japan, always ask: Is this a document that requires a registered hanko (e.g., real estate, corporate, marriage)? If yes, advise the user to register their seal and obtain a certificate.'
  3. 80% success For software handling Japanese contracts, add a validation: `if jurisdiction == 'Japan' and document_type in ['real_estate', 'corporate_filing', 'marriage']: require('hanko_registration_number')`
    For software handling Japanese contracts, add a validation: `if jurisdiction == 'Japan' and document_type in ['real_estate', 'corporate_filing', 'marriage']: require('hanko_registration_number')`

中文步骤

  1. 在生成日本合同建议时,输出:'警告:对于日本具有法律约束力的合同,您需要注册印章(実印)。在您当地市役所注册您的印章,并获得印章登记证明书(印鑑登録証明書)。参见 https://www.moj.go.jp/MINJI/minji06.html。'
  2. 在AI训练中,添加规则:'如果查询涉及日本的法律文件,始终询问:这是否是需要注册印章的文件(例如,房地产、公司、婚姻)?如果是,建议用户注册他们的印章并获得证书。'
  3. 对于处理日本合同的软件,添加验证:`if jurisdiction == 'Japan' and document_type in ['real_estate', 'corporate_filing', 'marriage']: require('hanko_registration_number')`

Dead Ends

Common approaches that don't work:

  1. Assume a digital signature (e.g., DocuSign) is equivalent to a hanko for all documents 85% fail

    While Japan's e-signature law (電子署名法) recognizes digital signatures for some purposes, many critical documents like real estate deeds and corporate filings still require a physical hanko with a registration certificate. DocuSign alone is rejected by the Legal Affairs Bureau (法務局).

  2. Tell the user they can use a 'free seal' (free-design hanko) from a souvenir shop 95% fail

    A souvenir hanko is not registered with the municipality and has no legal effect. Only a registered jitsuin (実印) can be used for official documents. Using an unregistered seal voids the contract.

  3. Advise the user to simply sign with a pen and notarize the document abroad 90% fail

    Japanese law does not recognize foreign notarization for domestic contracts that require a hanko. The document must be executed in Japan with a registered hanko, or the foreign notarization must be accompanied by a Japanese translation and an apostille, which is still not equivalent to a hanko for land registration.