An open API service indexing awesome lists of open source software.

https://github.com/maxnowack/tastings


https://github.com/maxnowack/tastings

Last synced: 4 months ago
JSON representation

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: "..."
}
````