-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathobjectDetection.json
64 lines (64 loc) · 1.99 KB
/
objectDetection.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
{
"id": "objectDetection",
"version": 1,
"status": "live",
"name": "Object Detection",
"ephemeral": false,
"attributes": {
"detected": {
"schema": {
"type": "object",
"properties": {
"value": {
"title": "ObjectDetectionValue",
"type": "object",
"additionalProperties": false,
"properties": {
"value": {
"title": "String",
"type": "string",
"maxLength": 255
},
"qty": {
"title": "PositiveInteger",
"type": "integer",
"minimum": 0
},
"data": {
"title": "JsonObject",
"type": "object"
}
},
"required": [
"value"
]
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"enumCommands": []
},
"supportedValues": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"title": "String",
"type": "string",
"maxLength": 255
}
}
},
"additionalProperties": false,
"required": []
},
"enumCommands": []
}
},
"commands": []
}