Clone
1
matrix
as27 edited this page 2020-12-13 15:53:26 +01:00
// Matrix defines the structure of the Gemeinwohl-Matrix
type Matrix struct {
	Version  string     // Semantic Version of the matrix 5.0.0
	Target   string     // Unternehmen oder Gemeinde
	Groups   []string   // Berührungsgruppen
	Values   []string   // Wert
	Subjects [][]string // Themen
}

Groups und Values

Über diese beiden Slices wird die Matrix definiert.