Inseob Kim | c4a774d | 2023-08-30 12:48:43 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- Copyright (C) 2023 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | <!-- KEEP IN SYNC WITH aidl.rs --> |
| 17 | <xs:schema version="2.0" |
| 18 | xmlns:xs="http://www.w3.org/2001/XMLSchema"> |
| 19 | <xs:element name="devices"> |
| 20 | <xs:complexType> |
| 21 | <xs:sequence> |
| 22 | <xs:element name="device" type="device" minOccurs="0" maxOccurs="unbounded"/> |
| 23 | </xs:sequence> |
| 24 | </xs:complexType> |
| 25 | </xs:element> |
| 26 | <xs:complexType name="device"> |
| 27 | <xs:attribute name="kind" type="xs:string"/> |
Jaewan Kim | 35e818d | 2023-10-18 05:36:38 +0000 | [diff] [blame] | 28 | <xs:attribute name="dtbo_label" type="xs:string"/> |
Inseob Kim | c4a774d | 2023-08-30 12:48:43 +0900 | [diff] [blame] | 29 | <xs:attribute name="sysfs_path" type="xs:string"/> |
| 30 | </xs:complexType> |
| 31 | </xs:schema> |