https://github.com/maxnowack/tastings
https://github.com/maxnowack/tastings
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxnowack/tastings
- Owner: maxnowack
- Created: 2015-12-28T18:21:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-28T19:51:13.000Z (over 10 years ago)
- Last Synced: 2025-10-25T17:37:37.514Z (8 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Tastings
I track my tasting notes in this repository
## Format
I use the following JSON schema to describe my tasting notes
````javascript
{
name: "Example", // name of the drink
glass: "tulip", // type of the used glass
properties: { // custom properties (e.g. IBU for beer)
key: value,
},
rating: {
key: value,
},
time: new Date(), // time of the tasting
comments: "..."
}
````