File: operation.xsd

package info (click to toggle)
congruity 20-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 680 kB
  • sloc: python: 5,010; makefile: 3
file content (53 lines) | stat: -rw-r--r-- 2,540 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Common.Contracts.Data.Operation"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:mns="http://schemas.microsoft.com/2003/10/Serialization/"
  xmlns:ns1="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Common.Contracts.Data"
  xmlns:ns3="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Manager.DeviceManager.Contracts.Data.SearchMatch"
  xmlns:ns4="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Common.Contracts.Data.Operation"
  xmlns:ns5="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Manager.DeviceManager.Contracts.Data.Operation"
  xmlns="http://www.w3.org/2001/XMLSchema"
  elementFormDefault="qualified"
  attributeFormDefault="qualified">
  <import namespace="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Common.Contracts.Data" location="data.xsd"/>
  <import namespace="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Manager.DeviceManager.Contracts.Data.SearchMatch" location="search_match.xsd"/>
  <import namespace="http://schemas.datacontract.org/2004/07/Logitech.Harmony.Services.Manager.DeviceManager.Contracts.Data.Operation" location="dm_operation.xsd"/>
  <import namespace="http://schemas.microsoft.com/2003/10/Serialization/" location="serialization.xsd"/>

  <complexType name="AddOperationBase">
    <sequence>
      <element name="ParentAccount" type="ns1:Id"/>
      <element name="ReturnIdAsKey" type="mns:guid" nillable="true"/>
      <element name="ReturnObjectAsKey" type="xsd:string" nillable="true"/>
      <element name="TemporaryId" type="xsd:string" nillable="true"/>
    </sequence>
  </complexType>

  <complexType name="DeleteOperationBase">
    <sequence>
      <element name="ParentAccount" type="ns1:Id"/>
      <element name="ObjectId" type="xsd:string" nillable="true"/>
    </sequence>
  </complexType>

  <complexType name="UpdateDeviceOperationStart">
    <sequence>
      <element name="ParentAccount" type="ns1:Id"/>
      <element name="Object" type="xsd:string" nillable="true"/>
    </sequence>
  </complexType>

  <complexType name="Items">
    <sequence>
      <element name="Operation" type="ns5:Operation"/> 
    </sequence>
  </complexType>

  <complexType name="OperationBag">
    <sequence>
      <element name="ParentAccount" type="ns1:Id"/>
      <element name="Items" type="ns4:Items"/>
    </sequence>
  </complexType>

</schema>