Clone
1
subject
as27 edited this page 2020-12-13 15:54:01 +01:00
// 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
}