File size: 1,901 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
69
70
71
72
73
74
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://flamehaven01.github.io/STEM-BIO-AI/docs/regulatory_basis_registry.schema.json",
  "title": "STEM BIO-AI Regulatory Basis Registry",
  "type": "object",
  "required": [
    "schema_version",
    "as_of",
    "display_note",
    "sources"
  ],
  "properties": {
    "schema_version": {
      "type": "string"
    },
    "as_of": {
      "type": "string",
      "description": "Human-readable month or date used in report note, e.g. 'May 2026'"
    },
    "display_note": {
      "type": "object",
      "required": [
        "title",
        "body_line_1",
        "body_line_2"
      ],
      "properties": {
        "title": { "type": "string" },
        "body_line_1": { "type": "string" },
        "body_line_2": { "type": "string" }
      },
      "additionalProperties": false
    },
    "sources": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "jurisdiction",
          "title",
          "status",
          "url",
          "used_for"
        ],
        "properties": {
          "id": { "type": "string" },
          "jurisdiction": { "type": "string" },
          "title": { "type": "string" },
          "status": {
            "type": "string",
            "enum": [
              "law_in_force",
              "final_guidance",
              "final_framework",
              "draft_guidance"
            ]
          },
          "published_date": { "type": ["string", "null"] },
          "effective_date": { "type": ["string", "null"] },
          "url": { "type": "string" },
          "used_for": {
            "type": "array",
            "items": { "type": "string" }
          },
          "notes": { "type": ["string", "null"] }
        },
        "additionalProperties": false
      }
    }
  },
  "additionalProperties": false
}