2020-12-13 15:54:01 +01:00
parent 617cb7c156
commit 8cfcaaf380

14
subject.md Normal file

@@ -0,0 +1,14 @@
```
// Subject is a Gemeinwohl-Thema of the matrix
type Subject struct {
Version string // Semantic Version of the matrix 5.0.0
Target string // Unternehmen oder Gemeinde
ID string // A1
Title string // Menschenwürde in der Zulieferkette
Description string // Anfangsbeschreibung
GoodCompany []string // Ein GWÖ-Unternehmen - Liste
WarmUpQuestions []string // Einstiegsfragen - Liste
Aspects []Aspect // Auflistung der einzelnen Aspekte
NegativeAspects []NegativeAspect // Negativaspekte
}
```