28 lines
473 B
JSON
28 lines
473 B
JSON
{
|
|
"$ref": "#/definitions/LoggerOptions",
|
|
"definitions": {
|
|
"LoggerOptions": {
|
|
"type": "object",
|
|
"properties": {
|
|
"message": {
|
|
"type": "string"
|
|
},
|
|
"tags": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"level": {
|
|
"enum": ["debug", "error", "warn"],
|
|
"type": "string"
|
|
},
|
|
"error": {},
|
|
"payload": {}
|
|
},
|
|
"required": ["message"]
|
|
}
|
|
},
|
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
}
|