Record Key
any
Any valid record key
Properties
configInUse
string
uri
Required
The config in use on the device
maxLength: 100 bytesminLength: 1 bytescreatedAt
string
datetime
Required
The date and time when the device was added
distro
ref
#distro
Required
The distro specifications of the device
name
string
Required
The name of the device (e.g. Gaming PC, Laptop)
maxLength: 100 bytesminLength: 1 bytesrig
ref
#rig
Required
The hardware specifications of the device
setup
ref
#setup
Required
The software setup of the device
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"rig",
"setup",
"createdAt",
"distro",
"configInUse"
],
"properties": {
"rig": {
"ref": "#rig",
"type": "ref",
"description": "The hardware specifications of the device"
},
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "The name of the device (e.g. Gaming PC, Laptop)"
},
"setup": {
"ref": "#setup",
"type": "ref",
"description": "The software setup of the device"
},
"distro": {
"ref": "#distro",
"type": "ref",
"description": "The distro specifications of the device"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date and time when the device was added"
},
"configInUse": {
"type": "string",
"format": "uri",
"maxLength": 100,
"minLength": 1,
"description": "The config in use on the device"
}
}
}
}