-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata3.json
More file actions
98 lines (98 loc) · 3.11 KB
/
data3.json
File metadata and controls
98 lines (98 loc) · 3.11 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
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
{
"manifest": {
"layout": [
{
"field": "title",
"label": "Painting Title",
"height": 15,
"type": "text"
},
{ "field": "imageURL", "label": "Image", "height": 50, "type": "image" },
{ "field": "artist", "label": "Artist", "height": 10, "type": "text" },
{
"field": "year",
"label": "Year Created",
"height": 10,
"type": "text"
},
{
"field": "location",
"label": "Current Location",
"height": 15,
"type": "text"
}
]
},
"data": [
{
"title": "Mona Lisa",
"imageURL": "https://www.louvre.fr/sites/default/files/styles/oeuvre_portrait/public/2020-01/monalisa.jpg",
"artist": "Leonardo da Vinci",
"year": "1503",
"location": "Louvre Museum, Paris"
},
{
"title": "The Starry Night",
"imageURL": "https://www.moma.org/media/W1siZiIsIjM1NjM3MiJdLFsicCIsImNvbnZlcnQiLCItcmVzaXplIDEyMDB4MTIwMFx1MDAzZSJdXQ.jpg?sha=2e3e9d8f8b3b8b6f",
"artist": "Vincent van Gogh",
"year": "1889",
"location": "Museum of Modern Art, New York"
},
{
"title": "The Persistence of Memory",
"imageURL": "https://www.moma.org/media/W1siZiIsIjM1NjM3NiJdLFsicCIsImNvbnZlcnQiLCItcmVzaXplIDEyMDB4MTIwMFx1MDAzZSJdXQ.jpg?sha=2e3e9d8f8b3b8b6f",
"artist": "Salvador Dalí",
"year": "1931",
"location": "Museum of Modern Art, New York"
},
{
"title": "The Scream",
"imageURL": "https://www.nasjonalmuseet.no/globalassets/publikasjoner/bilder/edvard-munch-skrik.jpg",
"artist": "Edvard Munch",
"year": "1893",
"location": "National Gallery, Oslo"
},
{
"title": "Girl with a Pearl Earring",
"imageURL": "https://www.mauritshuis.nl/media/collectie/het-meisje-met-de-parel.jpg",
"artist": "Johannes Vermeer",
"year": "1665",
"location": "Mauritshuis, The Hague"
},
{
"title": "The Last Supper",
"imageURL": "https://www.leonardodavinci.net/images/the-last-supper.jpg",
"artist": "Leonardo da Vinci",
"year": "1498",
"location": "Santa Maria delle Grazie, Milan"
},
{
"title": "Guernica",
"imageURL": "https://www.museoreinasofia.es/sites/default/files/obras/DE00050_0.jpg",
"artist": "Pablo Picasso",
"year": "1937",
"location": "Museo Reina Sofía, Madrid"
},
{
"title": "The Night Watch",
"imageURL": "https://www.rijksmuseum.nl/en/collection/SK-C-5",
"artist": "Rembrandt van Rijn",
"year": "1642",
"location": "Rijksmuseum, Amsterdam"
},
{
"title": "The Kiss",
"imageURL": "https://www.belvedere.at/sites/default/files/styles/width_1200/public/images/2020-02/klimt-der-kuss.jpg",
"artist": "Gustav Klimt",
"year": "1908",
"location": "Belvedere Museum, Vienna"
},
{
"title": "American Gothic",
"imageURL": "https://www.artic.edu/iiif/2/5e8315f5-0c1e-4b8e-8b1e-0e5e3a5d8b9b/full/843,/0/default.jpg",
"artist": "Grant Wood",
"year": "1930",
"location": "Art Institute of Chicago, Chicago"
}
]
}