Skip to content

Commit 6f9c332

Browse files
author
Gérard Collin
committed
fix: Smple project added
1 parent 10bc26f commit 6f9c332

1 file changed

Lines changed: 69 additions & 0 deletions

File tree

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"name": "Mexican Food Restaurant Tracker",
3+
"description": "An application to track visits to Mexican restaurants, including price and ratings.",
4+
"content": {
5+
"creation": {
6+
"entities": [
7+
{
8+
"name": "Restaurant",
9+
"fields": [
10+
{
11+
"reference": null,
12+
"name": "name",
13+
"type": "string"
14+
},
15+
{
16+
"reference": null,
17+
"name": "location",
18+
"type": "string"
19+
},
20+
{
21+
"reference": null,
22+
"name": "cuisineType",
23+
"type": "string"
24+
}
25+
]
26+
},
27+
{
28+
"name": "Visit",
29+
"fields": [
30+
{
31+
"reference": null,
32+
"name": "date",
33+
"type": "date"
34+
},
35+
{
36+
"reference": null,
37+
"name": "totalPrice",
38+
"type": "eur-amount"
39+
},
40+
{
41+
"reference": null,
42+
"name": "rating",
43+
"type": "rating"
44+
},
45+
{
46+
"reference": {
47+
"toType": "Restaurant",
48+
"field": "name",
49+
"referenceType": "ManyToOne"
50+
},
51+
"name": "restaurant",
52+
"type": "Restaurant"
53+
},
54+
{
55+
"reference": null,
56+
"name": "notes",
57+
"type": "string"
58+
}
59+
]
60+
}
61+
],
62+
"name": "MexicanFoodRestaurantTracker",
63+
"type": "application",
64+
"sharing": {
65+
"with": "Dont-code users"
66+
}
67+
}
68+
}
69+
}

0 commit comments

Comments
 (0)