<xsd:simpleType name="variable_source">
<xsd:annotation>
<xsd:documentation>The different sources for a variable value. An external source means the value is retrieved from somewhere outside of OVAL, say a variable file or directly from the analysis code. Think of this as when a value is passed into OVAL. A constant source means the value is declared inside of OVAL and can not be modified.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="constant" />
<xsd:enumeration value="external" />
</xsd:restriction>
</xsd:simpleType>
|