01
02
03
04
05
06
07
08
09
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
{
"$schema": "https://codrjs.com/schema/project.schema.json",
"general": {
"title": "My Project",
"type": "classification",
"slug": "my-project",
"bgColorClass": "bg-pink-600",
"guidelines": "My guidelines go here."
},
"display": {
"inputs": [
{
"type": "text",
"format": "Text displayed to annotator"
}
],
"outputs": [
{
"type": "short-text"
}
]
},
"sample": {
"model": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"_id": {
"type": "string"
}
},
"required": [
"type",
"_id"
]
}
}
}