forked from art-institute-of-chicago/aic-bash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault-random-landscape.json
More file actions
42 lines (42 loc) · 1.04 KB
/
default-random-landscape.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"resources": "artworks",
"fields": [
"id",
"title",
"artist_display",
"date_display",
"image_id"
],
"boost": false,
"limit": 1,
"query": {
"function_score": {
"query": {
"bool": {
"filter": [
{
"term": {
"subject_ids": "TM-8657"
}
},
{
"term": {
"is_public_domain": true
}
},
{
"exists": {
"field": "image_id"
}
}
]
}
},
"boost_mode": "replace",
"random_score": {
"field": "id",
"seed": "VAR_SEED"
}
}
}
}