Skip to content

RFC-030: Japan AI Promotion Act — Innovation-Centric Governance — 3. Context Declaration Schema

AIGP SpecificationRFC-030: Japan AI Promotion Act — Innovation-Centric Governance › 3. Context Declaration Schema

← 2. Guiding Principles Mapped to AIGP · Section index · 4. Governance Rules →

3. Context Declaration Schema

3.1 Japanese Context Declaration

{
"japanese_context": {
"active": true,
"governance_framework": "JAPAN_AI_PROMOTION_ACT",
"innovation_first": true,
"sector": "HEALTHCARE",
"hiroshima_principles": [
"INCLUSIVE_AI",
"TRUSTWORTHY_AI",
"INTEROPERABLE_GOVERNANCE",
"RISK_BASED_APPROACH",
"MULTI_STAKEHOLDER"
],
"promotion_obligations": {
"state_adoption": true,
"citizen_literacy": true,
"research_driven": true
},
"regulatory_approach": "GUIDANCE_BASED",
"proportionality_required": true,
"safety_reliability": {
"standards_compliance": ["JIS_X_25010", "ISO_42001"],
"guidance_framework": "METI_AI_GOVERNANCE_GUIDELINES",
"prohibition_applied": false,
"scientific_basis_required": true
},
"transparency": {
"hiroshima_process_aligned": true,
"disclosure_level": "PROPORTIONAL",
"public_reporting": true
},
"fair_competition": {
"market_concentration_check": true,
"interoperability_required": true,
"open_innovation_promoted": true
},
"declaration_date": "2026-06-17T00:00:00Z"
}
}

3.2 JSON Schema

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "JapaneseContext",
"type": "object",
"properties": {
"japanese_context": {
"type": "object",
"required": ["active", "governance_framework", "innovation_first", "sector"],
"properties": {
"active": { "type": "boolean" },
"governance_framework": {
"type": "string",
"enum": ["JAPAN_AI_PROMOTION_ACT"]
},
"innovation_first": { "type": "boolean" },
"sector": {
"type": "string",
"enum": ["HEALTHCARE", "EDUCATION", "MANUFACTURING", "PUBLIC_SERVICES", "FINANCE", "AGRICULTURE", "DEFENSE"]
},
"hiroshima_principles": {
"type": "array",
"items": {
"type": "string",
"enum": ["INCLUSIVE_AI", "TRUSTWORTHY_AI", "INTEROPERABLE_GOVERNANCE", "RISK_BASED_APPROACH", "MULTI_STAKEHOLDER"]
}
},
"promotion_obligations": {
"type": "object",
"properties": {
"state_adoption": { "type": "boolean" },
"citizen_literacy": { "type": "boolean" },
"research_driven": { "type": "boolean" }
}
},
"regulatory_approach": {
"type": "string",
"enum": ["GUIDANCE_BASED", "PROHIBITION_BASED", "HYBRID"]
},
"proportionality_required": { "type": "boolean" },
"safety_reliability": {
"type": "object",
"properties": {
"standards_compliance": { "type": "array", "items": { "type": "string" } },
"guidance_framework": { "type": "string" },
"prohibition_applied": { "type": "boolean" },
"scientific_basis_required": { "type": "boolean" }
}
},
"transparency": {
"type": "object",
"properties": {
"hiroshima_process_aligned": { "type": "boolean" },
"disclosure_level": {
"type": "string",
"enum": ["MINIMAL", "PROPORTIONAL", "FULL"]
},
"public_reporting": { "type": "boolean" }
}
},
"fair_competition": {
"type": "object",
"properties": {
"market_concentration_check": { "type": "boolean" },
"interoperability_required": { "type": "boolean" },
"open_innovation_promoted": { "type": "boolean" }
}
},
"declaration_date": { "type": "string", "format": "date-time" }
}
}
}
}


← 2. Guiding Principles Mapped to AIGP · Section index · 4. Governance Rules →