-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalized-input.schema.json
More file actions
60 lines (60 loc) · 1.15 KB
/
normalized-input.schema.json
File metadata and controls
60 lines (60 loc) · 1.15 KB
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://axym.dev/schemas/v1/record/normalized-input.schema.json",
"title": "Axym Normalized Record Input",
"type": "object",
"additionalProperties": false,
"required": [
"source",
"source_product",
"record_type",
"timestamp",
"event",
"controls"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
},
"source_product": {
"type": "string",
"minLength": 1
},
"record_type": {
"type": "string",
"minLength": 1
},
"agent_id": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"event": {
"type": "object"
},
"metadata": {
"type": "object"
},
"relationship": {
"type": "object"
},
"controls": {
"type": "object",
"additionalProperties": false,
"required": [
"permissions_enforced"
],
"properties": {
"permissions_enforced": {
"type": "boolean"
},
"approved_scope": {
"type": "string"
}
}
}
}
}