File size: 1,390 Bytes
dc4db28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "Element",
  "description": "Class representing an elemental entity with various attributes and capabilities.",
  "strict": false,
  "parameters": {
    "type": "object",
    "required": [
      "name",
      "symbol",
      "representation",
      "properties",
      "interactions",
      "defense_ability"
    ],
    "properties": {
      "name": {
        "type": "string",
        "description": "The name of the element."
      },
      "symbol": {
        "type": "string",
        "description": "The chemical symbol of the element."
      },
      "properties": {
        "type": "array",
        "items": {
          "type": "string",
          "description": "A property of the element."
        },
        "description": "List of traits that describe the properties of the element."
      },
      "interactions": {
        "type": "array",
        "items": {
          "type": "string",
          "description": "An interaction related to the element."
        },
        "description": "List of interactions with other elements or influences."
      },
      "representation": {
        "type": "string",
        "description": "The programming representation of the element."
      },
      "defense_ability": {
        "type": "string",
        "description": "Describes how the element can defend itself."
      }
    },
    "additionalProperties": false
  }
}