-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathfinder.jsonnet
87 lines (87 loc) · 2 KB
/
finder.jsonnet
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
(import "shared/default_format.jsonnet") + {
document_type: [
"finder",
"search"
],
definitions: {
details: {
type: "object",
additionalProperties: false,
required: [
"document_noun",
"facets",
],
properties: {
beta: {
"$ref": "#/definitions/finder_beta",
},
beta_message: {
anyOf: [
{
type: "string",
},
{
type: "null",
},
],
},
no_index: {
type: "boolean",
},
generic_description: {
type: "boolean",
},
document_noun: {
"$ref": "#/definitions/finder_document_noun",
},
default_documents_per_page: {
"$ref": "#/definitions/finder_default_documents_per_page",
},
logo_path: {
type: "string",
},
default_order: {
"$ref": "#/definitions/finder_default_order",
},
sort: {
"$ref": "#/definitions/finder_sort",
},
filter: {
"$ref": "#/definitions/finder_filter",
},
open_filter_on_load: {
type: "boolean",
},
reject: {
"$ref": "#/definitions/finder_reject_filter",
},
facets: {
"$ref": "#/definitions/finder_facets",
},
label_text: {
type: "string",
},
show_summaries: {
"$ref": "#/definitions/finder_show_summaries",
},
show_metadata_block: {
"$ref": "#/definitions/finder_show_metadata_block",
},
signup_link: {
"$ref": "#/definitions/finder_signup_link",
},
canonical_link: {
type: "boolean",
},
summary: {
"$ref": "#/definitions/finder_summary",
},
},
},
},
links: (import "shared/base_links.jsonnet") + {
related: "",
email_alert_signup: "",
available_translations: "",
},
}