forked from Open-EO/openeo-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeccy.yml
93 lines (93 loc) · 2.43 KB
/
speccy.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
rules:
- name: parameter-description
object: parameter
description: parameter objects should have a description
truthy: description
- name: parameter-name-regex
object: parameter
disabled: true
description: parameter names should match RFC6570
pattern:
property: name
value: ''
- name: operation-summary-or-description
object: operation
description: operation should have summary or description
or:
- summary
- description
- name: operation-tags
object: operation
description: operation should have non-empty tags array
truthy: tags
skip: isCallback
- name: path-keys-no-trailing-slash
object: paths
description: paths should not end with a slash
notEndWith:
property: "$key"
value: "/"
- name: server-trailing-slash
object: server
description: server url should not have a trailing slash
notEndWith:
property: url
value: "/"
- name: openapi-tags
object: openapi
description: openapi object should have non-empty tags array
truthy: tags
- name: openapi-tags-alphabetical
object: openapi
description: openapi object should have alphabetical tags
alphabetical:
properties: tags
keyedBy: name
- name: reference-no-other-properties
object: reference
description: reference objects should only have a $ref property
truthy: "$ref"
properties: 1
- name: example-value-or-externalValue
object: example
description: example should have either value or externalValue
xor:
- value
- externalValue
- name: default-and-example-are-redundant
object: "*"
description: don't need to define an example if its exactly the same as your default
schema:
dependencies:
default:
properties:
example:
not:
const:
"$data": "1/default"
- name: reference-components-regex
object: reference
disabled: true
description: reference components should all match regex ^[a-zA-Z0-9\.\-_]+
pattern:
property: "$ref"
omit: "#"
split: "/"
value: "^[a-zA-Z0-9\\.\\-_]+$"
- name: no-script-tags-in-markdown
object: "*"
description: markdown descriptions should not contain <script> tags
notContain:
properties:
- description
value: "<script"
- name: tag-description
object: tag
description: tag object should have a description
truthy: description
- name: short-summary
object: operation
description: summary should be short (description can be long)
maxLength:
property: summary
value: 45