forked from agntcy/oasf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecord.json
More file actions
63 lines (63 loc) · 2.27 KB
/
record.json
File metadata and controls
63 lines (63 loc) · 2.27 KB
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
{
"caption": "Record",
"description": "The data model defines a schema for agentic AI data representation. The schema provides a way to describe the workload's modules, constraints, artifact locators, versioning, ownership, or relevant details.",
"extends": "object",
"name": "record",
"attributes": {
"name": {
"caption": "Name",
"description": "The name of the record. For example: <code>Marketing Strategy Agent</code>.",
"requirement": "required"
},
"version": {
"caption": "Version",
"description": "The version of the record. Values MAY conform to a specific versioning schema.",
"requirement": "required"
},
"schema_version": {
"caption": "Schema Version",
"description": "Version of the OASF schema.",
"requirement": "required"
},
"description": {
"caption": "Description",
"description": "The description of the record.",
"requirement": "required"
},
"authors": {
"caption": "Authors",
"description": "Specifies the authors list of a record.",
"requirement": "required"
},
"annotations": {
"caption": "Annotations",
"description": "Additional metadata associated with this record.",
"requirement": "optional"
},
"created_at": {
"caption": "Creation Time",
"description": "Includes the creation timestamp. Value MUST conform to <a target='_blank' href='https://www.rfc-editor.org/rfc/rfc3339.html'>RFC-3339</a>. For example:<br><code>2024-09-10T23:20:50.520Z</code>,<br><code>2024-09-10 23:20:50.520789Z</code>.",
"requirement": "required"
},
"skills": {
"caption": "Skills",
"description": "List of skills associated with this record.",
"requirement": "required"
},
"domains": {
"caption": "Domains",
"description": "List of domains associated with this record.",
"requirement": "recommended"
},
"locators": {
"caption": "Locators",
"description": "List of source locators where this record can be found or used from.",
"requirement": "optional"
},
"modules": {
"caption": "Modules",
"description": "List of modules that describe this record and its capabilities more in depth.",
"requirement": "recommended"
}
}
}