You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/docs/schemas/event-file-format-detected-...

27 lines
888 B
JSON

{
"$id": "https://lnav.org/event-file-format-detected-v1.schema.json",
"title": "https://lnav.org/event-file-format-detected-v1.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Event fired when a log format is detected for a file.",
"properties": {
"$schema": {
"title": "/$schema",
"type": "string",
"examples": [
"https://lnav.org/event-file-format-detected-v1.schema.json"
]
},
"filename": {
"title": "/filename",
"description": "The path of the file for which a matching format was found",
"type": "string"
},
"format": {
"title": "/format",
"description": "The name of the format",
"type": "string"
}
},
"additionalProperties": false
}