diff options
author | ChrisC <cc697w@intl.att.com> | 2017-01-31 11:40:03 +0100 |
---|---|---|
committer | ChrisC <cc697w@intl.att.com> | 2017-01-31 12:59:33 +0100 |
commit | 025301d08b061482c1f046d562bf017c8cbcfe8d (patch) | |
tree | 68a2a549736c9bf0f7cd4e71c76e40ef7e2606f2 /adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapterSchema.xsd | |
parent | 2754ad52f833278a5c925bd788a16d1dce16a598 (diff) |
Initial OpenECOMP MSO commit
Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d
Signed-off-by: ChrisC <cc697w@intl.att.com>
Diffstat (limited to 'adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapterSchema.xsd')
-rw-r--r-- | adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapterSchema.xsd | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapterSchema.xsd b/adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapterSchema.xsd new file mode 100644 index 0000000000..f0e4435771 --- /dev/null +++ b/adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapterSchema.xsd @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="UTF-8"?> +<schema targetNamespace="http://domain2.att.com/workflow/sdnc/adapter/schema/v1" +xmlns="http://www.w3.org/2001/XMLSchema" + xmlns:tns="http://domain2.att.com/workflow/sdnc/adapter/schema/v1" + xmlns:sdncadaptersc="http://domain2.att.com/workflow/sdnc/adapter/schema/v1" + elementFormDefault="qualified"> + + + <!-- ========================= --> + <!-- Complex Types --> + <!-- ========================= --> + + + <!-- ========================= --> + <!-- Elements --> + <!-- ========================= --> + + <element name="RequestHeader"> + <complexType> + <sequence> + <element name="RequestId" type="string" minOccurs="1" maxOccurs="1"/> + <element name="SvcInstanceId" type="string" minOccurs="0" maxOccurs="1"/> + <element name="SvcAction" type="string" minOccurs="1" maxOccurs="1"/> + <element name="SvcOperation" type="string" minOccurs="1" maxOccurs="1"/> + <element name="CallbackUrl" type="string" minOccurs="1" maxOccurs="1"/> + <element name="MsoAction" type="string" minOccurs="0" maxOccurs="1"/> + </sequence> + </complexType> + </element> + + <element name="CallbackHeader"> + <complexType> + <sequence> + <element name="RequestId" type="string" minOccurs="1" maxOccurs="1"/> + <element name="ResponseCode" type="string" minOccurs="1" maxOccurs="1"/> + <element name="ResponseMessage" type="string" minOccurs="1" maxOccurs="1"/> + </sequence> + </complexType> + </element> + + <!-- ========================= --> + <!-- Requests/Responses --> + <!-- ========================= --> + + <element name="SDNCAdapterRequest"> + <complexType> + <sequence> + <element ref="tns:RequestHeader" minOccurs="1" maxOccurs="1" /> + <element name="RequestData" type="anyType" minOccurs="1" maxOccurs="1" /> + </sequence> + </complexType> + </element> + + <!-- Empty Ack --> + <element name="SDNCAdapterResponse"> + <complexType> + + </complexType> + </element> + + <!--Used to post Async Status back to workflow, Status Message would be used for any fallouts from SDNC --> + <element name="SDNCAdapterCallbackRequest"> + <complexType> + <sequence> + <element ref="tns:CallbackHeader" minOccurs="1" maxOccurs="1" /> + <element name="RequestData" type="anyType" minOccurs="0" maxOccurs="1" /> + </sequence> + </complexType> + </element> + + +</schema> |