Files
2026-07-13 12:33:44 +08:00

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#"
}