-
Notifications
You must be signed in to change notification settings - Fork 4
/
salty-dog.yml
126 lines (116 loc) · 2.37 KB
/
salty-dog.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: salty-dog-meta
definitions:
log-level:
type: string
enum:
- debug
- info
- warn
- error
config-logger:
type: object
required:
- level
- name
properties:
level:
$ref: "salty-dog-meta#/definitions/log-level"
name:
type: string
streams:
type: array
items:
oneOf:
- type: string
- type: object
config:
type: object
required:
- data
properties:
data:
type: object
required:
- logger
properties:
logger:
$ref: "salty-dog-meta#/definitions/config-logger"
name-safe:
type: string
pattern: "[-a-z0-9]+"
name-tag:
type: string
pattern: "[-:a-z0-9]+"
rule:
type: object
additionalProperties: false
required:
# metadata
- name
- desc
- level
- tags
# data
- check
properties:
name:
$ref: "salty-dog-meta#/definitions/name-safe"
desc:
type: string
maxLength: 255
level:
$ref: "salty-dog-meta#/definitions/log-level"
tags:
type: array
items:
$ref: "salty-dog-meta#/definitions/name-tag"
select:
type: string
default: '$'
minLength: 1
filter:
$ref: "http://json-schema.org/draft-07/schema#"
check:
$ref: "http://json-schema.org/draft-07/schema#"
source:
type: object
required:
- name
- rules
properties:
name:
$ref: "salty-dog-meta#/definitions/name-safe"
definitions:
type: object
additionalProperties: false
patternProperties:
"[-a-z]+":
type: object
rules:
type: array
items:
$ref: "salty-dog-meta#/definitions/rule"
rules:
- name: salty-dog-rule
desc: rules must be complete
level: info
tags:
- important
- salty-dog
select: '$.rules[*]'
check:
$ref: "salty-dog-meta#/definitions/rule"
- name: salty-dog-source
desc: source files must have rules
level: info
tags:
- important
- salty-dog
check:
allOf:
- $ref: "salty-dog-meta#/definitions/source"
- type: object
properties:
rules:
type: array
minItems: 1