Skip to content

Commit b3c8d4e

Browse files
committed
chore: update datasette metadata with new columns
1 parent bad7518 commit b3c8d4e

File tree

1 file changed

+38
-36
lines changed

1 file changed

+38
-36
lines changed

docker/metadata.json

Lines changed: 38 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,42 @@
11
{
2-
"title": "MICHELIN Guide Restaurants Database",
3-
"description_html": "Explore MICHELIN Guide restaurants in this curated database. Made by <a href='https://jerrynsh.com'>jerrynsh.com</a>.",
4-
"source": "Original Data Source",
5-
"source_url": "https://guide.michelin.com/",
6-
"about": "michelin-my-maps",
7-
"about_url": "https://github.com/ngshiheng/michelin-my-maps",
8-
"databases": {
9-
"michelin": {
10-
"queries": {
11-
"MICHELIN Guide Restaurants Map": {
12-
"sql": "SELECT name AS Name, distinction AS Distinction, cuisine || ' (' || price || ')' AS 'Cuisine (Price)', address AS Address, description AS Description, facilities_and_services AS 'Facilities and Services', phone_number AS 'Phone Number', url AS 'MICHELIN Guide URL', website_url AS 'Website URL', latitude AS Latitude, longitude AS Longitude FROM restaurants"
2+
"title": "MICHELIN Guide Restaurants Database",
3+
"description_html": "Explore MICHELIN Guide restaurants in this curated database. Made by <a href='https://jerrynsh.com'>jerrynsh.com</a>.",
4+
"source": "Original Data Source",
5+
"source_url": "https://guide.michelin.com/",
6+
"about": "michelin-my-maps",
7+
"about_url": "https://github.com/ngshiheng/michelin-my-maps",
8+
"databases": {
9+
"michelin": {
10+
"queries": {
11+
"MICHELIN Guide Restaurants Map": {
12+
"sql": "SELECT name AS Name, distinction AS Distinction, cuisine || ' (' || price || ')' AS 'Cuisine (Price)', address AS Address, description AS Description, facilities_and_services AS 'Facilities and Services', green_star AS 'Green Star', phone_number AS 'Phone Number', url AS 'MICHELIN Guide URL', website_url AS 'Website URL', latitude AS Latitude, longitude AS Longitude, updated_on AS 'Updated On' FROM restaurants"
13+
}
14+
},
15+
"tables": {
16+
"restaurants": {
17+
"plugins": {
18+
"datasette-cluster-map": {}
19+
},
20+
"description_html": "A dataset of MICHELIN Guide Restaurants.",
21+
"columns": {
22+
"address": "Address of the restaurant",
23+
"cuisine": "Type of cuisines served at the restaurant",
24+
"description": "MICHELIN Guide description of the restaurant",
25+
"distinction": "Type of MICHELIN distinction (e.g., 3 Stars, 2 Stars, 1 Star, Bib Gourmand)",
26+
"facilities_and_services": "Facilities and services offered at the restaurant",
27+
"green_star": "Indicates whether the restaurant has been awarded a MICHELIN Green Star for sustainable gastronomy practices",
28+
"location": "Location of the restaurant",
29+
"latitude": "Latitude coordinates of the restaurant",
30+
"longitude": "Longitude coordinates of the restaurant",
31+
"name": "Name of the restaurant",
32+
"phone_number": "Contact phone number of the restaurant",
33+
"price": "Price range of the restaurant (e.g., $, $$, $$$)",
34+
"url": "MICHELIN Guide URL of the restaurant's listing",
35+
"website_url": "URL of the restaurant's official website",
36+
"updated_on": "Date when the restaurant information was last updated in the dataset"
37+
}
38+
}
39+
}
1340
}
14-
},
15-
"tables": {
16-
"restaurants": {
17-
"plugins": {
18-
"datasette-cluster-map": {}
19-
},
20-
"description_html": "A dataset of MICHELIN Guide Restaurants.",
21-
"columns": {
22-
"address": "Address of the restaurant",
23-
"cuisine": "Type of cuisines served at the restaurant",
24-
"description": "MICHELIN Guide description of the restaurant",
25-
"distinction": "Type of MICHELIN distinction (e.g., 3 Stars, 2 Stars, 1 Star, Bib Gourmand)",
26-
"facilities_and_services": "Facilities and services offered at the restaurant",
27-
"location": "Location of the restaurant",
28-
"latitude": "Latitude coordinates of the restaurant",
29-
"longitude": "Longitude coordinates of the restaurant",
30-
"name": "Name of the restaurant",
31-
"phone_number": "Contact phone number of the restaurant",
32-
"price": "Price range of the restaurant (e.g., $, $$, $$$)",
33-
"url": "MICHELIN Guide URL of the restaurant's listing",
34-
"website_url": "URL of the restaurant's official website"
35-
}
36-
}
37-
}
3841
}
39-
}
4042
}

0 commit comments

Comments
 (0)