aboutsummaryrefslogtreecommitdiff
path: root/xsd/ee-catalog.xsd
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2019-02-26 23:08:19 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2019-02-26 23:08:19 +0100
commit97c8bb9db96e27051f8746865f657408263db0b8 (patch)
tree604cb6e9b87e79f43e54940adbc83520e89940fe /xsd/ee-catalog.xsd
parent80e0623913e87c6480049520590e424a831e0401 (diff)
downloadee-python-97c8bb9db96e27051f8746865f657408263db0b8.tar.gz
ee-python-97c8bb9db96e27051f8746865f657408263db0b8.tar.bz2
ee-python-97c8bb9db96e27051f8746865f657408263db0b8.tar.xz
ee-python-97c8bb9db96e27051f8746865f657408263db0b8.zip
o Creating a PartDb that manages a file system directory with one xml
file per part. o Switching xml-based code to use PartDb.
Diffstat (limited to 'xsd/ee-catalog.xsd')
-rw-r--r--xsd/ee-catalog.xsd26
1 files changed, 0 insertions, 26 deletions
diff --git a/xsd/ee-catalog.xsd b/xsd/ee-catalog.xsd
deleted file mode 100644
index 6da3558..0000000
--- a/xsd/ee-catalog.xsd
+++ /dev/null
@@ -1,26 +0,0 @@
-<xsd:schema
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://purl.org/ee/bom-file"
- xmlns="http://purl.org/ee/bom-file">
-
- <xsd:element name="catalog-file" type="CatalogFile"/>
-
- <xsd:complexType name="CatalogFile">
- <xsd:sequence>
- <xsd:element name="products" type="ProductList" minOccurs="0" maxOccurs="1"/>
- </xsd:sequence>
- </xsd:complexType>
-
- <xsd:complexType name="Product">
- <xsd:sequence>
- <xsd:element name="ref" type="xsd:string"/>
- </xsd:sequence>
- </xsd:complexType>
-
- <xsd:complexType name="ProductList">
- <xsd:sequence>
- <xsd:element name="product" type="Product" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:complexType>
-
-</xsd:schema>