Record Key
any
Any valid record key
Properties
config
ref
#config
Required
The configuration details
createdAt
string
datetime
Required
The date and time when the config was created
dependencies
ref
#dependencies
Required
Dependencies required for this config
description
string
Optional
The description for config
maxLength: 2000 bytesname
string
Required
The name of the config (e.g. Main)
maxLength: 100 bytesminLength: 1 bytesupdatedAt
string
datetime
Required
The date and time when the config was last updated
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"config",
"createdAt",
"updatedAt",
"dependencies"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "The name of the config (e.g. Main)"
},
"config": {
"ref": "#config",
"type": "ref",
"description": "The configuration details"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date and time when the config was created"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "The date and time when the config was last updated"
},
"description": {
"type": "string",
"maxLength": 2000,
"description": "The description for config"
},
"dependencies": {
"ref": "#dependencies",
"type": "ref",
"description": "Dependencies required for this config"
}
}
}
}