-
Notifications
You must be signed in to change notification settings - Fork 0
/
equipment.yaml
56 lines (56 loc) · 1.46 KB
/
equipment.yaml
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
type: object
title: Equipment
allOf:
- $ref: 'resource.yaml'
- type: object
properties:
name:
type: string
description: Equipment Name.
example: Cates 8360R 055358
serialNumber:
type: string
description: Serial Number of the Equipment and passed on the query parameter
example: 1RW8360RLCD055358
engineSerialNumber:
type: string
isSerialNumberCertified:
type: boolean
example: true
make:
$ref: './equipment-make.yaml'
type:
$ref: './equipment-type.yaml'
model:
$ref: './equipment-model.yaml'
organization:
$ref: './resource.yaml'
archived:
type: boolean
example: true
principalId:
type: string
description: Unique id for principal equipment
organizationRole:
$ref: './organization-role.yaml'
ERID:
type: string
description: |
Unique identifier of the Equipment.
example: fcdc83cb-8840-4215-84b5-1769889db932
icon:
$ref: './equipment-icon.yaml'
offsets:
$ref: './offsets.yaml'
devices:
items:
anyOf:
- $ref: './display.yaml'
- $ref: './position-receiver.yaml'
- $ref: './telematics-gateway.yaml'
capabilities:
type: array
items:
$ref: './capability.yaml'
pairingDetails:
$ref: './pairing-details.yaml'