-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathex_agent_dictionary.json
83 lines (82 loc) · 2.47 KB
/
ex_agent_dictionary.json
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
75
76
77
78
79
80
81
82
{
"dictionary": {
"version": "1.0.0",
"title": "Agent Compute Contract",
"description": "Agent Compute Contract is a JSON schema for defining the contract between the agent and the arena.",
"type": "object",
"properties": {
"agent_compute_contract": {
"$ref": "#/definitions/agent_compute_contract_dictionary"
}
}
},
"agent_compute_contract": {
"type": "object",
"properties": {
"metadata": {
"type": "object",
"properties": {
"title": { "type": "string" },
"author": { "type": "string" },
"timestamp": { "type": "string" },
"arena_session": {
"type": "object",
"properties": {
"id": { "type": "string" },
"start_time": { "type": "string" },
"end_time": { "type": "string" },
"brain_id": { "type": "string" }
},
"required": ["id", "start_time", "end_time", "brain_id"]
},
"version": { "type": "string" },
"acc_type": { "type": "string" },
"source_repository": { "type": "string" },
"reference_branch": { "type": "string" },
"semantic_versioning_key": { "type": "string" },
"assets": {
"type": "object",
"properties": {
"pk": { "type": "string" },
"ck": { "type": "string" }
},
"required": ["pk", "ck"]
}
},
"required": [
"title", "author", "timestamp", "arena_session", "version",
"acc_type", "source_repository", "reference_branch",
"semantic_versioning_key", "assets"
]
},
"abstract": { "type": "string" },
"problem": {
"type": "object",
"properties": {
"description": { "type": "string" }
},
"required": ["description"]
},
"proposed_solution": {
"type": "object",
"properties": {
"overview": { "type": "string" }
},
"required": ["overview"]
},
"files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"filename": { "type": "string" },
"path": { "type": "string" },
"content": { "type": "string" }
},
"required": ["filename", "path", "content"]
}
}
},
"required": ["metadata", "abstract", "problem", "proposed_solution", "files"]
}
}