<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="https://jakarta.ee/xml/ns/jakartaee"
xmlns:jbatch="https://jakarta.ee/xml/ns/jakartaee" version="2.0">
<xs:element name="batch-artifacts"
type="jbatch:BatchArtifacts" />
<xs:complexType name="BatchArtifacts">
<xs:sequence>
<xs:element name="ref" type="jbatch:BatchArtifactRef"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="BatchArtifactRef">
<xs:attribute name="id" use="required" type="xs:string" />
<xs:attribute name="class" use="required"
type="xs:string" />
</xs:complexType>
</xs:schema>