blob: 4ad2ea7f16914dae9fd5d35a863600d837fa8b3a (
plain)
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
|
[
{
"namespace": "manifest",
"types": [
{
"id": "NativeHostManifest",
"type": "object",
"description": "Represents a native host manifest file",
"properties": {
"name": {
"type": "string",
"pattern": "^\\w+(\\.\\w+)*$"
},
"description": {
"type": "string"
},
"path": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"stdio"
]
},
"allowed_extensions": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "manifest.ExtensionID"
}
}
}
}
]
}
]
|