Nicholastempleman commited on
Commit
d66d74f
·
verified ·
1 Parent(s): 13e1117

UNMEASURED signed coverage + input-schema + skeleton + pinned eval.yaml. Cite GET /api/gspc. Not a grade. No composite.

Browse files
Files changed (4) hide show
  1. coverage-card.json +35 -0
  2. eval.yaml +12 -4
  3. input-schema.json +28 -0
  4. skeleton.json +33 -0
coverage-card.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "as_of": "2026-08-31T14:16:11Z",
3
+ "did": "did:web:csoai.org#board-attestation-1",
4
+ "payload": {
5
+ "axis": "distribution-integrity",
6
+ "cite": "https://councilof.ai/api/gspc",
7
+ "compute_composite": false,
8
+ "do_not_invent_percentage": true,
9
+ "kind": "gspc.coverage-card/0.1",
10
+ "metamask_is_signer": false,
11
+ "n": 0,
12
+ "not_a_grade": true,
13
+ "schema": "csoai.gspc-axes/0.5",
14
+ "status": "UNMEASURED",
15
+ "task": "represented vs distributed never mixed"
16
+ },
17
+ "schema": "https://councilof.ai/schema/card-v0.json",
18
+ "sha256": "3c0a688b4fd8f8129025e102383194c5952df3a966584f23b6e6304c0bab5aa0",
19
+ "sig_ed25519": "645fd14a198f56e39f340a22afc05bab80467bea13975a09a174221e8095405d4b7edac1f69f415e88932a84dce9e044ba2c02ff174aa6c14515af44a2b3550b",
20
+ "source_urls": [
21
+ "https://councilof.ai/api/gspc",
22
+ "https://huggingface.co/datasets/csoai/gspc-distribution-integrity"
23
+ ],
24
+ "subject": "GSPC distribution-integrity UNMEASURED coverage",
25
+ "surface": "public.notice",
26
+ "tags": [
27
+ "coverage:UNMEASURED",
28
+ "not-a-grade",
29
+ "no-composite"
30
+ ],
31
+ "unmeasured": [
32
+ "distribution-integrity",
33
+ "n=0"
34
+ ]
35
+ }
eval.yaml CHANGED
@@ -32,9 +32,13 @@ axes:
32
  series_id: isoc_eb_ai
33
  pin: "Eurostat isoc_eb_ai · 13.48% · vintage 2024 · fetched 2026-08-25"
34
  - id: anthropic_economic_index
35
- role: cited_component_unmeasured_until_pinned_release
36
  dataset: Anthropic/EconomicIndex
37
- caveat: "Claude usage is not the economy"
 
 
 
 
38
  - id: compute_price
39
  role: gap
40
  - id: ai_investment
@@ -50,9 +54,13 @@ axes:
50
  role: reference_input
51
  pin: "5.92% · vintage 2024 · fetched 2026-08-25"
52
  - id: anthropic_index_labour
53
- role: cited_component_unmeasured_until_pinned_release
54
  dataset: Anthropic/EconomicIndex
55
- caveat: "O*NET/SOC mapped Claude usage, not the labour market"
 
 
 
 
56
  - id: displacement
57
  role: gap
58
  - id: humanoid-labour-index
 
32
  series_id: isoc_eb_ai
33
  pin: "Eurostat isoc_eb_ai · 13.48% · vintage 2024 · fetched 2026-08-25"
34
  - id: anthropic_economic_index
35
+ role: reference_input
36
  dataset: Anthropic/EconomicIndex
37
+ revision: "2ea58ff75e4247d26810c37f10c179edc2466cac"
38
+ release: "release_2026_06_26"
39
+ pin: "June 2026 Cadences · Hugging Face Anthropic/EconomicIndex@2ea58ff75e4247d26810c37f10c179edc2466cac · lastModified 2026-06-26"
40
+ compute_composite: false
41
+ caveat: "Claude usage is not the economy. Cited component only."
42
  - id: compute_price
43
  role: gap
44
  - id: ai_investment
 
54
  role: reference_input
55
  pin: "5.92% · vintage 2024 · fetched 2026-08-25"
56
  - id: anthropic_index_labour
57
+ role: reference_input
58
  dataset: Anthropic/EconomicIndex
59
+ revision: "2ea58ff75e4247d26810c37f10c179edc2466cac"
60
+ release: "release_2026_06_26"
61
+ pin: "June 2026 Cadences · Anthropic/EconomicIndex@2ea58ff75e4247d26810c37f10c179edc2466cac · labor_market_impacts / release_2026_06_26"
62
+ compute_composite: false
63
+ caveat: "O*NET/SOC mapped Claude usage, not the labour market. Cited component only."
64
  - id: displacement
65
  role: gap
66
  - id: humanoid-labour-index
input-schema.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "GSPC FIN coverage input",
4
+ "type": "object",
5
+ "required": [
6
+ "axis",
7
+ "status",
8
+ "unmeasured"
9
+ ],
10
+ "properties": {
11
+ "axis": {
12
+ "type": "string"
13
+ },
14
+ "status": {
15
+ "const": "UNMEASURED"
16
+ },
17
+ "unmeasured": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "string"
21
+ }
22
+ },
23
+ "n": {
24
+ "type": "integer",
25
+ "maximum": 0
26
+ }
27
+ }
28
+ }
skeleton.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "as_of_mined": "2026-08-31",
3
+ "axis": "distribution-integrity",
4
+ "columns": [
5
+ "subject",
6
+ "tokenisation_type",
7
+ "figure_distributed",
8
+ "figure_represented",
9
+ "unit",
10
+ "source_url",
11
+ "as_of",
12
+ "mixed_flag",
13
+ "unmeasured"
14
+ ],
15
+ "companies_house": "16939677",
16
+ "did": "did:web:csoai.org",
17
+ "issuer": "CSOAI Ltd",
18
+ "license": "CC-BY-4.0",
19
+ "public_page_cite": {
20
+ "as_of": "2026-08-30",
21
+ "distributed_usd_billion": 38.4,
22
+ "note": "Hashed public page totals. Not an audit. Do not sum into one TVL.",
23
+ "represented_usd_billion": 380.88,
24
+ "url": "https://app.rwa.xyz/networks"
25
+ },
26
+ "rows": [],
27
+ "rule": "UNMEASURED-first. A skeleton is not a score. Board GET /api/gspc is authority.",
28
+ "status": "UNMEASURED",
29
+ "task": "represented vs distributed never mixed",
30
+ "unmeasured": [
31
+ "no_signed_run"
32
+ ]
33
+ }