<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<xsd:annotation>
    <xsd:documentation xml:lang="EN">
        Schema file for the definition of user variables injected into Python scripts by the Vector AUTOSAR Scripting Engine.
    </xsd:documentation>
</xsd:annotation>

<xsd:element name="variables" type="VariableListType"/>

<xsd:complexType name="VariableListType">
    <xsd:sequence minOccurs="0" maxOccurs="unbounded">
        <xsd:element name="variable" type="VariableType"/>
    </xsd:sequence>
    <xsd:attribute name="fileFormatVersion" type="xsd:string"/>
</xsd:complexType>

<xsd:complexType name="VariableType">
    <xsd:attribute name="name" type="xsd:string"/>
    <xsd:attribute name="value" type="xsd:string"/>
</xsd:complexType>

</xsd:schema>