Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions go/receptor_sdk/receptor.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,16 @@ type AuthMethod struct {
}

type Control struct {
Id string `json:"id"` // Id of the control
Name string `json:"name"` // Name of the control
Objective string `json:"objective"` // Objective of the control
TestProcedure string `json:"test_procedure"` // Test procedure of the control
Notes string `json:"notes"` // Notes for the control
RequiredEvidence string `json:"required_evidences"` // Required evidences for the control
ImportKey string `json:"import_key"` // External id of the control
ImportLink string `json:"import_link"` // External link to the control
Id string `json:"id"` // Id of the control
Name string `json:"name"` // Name of the control
Objective string `json:"objective"` // Objective of the control
TestProcedure string `json:"test_procedure"` // Test procedure of the control
Frameworks []string `json:"frameworks"` // Frameworks applicable to the control
Notes string `json:"notes"` // Notes for the control
RequiredEvidence string `json:"required_evidences"` // Required evidences for the control
ImportKey string `json:"import_key"` // External id of the control
ImportLink string `json:"import_link"` // External link to the control
SOC2Criteria []string `json:"soc2_criteria"` // SOC2 Framework criterias for the control
}

type ControlProcedureMapping struct {
Expand Down
Loading