mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
16 lines
439 B
Go
16 lines
439 B
Go
package oval_input
|
|
|
|
type variableObjectXML struct {
|
|
Id string `xml:"object_ref"`
|
|
}
|
|
|
|
type variableStateXML struct {
|
|
Id string `xml:"state_ref,attr"`
|
|
}
|
|
|
|
// https://oval.mitre.org/language/version5.10.1/ovaldefinition/documentation/independent-definitions-schema.html#variable_test
|
|
type VariableTestXML struct {
|
|
Id string `xml:"id,attr"`
|
|
Object variableObjectXML `xml:"object"`
|
|
States []variableStateXML `xml:"state"`
|
|
}
|