-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
53 lines (53 loc) · 1.86 KB
/
schema.json
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
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "Automatic documentation from sources, for MkDocs.",
"oneOf": [
{
"markdownDescription": "https://mkdocstrings.github.io/",
"enum": [
"mkdocstrings"
]
},
{
"type": "object",
"properties": {
"mkdocstrings": {
"markdownDescription": "https://mkdocstrings.github.io/",
"type": "object",
"properties": {
"custom_templates": {
"title": "The path to a directory containing custom templates. The path is relative to the current working directory.",
"markdownDescription": "https://mkdocstrings.github.io/theming/",
"type": "string",
"default": null,
"format": "path"
},
"default_handler": {
"title": "The handler used by default when no handler is specified in autodoc instructions.",
"markdownDescription": "https://mkdocstrings.github.io/usage/#global-options",
"type": "string",
"default": "python"
},
"enable_inventory": {
"title": "Whether to enable inventory file generation.",
"markdownDescription": "https://mkdocstrings.github.io/usage/#cross-references-to-other-projects-inventories",
"type": "boolean",
"default": null
},
"handlers": {
"title": "The handlers global configuration.",
"markdownDescription": "https://mkdocstrings.github.io/handlers/overview/",
"anyOf": [
{
"$ref": "https://mkdocstrings.github.io/python/schema.json"
}
]
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
]
}