File size: 2,068 Bytes
6a1cba7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "stem-ai-airi-registry.schema.v1",
  "title": "STEM BIO-AI AIRI Registry",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "registry_version",
    "upstream_name",
    "upstream_source_url",
    "upstream_version",
    "upstream_snapshot_date",
    "upstream_license",
    "upstream_row_count",
    "local_transform_version",
    "local_transform_date",
    "attribution_note",
    "risks"
  ],
  "properties": {
    "registry_version": { "type": "string" },
    "upstream_name": { "type": "string" },
    "upstream_source_url": { "type": "string" },
    "upstream_version": { "type": "string" },
    "upstream_snapshot_date": { "type": "string" },
    "upstream_license": { "type": "string" },
    "upstream_row_count": { "type": "integer", "minimum": 1 },
    "local_transform_version": { "type": "string" },
    "local_transform_date": { "type": "string" },
    "attribution_note": { "type": "string" },
    "risks": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "id",
          "title",
          "description",
          "level",
          "parent_category_id",
          "subdomain_id",
          "paper_ref",
          "paper_title",
          "causal_entity",
          "causal_intent",
          "causal_timing",
          "in_runtime_bundle"
        ],
        "properties": {
          "id": { "type": "string" },
          "title": { "type": "string" },
          "description": { "type": "string" },
          "level": { "type": "string" },
          "parent_category_id": { "type": "string" },
          "subdomain_id": { "type": "string" },
          "paper_ref": { "type": "string" },
          "paper_title": { "type": "string" },
          "causal_entity": { "type": "string" },
          "causal_intent": { "type": "string" },
          "causal_timing": { "type": "string" },
          "in_runtime_bundle": { "type": "boolean" }
        }
      }
    }
  }
}