-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(domains): add winemaking domain
Signed-off-by: Chris Hastings <chris@blockchaintp.com> Signed-off-by: Kevin O'Donnell <kevin@blockchaintp.com>
- Loading branch information
1 parent
cb43aeb
commit 4beb415
Showing
1 changed file
with
191 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
name: "winemaking" | ||
roles: | ||
- VIGNERON | ||
- BREWER | ||
- VINTNER | ||
- TECHNICIAN | ||
agents: | ||
Vintner: | ||
attributes: | ||
- Location | ||
- Experience | ||
Brewer: | ||
attributes: | ||
- Location | ||
- Experience | ||
Vigneron: | ||
attributes: | ||
- Location | ||
- Experience | ||
Technician: | ||
attributes: | ||
- Location | ||
entities: | ||
Grapes: | ||
attributes: | ||
- Quality | ||
- Location | ||
- SubLocation | ||
- ClimateData | ||
- VineAge | ||
- Varietal | ||
- Brix | ||
- TannicAcid | ||
- Acidity | ||
Must: | ||
attributes: | ||
- Quality | ||
- PomaceTime | ||
- Brix | ||
- TannicAcid | ||
- Acidity | ||
Wine: | ||
attributes: | ||
- Quality | ||
- Abv | ||
- Taste | ||
- Aroma | ||
Certificate: | ||
attributes: | ||
- CertificateID | ||
activities: | ||
Harvest: | ||
attributes: | ||
- Temperature | ||
- Weather | ||
- Manual | ||
- Organic | ||
- Location | ||
- SubLocation | ||
Pressing: | ||
attributes: | ||
- TimeSinceHarvest | ||
- Extraction | ||
Tasting: | ||
attributes: | ||
- Flavours | ||
- Grading | ||
Brewing: | ||
attributes: | ||
- Yeast | ||
- PrimaryTemp | ||
- FirstRuns | ||
- Additives | ||
- OriginalGravity | ||
- FinalGravity | ||
- Abv | ||
- SecondaryFermentation | ||
- ColdStabilization | ||
- Fining | ||
- Preservatives | ||
Testing: | ||
attributes: | ||
- Brix | ||
- TannicAcid | ||
- Sulphur | ||
Barreling: | ||
attributes: | ||
- BarrelType | ||
- BarrelOrigin | ||
- BarrelUse | ||
- KnownBacteria | ||
Blending: | ||
attributes: | ||
- Blend | ||
- BlendRatio | ||
Bottling: | ||
attributes: | ||
- Preservatives | ||
- Cork | ||
- Label | ||
- Bottle | ||
- Aoc | ||
attributes: | ||
Location: | ||
type: String | ||
SubLocation: | ||
type: String | ||
Experience: | ||
type: String | ||
Quality: | ||
type: String | ||
ClimateData: | ||
type: String | ||
VineAge: | ||
type: Int | ||
Varietal: | ||
type: String | ||
Brix: | ||
type: Int | ||
TannicAcid: | ||
type: Int | ||
Acidity: | ||
type: Int | ||
Sulphur: | ||
type: Int | ||
PomaceTime: | ||
type: Int | ||
Abv: | ||
type: Int | ||
Taste: | ||
type: String | ||
Aroma: | ||
type: String | ||
CertificateID: | ||
type: String | ||
Temperature: | ||
type: Int | ||
Weather: | ||
type: String | ||
Manual: | ||
type: Bool | ||
Organic: | ||
type: Bool | ||
TimeSinceHarvest: | ||
type: String | ||
Extraction: | ||
type: String | ||
Flavours: | ||
type: String | ||
Grading: | ||
type: String | ||
Yeast: | ||
type: String | ||
PrimaryTemp: | ||
type: Int | ||
FirstRuns: | ||
type: String | ||
Additives: | ||
type: String | ||
OriginalGravity: | ||
type: Int | ||
FinalGravity: | ||
type: Int | ||
SecondaryFermentation: | ||
type: String | ||
ColdStabilization: | ||
type: String | ||
Fining: | ||
type: String | ||
Preservatives: | ||
type: String | ||
BarrelType: | ||
type: String | ||
BarrelOrigin: | ||
type: String | ||
BarrelUse: | ||
type: Int | ||
KnownBacteria: | ||
type: String | ||
Blend: | ||
type: String | ||
BlendRatio: | ||
type: String | ||
Cork: | ||
type: Bool | ||
Label: | ||
type: String | ||
Bottle: | ||
type: String | ||
Aoc: | ||
type: String |