Phase 1 of WIA-LEG-006 establishes the fundamental data structures that enable interoperable digital asset inheritance across all platforms, blockchains, and legal systems. Just as HTML provides a universal format for web pages and JSON enables data exchange between applications, the WIA-LEG-006 data format creates a lingua franca for digital inheritance planning.
This chapter provides comprehensive technical specifications for implementing Phase 1, including JSON schemas, field definitions, validation rules, and real-world examples. Developers, wallet providers, and estate planning platforms can use these specifications to build compatible inheritance solutions.
Every digital asset inheritance plan in WIA-LEG-006 follows a standardized hierarchical structure:
{
"wiaStandard": "LEG-006",
"version": "1.0",
"inheritancePlan": {
"planId": "unique-identifier",
"metadata": { },
"owner": { },
"assets": [ ],
"beneficiaries": [ ],
"distribution": { },
"triggers": [ ],
"legal": { },
"execution": { }
},
"signatures": [ ]
}
The metadata section contains administrative and descriptive information about the inheritance plan:
"metadata": {
"created": "2025-01-15T10:30:00Z",
"lastModified": "2025-01-20T14:45:00Z",
"version": "1.2",
"previousVersionHash": "0x7f9fade1c0d57a7af66ab4ead79fade1c0d57a7af66ab4ead7c2c2eb7b11a91385",
"title": "John Doe Digital Asset Estate Plan",
"description": "Comprehensive plan for crypto, NFTs, and digital real estate",
"jurisdiction": "US-CA",
"language": "en-US",
"currency": "USD",
"tags": ["cryptocurrency", "nft", "metaverse"],
"confidentiality": "private",
"encryption": {
"algorithm": "AES-256-GCM",
"keyDerivation": "PBKDF2-HMAC-SHA256",
"encryptedFields": ["assets.*.access", "beneficiaries.*.contact"]
}
}
| Field | Type | Required | Description |
|---|---|---|---|
| created | ISO 8601 | Yes | Plan creation timestamp (UTC) |
| lastModified | ISO 8601 | Yes | Most recent update timestamp |
| version | String | Yes | Plan version number (semantic versioning) |
| previousVersionHash | Hex String | No | SHA-256 hash of previous version for audit trail |
| jurisdiction | ISO 3166-2 | Yes | Primary legal jurisdiction code |
| encryption | Object | Conditional | Encryption details if sensitive fields are encrypted |
The owner section identifies the individual or entity creating the inheritance plan:
"owner": {
"identity": {
"did": "did:wia:owner:7f9fade1c0d5",
"legalName": "John Robert Doe",
"dateOfBirth": "1975-06-15",
"nationality": "US",
"taxId": "encrypted-SSN-hash",
"biometricHash": "sha256-fingerprint-template"
},
"contact": {
"email": "john.doe@example.com",
"phone": "+1-555-0123",
"address": {
"street": "123 Main Street",
"city": "San Francisco",
"state": "CA",
"postalCode": "94102",
"country": "US"
}
},
"authentication": {
"methods": ["biometric", "hardware-key", "password"],
"mfa": true,
"recoveryContacts": ["alice.smith@example.com", "bob.johnson@example.com"]
},
"legal": {
"capacity": "full",
"powerOfAttorney": "did:wia:attorney:abc456",
"guardian": null
}
}
The assets section is the most complex part of the data format, accommodating diverse digital asset types:
{
"assetId": "asset-crypto-001",
"type": "cryptocurrency",
"classification": "primary-holding",
"cryptocurrency": {
"symbol": "BTC",
"fullName": "Bitcoin",
"network": "mainnet",
"amount": "2.45678",
"walletType": "hardware",
"walletProvider": "Ledger",
"addresses": [
{
"address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
"type": "P2WPKH",
"balance": "1.23456",
"derivationPath": "m/84'/0'/0'/0/0"
},
{
"address": "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq",
"type": "P2WPKH",
"balance": "1.22222",
"derivationPath": "m/84'/0'/0'/0/1"
}
]
},
"access": {
"method": "multi-sig",
"requiredSignatures": 2,
"totalKeys": 3,
"keyShares": [
{
"shareId": 1,
"holder": "owner",
"location": "Ledger Nano X - Serial ABC123"
},
{
"shareId": 2,
"holder": "did:wia:executor:xyz789",
"location": "Encrypted cloud backup"
},
{
"shareId": 3,
"holder": "did:wia:custodian:trust456",
"location": "Professional custodian vault"
}
],
"seedPhraseBackup": {
"method": "shamir-secret-sharing",
"threshold": 3,
"totalShares": 5,
"shareLocations": ["safe-deposit-box-1", "attorney-vault", "family-member-1", "family-member-2", "backup-trustee"]
}
},
"valuation": {
"acquisitionCost": {
"amount": 50000,
"currency": "USD",
"date": "2020-03-15"
},
"currentValue": {
"amount": 125000,
"currency": "USD",
"asOf": "2025-01-15",
"source": "CoinGecko API"
},
"taxBasis": "FIFO"
},
"metadata": {
"description": "Primary Bitcoin holdings for retirement",
"priority": "high",
"notes": "Check address balances quarterly",
"attachments": ["acquisition-records.pdf", "tax-lot-tracking.xlsx"]
}
}
{
"assetId": "asset-nft-001",
"type": "nft",
"classification": "collectible",
"nft": {
"blockchain": "Ethereum",
"standard": "ERC-721",
"contractAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"tokenId": "12345",
"ownerAddress": "0x1234567890abcdef1234567890abcdef12345678",
"metadata": {
"name": "CryptoPunk #12345",
"description": "One of 10,000 unique collectible characters",
"image": "ipfs://QmX7KwXNFjKj8w3nQGxBvCvqV2zxK9yDhXjL8pTvWqRsN5",
"attributes": [
{"trait_type": "Type", "value": "Alien"},
{"trait_type": "Accessory", "value": "3D Glasses"}
],
"externalUrl": "https://cryptopunks.app/cryptopunks/details/12345"
},
"provenance": [
{"from": "0x0000000000000000000000000000000000000000", "to": "0xabc...", "date": "2017-06-23"},
{"from": "0xabc...", "to": "0x1234567890abcdef1234567890abcdef12345678", "date": "2021-08-15", "price": "95 ETH"}
]
},
"valuation": {
"acquisitionCost": {"amount": 285000, "currency": "USD", "date": "2021-08-15"},
"currentValue": {"amount": 320000, "currency": "USD", "asOf": "2025-01-15", "source": "OpenSea floor price"},
"appraisal": {"value": 350000, "appraiser": "Certified NFT Appraiser Inc.", "date": "2024-12-01"}
},
"rights": {
"copyright": "retained by creator (Larva Labs)",
"commercialUse": "permitted under CryptoPunks license",
"transferable": true,
"royalties": {"percentage": 0, "recipient": null}
}
}
{
"assetId": "asset-land-001",
"type": "digital-real-estate",
"classification": "investment",
"metaverseProperty": {
"platform": "Decentraland",
"parcels": [
{"coordinates": {"x": 142, "y": -89}, "size": "1x1", "landId": "0x..."},
{"coordinates": {"x": 143, "y": -89}, "size": "1x1", "landId": "0x..."}
],
"totalArea": "2 parcels",
"blockchain": "Ethereum",
"contractAddress": "0xf87e31492faf9a91b02ee0deaad50d51d56d5d4d",
"tokenIds": ["11523", "11524"],
"developments": [
{
"type": "art-gallery",
"name": "Digital Art Showcase",
"description": "3D gallery featuring digital art collection",
"builderCredit": "MetaArchitects Studio",
"files": ["scene.json", "models/gallery.glb"]
}
]
},
"valuation": {
"acquisitionCost": {"amount": 25000, "currency": "USD", "date": "2022-05-10"},
"currentValue": {"amount": 78000, "currency": "USD", "asOf": "2025-01-15"},
"revenueStream": {"monthlyRental": 500, "currency": "MANA", "usdEquivalent": 200}
},
"access": {
"platformAccount": {
"username": "johndoe_dcl",
"email": "john.doe@example.com",
"wallet": "0x1234567890abcdef1234567890abcdef12345678"
},
"buildPermissions": "owner-only"
}
}
The beneficiaries section defines who will receive assets and under what conditions:
"beneficiaries": [
{
"beneficiaryId": "ben-001",
"identity": {
"did": "did:wia:beneficiary:alice123",
"legalName": "Alice Marie Smith",
"relationship": "daughter",
"dateOfBirth": "2000-03-22",
"contact": {
"email": "alice.smith@example.com",
"phone": "+1-555-0124"
}
},
"allocation": {
"percentage": 50,
"specificAssets": ["asset-crypto-001", "asset-nft-001"],
"residualShare": 50
},
"conditions": {
"ageRequirement": 25,
"educationMilestone": "college-graduation",
"trustStructure": {
"type": "spendthrift-trust",
"trustee": "did:wia:trustee:professional789",
"distributionSchedule": [
{"age": 25, "percentage": 25},
{"age": 30, "percentage": 25},
{"age": 35, "percentage": 50}
]
}
},
"contingent": {
"primary": true,
"alternates": ["ben-002", "ben-003"],
"failureConditions": ["predeceased", "disclaimed", "incapacitated"]
}
},
{
"beneficiaryId": "ben-002",
"identity": {
"did": "did:wia:beneficiary:bob456",
"legalName": "Robert James Johnson",
"relationship": "son",
"dateOfBirth": "2003-11-08"
},
"allocation": {
"percentage": 40,
"specificAssets": ["asset-land-001"],
"residualShare": 40
},
"conditions": {
"ageRequirement": 21,
"noTrust": true
}
},
{
"beneficiaryId": "ben-003",
"identity": {
"type": "charitable-organization",
"legalName": "Digital Divide Foundation",
"taxId": "EIN-12-3456789",
"charityRegistration": "501(c)(3)",
"wallet": "0xCharity123456789abcdef"
},
"allocation": {
"percentage": 10,
"residualShare": 10
},
"purpose": "Promoting cryptocurrency education in underserved communities"
}
]
The distribution section specifies how assets are allocated among beneficiaries:
"distribution": {
"method": "mixed",
"rules": [
{
"ruleId": "rule-001",
"type": "specific-bequest",
"asset": "asset-crypto-001",
"beneficiary": "ben-001",
"condition": "age >= 25"
},
{
"ruleId": "rule-002",
"type": "percentage-split",
"assets": ["asset-nft-*"],
"beneficiaries": [
{"id": "ben-001", "percentage": 60},
{"id": "ben-002", "percentage": 40}
]
},
{
"ruleId": "rule-003",
"type": "residual",
"beneficiaries": [
{"id": "ben-001", "percentage": 50},
{"id": "ben-002", "percentage": 40},
{"id": "ben-003", "percentage": 10}
]
}
],
"simultaneousDeath": {
"presumption": "beneficiary-predeceased",
"survivorshipPeriod": "30 days"
},
"taxOptimization": {
"strategy": "marital-charitable-split",
"estateTaxExemption": 13610000,
"jurisdiction": "US-Federal"
}
}
Multiple trigger types can be configured to initiate inheritance:
"triggers": [
{
"triggerId": "trigger-001",
"type": "dead-mans-switch",
"inactivityPeriod": 365,
"unit": "days",
"checkInMethod": "biometric-app",
"notificationSchedule": [
{"beforeTrigger": 60, "recipients": ["owner"], "method": "email"},
{"beforeTrigger": 30, "recipients": ["owner", "executor"], "method": "sms"},
{"beforeTrigger": 7, "recipients": ["owner", "executor", "ben-001"], "method": "certified-mail"}
],
"gracePeriod": 14,
"resetOnActivity": true
},
{
"triggerId": "trigger-002",
"type": "oracle-verified",
"oracle": {
"type": "death-certificate",
"provider": "Vital Statistics Oracle Network",
"apiEndpoint": "https://oracles.wia.gov/vital-stats",
"requiredConfirmations": 3,
"verificationMethod": "multi-jurisdiction-consensus"
}
},
{
"triggerId": "trigger-003",
"type": "manual-executor",
"authorizedParties": ["did:wia:executor:xyz789"],
"requiredSignatures": 2,
"signatories": ["executor", "attorney"],
"documentationRequired": ["death-certificate", "letters-testamentary"]
}
],
"triggerLogic": {
"operator": "OR",
"minimumConfidence": 0.95,
"disputeResolution": {
"arbitrator": "WIA Dispute Resolution Service",
"appealPeriod": 30
}
}
Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.
Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.
Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.