PurchaseOrder Schema
PurchaseOrder Schema : SKU Simple Type
SKU Simple Type
Description
Stock Keeping Unit, a code for identifying products.
Namespace (none)
Type
Restriction of xs:string
Overview
SKU Restriction of xs:string
Stock Keeping Unit, a code for identifying products.
Facets
Pattern\d{3}-[A-Z]{2}
Source
<xs:simpleType name="SKU" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation xml:lang="en">Stock Keeping Unit, a code for identifying products.</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:string">
    <xs:pattern value="\d{3}-[A-Z]{2}" />
  </xs:restriction>
</xs:simpleType>
See Also