In this chapter: JSON schemas for cultural events, participant profiles, heritage metadata, media assets, and validation rules. Foundation layer enabling data interoperability.
The Cultural Event is the central entity in WIA-UNI-011. Every exchange activity - whether arts exhibition, sports competition, music performance, or heritage project - is represented as a standardized event record.
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | string | Yes | Unique identifier (UNI-011-{TYPE}-{TIMESTAMP}) |
| eventType | enum | Yes | arts, sports, music, festival, heritage, education |
| title | i18n | Yes | Multilingual event name (ko, en, etc.) |
| description | i18n | Yes | Detailed multilingual description |
| startDate | ISO 8601 | Yes | Event start date and time with timezone |
| endDate | ISO 8601 | Yes | Event end date and time with timezone |
| location | Location | Yes | Structured location with coordinates |
| organizers | Organization[] | Yes | Organizing institutions |
| participants | Participant[] | No | Event participants with roles |
| media | MediaAsset[] | No | Photos, videos, documents |
| tags | string[] | No | Classification and discovery tags |
{
"standard": "WIA-UNI-011",
"version": "2.0",
"eventId": "UNI-011-MUSIC-2025-001",
"eventType": "music",
"title": {
"ko": "λ¨λΆ ν΅μΌ μμ
μΆμ ",
"en": "Inter-Korean Unity Music Festival",
"ko-north": "λΆλ¨ ν΅μΌ μμ
μΆμ "
},
"description": {
"ko": "λ¨λΆ μμ
κ°λ€μ΄ ν¨κ»νλ νν μμ
μΆμ ",
"en": "Peace music festival featuring artists from both Koreas"
},
"startDate": "2025-06-15T18:00:00+09:00",
"endDate": "2025-06-17T22:00:00+09:00",
"location": {
"name": { "ko": "DMZ νν곡μ", "en": "DMZ Peace Park" },
"address": "Paju, Gyeonggi Province",
"coordinates": { "lat": 37.8813, "lng": 126.7569 }
},
"organizers": [
{ "id": "ORG-SK-CULTURE-001", "name": "Ministry of Culture (ROK)" },
{ "id": "ORG-NK-CULTURE-001", "name": "Ministry of Culture (DPRK)" }
],
"unescoCategory": "intangible",
"expectedParticipants": 500,
"tags": ["music", "peace", "unity", "traditional", "modern"]
}
Participant records capture information about individuals involved in cultural exchange while respecting privacy and security requirements.
| Field | Type | Privacy Level | Description |
|---|---|---|---|
| participantId | string | Public | Unique identifier |
| name | i18n | Controlled | Full name in multiple scripts |
| role | enum | Public | artist, athlete, organizer, audience, etc. |
| organization | Organization | Public | Affiliated institution |
| region | enum | Public | south, north, international |
| specialty | string[] | Public | Areas of expertise/performance |
| biography | i18n | Public | Professional biography |
| consentLevel | enum | Private | Data sharing consent level |
Participant data uses three-tier access control:
Cultural heritage items receive rich metadata following UNESCO standards while documenting regional variations across divided Korea.
| Field | Type | Required | Description |
|---|---|---|---|
| heritageId | string | Yes | Unique identifier |
| name | i18n | Yes | Heritage item name with variants |
| category | enum | Yes | music, dance, craft, food, ritual, architecture |
| unescoStatus | enum | No | registered, nominated, candidate, local |
| description | i18n | Yes | Detailed description |
| historicalContext | i18n | Yes | Historical background |
| regionalVariations | Variation[] | No | North/South differences |
| preservationStatus | enum | Yes | excellent, good, fair, endangered, critical |
| media | MediaAsset[] | No | Documentation media |
Heritage items often have different names, practices, or preservation states in North and South Korea. WIA-UNI-011 explicitly documents these variations:
{
"heritageId": "HER-KR-MUSIC-001",
"name": {
"ko": "μ리λ",
"en": "Arirang",
"ko-north": "μ리λ",
"hanja": "ιΏιι"
},
"category": "music",
"unescoStatus": "registered",
"regionalVariations": [
{
"region": "south",
"localName": "μ μ μ리λ",
"characteristics": "Slower tempo, unique melodic structure",
"preservationStatus": "excellent"
},
{
"region": "north",
"localName": "νμμ리λ",
"characteristics": "Faster tempo, orchestral arrangements",
"preservationStatus": "excellent"
}
]
}
Cultural exchange generates massive amounts of media. Proper metadata ensures these assets remain discoverable, contextual, and preserved long-term.
| Field | Type | Required | Description |
|---|---|---|---|
| assetId | string | Yes | Unique identifier |
| type | enum | Yes | photo, video, audio, document, 3d |
| title | i18n | Yes | Asset title |
| description | i18n | No | Detailed description |
| creator | string | Yes | Creator/photographer/videographer |
| created | ISO 8601 | Yes | Creation date and time |
| license | License | Yes | Usage rights and restrictions |
| file | File | Yes | File details (URL, format, size, checksum) |
| relatedEvent | string | No | Event ID if applicable |
| tags | string[] | No | Discovery tags |
Media assets include detailed licensing information enabling proper usage tracking and rights management:
WIA-UNI-011 uses the i18n (internationalization) type for all user-facing text. This structure supports multiple languages and scripts:
{
"title": {
"ko": "νκΈ μ λͺ©",
"ko-north": "μ‘°μ λ§ μ λͺ©",
"en": "English Title",
"zh": "δΈζζ ι’",
"ja": "ζ₯ζ¬θͺγΏγ€γγ«"
}
}
ko - Korean (South Korean standard)ko-north - Korean (North Korean variation)en - Englishhanja - Chinese characters (Hanja)zh, ja, ru - Other languages as neededAll WIA-UNI-011 data must pass validation before being accepted into systems. Validation ensures data quality, consistency, and interoperability.
Organizations with existing cultural databases can migrate to WIA-UNI-011 format using provided conversion tools:
Key Takeaways: