File size: 4,523 Bytes
c390676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://africanmarketos.com/benchmarks/mvr-bench/schema/scenario.schema.json",
  "title": "MVR-Bench Scenario",
  "type": "object",
  "required": ["id", "version", "case_type", "market", "venture", "evidence_pack", "question"],
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^mvrb-dev-v1-[0-9]{3}$"
    },
    "version": {
      "type": "string"
    },
    "case_type": {
      "type": "string",
      "enum": [
        "greenfield_entry",
        "market_entry",
        "accelerator_screening",
        "partner_readiness",
        "funding_readiness",
        "supplier_readiness",
        "cfo_relational_risk",
        "regulatory_guardian_risk",
        "program_readiness",
        "channel_permission",
        "route_resilience"
      ]
    },
    "market": {
      "type": "object",
      "required": ["country", "sector", "context"],
      "additionalProperties": false,
      "properties": {
        "country": {
          "type": "string",
          "minLength": 2,
          "maxLength": 2
        },
        "sector": {
          "type": "string"
        },
        "context": {
          "type": "string",
          "enum": ["high_context", "emerging_market", "frontier_market", "regulated_market"]
        }
      }
    },
    "venture": {
      "type": "object",
      "required": ["stage", "origin", "channel"],
      "additionalProperties": false,
      "properties": {
        "stage": {
          "type": "string",
          "enum": ["idea", "pre_entry", "pilot", "seed", "scaling", "enterprise"]
        },
        "origin": {
          "type": "string",
          "enum": ["local", "foreign", "diaspora", "regional", "public_sector", "ngo"]
        },
        "channel": {
          "type": "string"
        }
      }
    },
    "evidence_pack": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["claim", "evidence_origin", "source_grade", "verifiable"],
        "additionalProperties": false,
        "properties": {
          "claim": {
            "type": "string"
          },
          "evidence_origin": {
            "type": "string",
            "enum": ["public_document", "field_research", "operator_claim", "transaction_log", "partner_reference", "regulatory_artifact", "customer_signal", "analyst_note"]
          },
          "source_grade": {
            "type": "string",
            "enum": ["A", "B", "C", "D"]
          },
          "verifiable": {
            "type": "boolean"
          },
          "stakeholder_class": {
            "type": "string"
          },
          "dimension_hint": {
            "type": "string"
          }
        }
      }
    },
    "question": {
      "type": "string"
    },
    "public_label": {
      "$ref": "#/$defs/public_label"
    },
    "_canary": {
      "type": "string"
    },
    "_usage_boundary": {
      "$ref": "#/$defs/usage_boundary"
    }
  },
  "$defs": {
    "public_label": {
      "type": "object",
      "required": ["verdict", "blocking_dimensions", "abstain_expected", "rationale_public"],
      "additionalProperties": false,
      "properties": {
        "verdict": {
          "type": "string",
          "enum": ["permission_not_yet_earned", "pilot_only", "pilot_ready", "ready_to_scale"]
        },
        "blocking_dimensions": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "abstain_expected": {
          "type": "boolean"
        },
        "rationale_public": {
          "type": "string"
        }
      }
    },
    "usage_boundary": {
      "type": "object",
      "required": [
        "allowed_use",
        "model_training_allowed",
        "reverse_engineering_allowed",
        "commercial_use_requires_authorization",
        "protected_assets_not_published",
        "contact"
      ],
      "additionalProperties": false,
      "properties": {
        "allowed_use": {
          "type": "string"
        },
        "model_training_allowed": {
          "const": false
        },
        "reverse_engineering_allowed": {
          "const": false
        },
        "commercial_use_requires_authorization": {
          "const": true
        },
        "protected_assets_not_published": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "contact": {
          "type": "string"
        }
      }
    }
  }
}