ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Fix Result XSD Schema
  
  Allows <code> elements within text content for escaping special characters
  like <, >, and & (e.g., comparisons, generics, logical operators).
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  
  <!-- Text with optional inline code elements -->
  <xs:complexType name="TextWithCodeType" mixed="true">
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="code" type="xs:string"/>
    </xs:choice>
  </xs:complexType>
  
  <xs:element name="ralph-fix-result">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="ralph-status">
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="all_issues_addressed"/>
              <xs:enumeration value="issues_remain"/>
              <xs:enumeration value="no_issues_found"/>
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
        <xs:element name="ralph-summary" type="TextWithCodeType" minOccurs="0"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>