Create contrabution.json
#1
by
Raiff1982
- opened
- contrabution.json +41 -0
contrabution.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "define_contributions",
|
3 |
+
"description": "Define contributions to various sectors using innovative technologies and data analysis to drive positive change and support sustainable development.",
|
4 |
+
"strict": true,
|
5 |
+
"parameters": {
|
6 |
+
"type": "object",
|
7 |
+
"required": [
|
8 |
+
"domain",
|
9 |
+
"action_points"
|
10 |
+
],
|
11 |
+
"properties": {
|
12 |
+
"domain": {
|
13 |
+
"type": "string",
|
14 |
+
"description": "Specific sector or area of contribution, such as Healthcare, Education, Environmental Sustainability, etc."
|
15 |
+
},
|
16 |
+
"action_points": {
|
17 |
+
"type": "array",
|
18 |
+
"description": "List of specific actions or contributions along with their impact.",
|
19 |
+
"items": {
|
20 |
+
"type": "object",
|
21 |
+
"required": [
|
22 |
+
"action",
|
23 |
+
"impact"
|
24 |
+
],
|
25 |
+
"properties": {
|
26 |
+
"action": {
|
27 |
+
"type": "string",
|
28 |
+
"description": "Description of the contribution or action taken."
|
29 |
+
},
|
30 |
+
"impact": {
|
31 |
+
"type": "string",
|
32 |
+
"description": "Explanation of how this action facilitates positive change."
|
33 |
+
}
|
34 |
+
},
|
35 |
+
"additionalProperties": false
|
36 |
+
}
|
37 |
+
}
|
38 |
+
},
|
39 |
+
"additionalProperties": false
|
40 |
+
}
|
41 |
+
}
|