mirror of
https://github.com/strongdm/comply
synced 2024-11-16 21:04:54 +00:00
19 lines
333 B
Go
19 lines
333 B
Go
package model
|
|
|
|
type Data struct {
|
|
Frameworks []*Framework
|
|
Narratives []*Document
|
|
Policies []*Document
|
|
Controls []*Control
|
|
Procedures []*Procedure
|
|
Tickets []*Ticket
|
|
Audits []*Audit
|
|
}
|
|
|
|
type Revision struct {
|
|
Date string `yaml:"date"`
|
|
Comment string `yaml:"comment"`
|
|
}
|
|
|
|
type Satisfaction map[string][]string
|