24 lines
496 B
Plaintext
24 lines
496 B
Plaintext
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"const": "mediaserver.started"
|
|
},
|
|
"event": {
|
|
"type": "object",
|
|
"properties": {
|
|
"port": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 65535
|
|
}
|
|
},
|
|
"required": ["port"],
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"required": ["type", "event"],
|
|
"additionalProperties": false
|
|
} |