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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
| {
| "$schema": "https://json-schema.org/draft/2020-12/schema",
| "title": "GeoAI Project Solution Result",
| "description": "Project-solution orchestration result. Events are candidates for human review, not final safety or compliance conclusions.",
| "type": "object",
| "required": [
| "run_metadata",
| "observations",
| "events",
| "artifacts"
| ],
| "properties": {
| "run_metadata": {
| "type": "object",
| "required": [
| "solution_id",
| "created_at",
| "input_count",
| "device",
| "limitations"
| ],
| "properties": {
| "solution_id": { "type": "string" },
| "created_at": { "type": "string", "format": "date-time" },
| "input_count": { "type": "integer", "minimum": 0 },
| "device": { "type": "string" },
| "capability_versions": { "type": "object" },
| "elapsed_seconds": { "type": "number", "minimum": 0 },
| "limitations": {
| "type": "array",
| "items": { "type": "string" }
| }
| }
| },
| "observations": {
| "type": "array",
| "items": {
| "type": "object",
| "required": ["observation_id", "class_name", "confidence"],
| "properties": {
| "observation_id": { "type": "string" },
| "class_name": { "type": "string" },
| "confidence": { "type": "number", "minimum": 0, "maximum": 1 },
| "geometry": { "type": "object" },
| "properties": { "type": "object" }
| }
| }
| },
| "events": {
| "type": "array",
| "items": {
| "type": "object",
| "required": ["event_id", "status", "rule_hits"],
| "properties": {
| "event_id": { "type": "string" },
| "status": { "const": "candidate_for_review" },
| "severity": { "type": "string" },
| "rule_hits": {
| "type": "array",
| "items": { "type": "string" }
| },
| "observation_ids": {
| "type": "array",
| "items": { "type": "string" }
| }
| }
| }
| },
| "artifacts": {
| "type": "array",
| "items": {
| "type": "object",
| "required": ["kind", "path"],
| "properties": {
| "kind": { "type": "string" },
| "path": { "type": "string" }
| }
| }
| }
| }
| }
|
|