structured_schema_1.json 499 Bytes
Newer Older
1
{
2
3
4
  "type": "array",
  "items": {
    "type": "object",
5
    "properties": {
6
7
8
9
10
11
12
      "name": { "type": "string" },
      "race": { "type": "string" },
      "class": { "type": "string" },
      "level": { "type": "integer" },
      "background": { "type": "string" },
      "alignment": { "type": "string" },
      "backstory": { "type": "string" }
13
    },
14
15
16
17
18
19
20
21
22
23
24
25
    "required": [
      "name",
      "race",
      "class",
      "level",
      "background",
      "alignment",
      "backstory"
    ]
  }
}