diff --git a/go/receptor_sdk/receptor.go b/go/receptor_sdk/receptor.go index 1357103..cce7b35 100644 --- a/go/receptor_sdk/receptor.go +++ b/go/receptor_sdk/receptor.go @@ -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 {