Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 184603
1
{
2
"title": "Schema for JSON profiles.",
3
"type": "object",
4
"properties": {
5
"version": {
6
"type": "integer",
7
"minimum": 0
8
},
9
"costs": {
10
"type": "array",
11
"items": {
12
"type": "object",
13
"properties": {
14
"description": {
15
"type": "string"
16
},
17
"unit": {
18
"type": "string"
19
}
20
},
21
"additionalProperties": false
22
},
23
"minItems": 1
24
},
25
"functions": {
26
"type": "array",
27
"items": {
28
"type": "object",
29
"properties": {
30
"name": {
31
"type": "string"
32
},
33
"module": {
34
"type": "string"
35
},
36
"process": {
37
"type": "string"
38
}
39
},
40
"additionalProperties": false,
41
"required": ["name"]
42
}
43
},
44
"events": {
45
"type": "array",
46
"items": {
47
"type": "object",
48
"properties": {
49
"callchain": {
50
"type": "array",
51
"items": {
52
"description": "function index, callee to caller ordering",
53
"type": "integer"
54
},
55
"minItems": 1
56
},
57
"cost": {
58
"type": "array",
59
"items": {
60
"type": "number"
61
},
62
"minItems": 1
63
}
64
},
65
"additionalProperties": false,
66
"required": ["callchain", "cost"]
67
}
68
}
69
},
70
"additionalProperties": false,
71
"required": ["version", "costs", "functions", "events"]
72
}
73
74