blob: d30630dc8e4a621274afd7794db5eb9b78c6a803 [file] [log] [blame]
LuK133796d38892024-07-22 15:10:19 +02001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2021 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<xs:schema version="2.0"
18 elementFormDefault="qualified"
19 attributeFormDefault="unqualified"
20 xmlns:xs="http://www.w3.org/2001/XMLSchema">
21
22 <xs:element name="sensitivePNS">
23 <xs:complexType>
24 <xs:sequence>
25 <xs:element name="sensitivePN" maxOccurs="unbounded" type="sensitivePN" />
26 </xs:sequence>
27 </xs:complexType>
28 </xs:element>
29
30 <xs:complexType name="sensitivePN">
31 <xs:sequence>
32 <xs:element name="item" maxOccurs="unbounded" type="item" />
33 </xs:sequence>
34 <xs:attribute name="network" type="xs:string" use="required" />
35 </xs:complexType>
36
37 <xs:complexType name="item">
38 <xs:sequence>
39 <xs:element name="number" type="xs:string" />
40 <xs:element name="name" minOccurs="0" type="xs:string" />
41 <xs:element name="categories" minOccurs="0" type="xs:string" />
42 <xs:element name="languages" minOccurs="0" type="xs:string" />
43 <xs:element name="organization" minOccurs="0" type="xs:string" />
44 <xs:element name="website" minOccurs="0" type="xs:anyURI" />
45 </xs:sequence>
46 </xs:complexType>
47</xs:schema>