1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 2 xmlns:Sk="urn:screenplay" 3 xmlns:extra="urn:extraPathEffects" targetNamespace="urn:extraPathEffects" > 4 <xs:import namespace="urn:screenplay" 5 schemaLocation="SkAnimateSchema.xsd" /> 6 7 <xs:element name="composePathEffect" > 8 <xs:complexType> 9 <xs:choice maxOccurs="1"> 10 <xs:element ref="Sk:dash"/> 11 <xs:element ref="extra:shape1DPathEffect"/> 12 </xs:choice> 13 <xs:attribute name="id" type="xs:ID"/> 14 </xs:complexType> 15 </xs:element> 16 17 <xs:element name="shape1DPathEffect" > 18 <xs:complexType> 19 <xs:choice maxOccurs="1"> 20 <xs:element ref="Sk:matrix"/> 21 <xs:element ref="Sk:path"/> 22 </xs:choice> 23 <xs:attribute name="addPath" type="Sk:DynamicString" /> 24 <xs:attribute name="matrix" type="Sk:DynamicString" /> 25 <xs:attribute name="path" type="Sk:Path" /> 26 <xs:attribute name="phase" type="Sk:DynamicString"/> 27 <xs:attribute name="spacing" type="Sk:DynamicString"/> 28 <xs:attribute name="id" type="xs:ID"/> 29 </xs:complexType> 30 </xs:element> 31 32 </xs:schema> 33 34