mirror of
https://github.com/strongdm/comply
synced 2024-11-21 23:24:53 +00:00
document model
This commit is contained in:
parent
815e7e5f61
commit
46aaf1c663
15
internal/model/document.go
Normal file
15
internal/model/document.go
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package model
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
|
type Document struct {
|
||||||
|
Name string `yaml:"name"`
|
||||||
|
Acronym string `yaml:"acronym"`
|
||||||
|
|
||||||
|
Revisions []Revision `yaml:"majorRevisions"`
|
||||||
|
Satisfies Satisfaction `yaml:"satisfies"`
|
||||||
|
FullPath string
|
||||||
|
OutputFilename string
|
||||||
|
ModifiedAt time.Time
|
||||||
|
Body string
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user