-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivation_source.schema
63 lines (63 loc) · 1.39 KB
/
activation_source.schema
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
{
"$id": "activation_source.schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "The source activation records from some other application.\nMust be reformatted and validated to be useful.",
"properties": {
"customer_name": {
"domain": "name",
"maxLength": 64,
"minLength": 1,
"title": "Customer Name",
"type": "string"
},
"device_name": {
"domain": "name",
"maxLength": 16,
"minLength": 1,
"title": "Device Name",
"type": "string"
},
"device_type_name": {
"domain": "name",
"maxLength": 8,
"minLength": 1,
"title": "Device Type Name",
"type": "string"
},
"service_name": {
"domain": "name",
"maxLength": 16,
"minLength": 1,
"title": "Service Name",
"type": "string"
},
"start_date": {
"format": "date-time",
"title": "Start Date",
"type": "string"
},
"latitude": {
"domain": "latitude",
"maxLength": 16,
"title": "Latitude",
"type": "string"
},
"longitude": {
"domain": "longitude",
"maxLength": 16,
"title": "Longitude",
"type": "string"
}
},
"required": [
"customer_name",
"device_name",
"device_type_name",
"service_name",
"start_date",
"latitude",
"longitude"
],
"title": "Activation",
"type": "object"
}