Skip to content

Commit

Permalink
asset
Browse files Browse the repository at this point in the history
  • Loading branch information
DebatIBM committed Apr 18, 2024
1 parent 4b3224b commit ff2d6e3
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions src/pages/app-connect-enterprise/Lab0/Assets/IN_Request.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<In_Request>
<ActionRequest>O</ActionRequest>
<DateRequest>2005-10-12</DateRequest>
<customerNumber>1</customerNumber>
<customerName>ACME Hardware</customerName>
<customerDetails>
<customerAddress1>1254 Main St</customerAddress1>
<customerAddress2>Suite 12</customerAddress2>
<customerCity>Dime Box</customerCity>
<customerState>TX</customerState>
<customerCountry>USA</customerCountry>
<customerPostalCode>76543</customerPostalCode>
<customerCreditLimit>1200</customerCreditLimit>
<customerCreditScore>123</customerCreditScore>
</customerDetails>
<contactDetails>
<contactFirstName>Freddy</contactFirstName>
<contactLastName>Bloggs</contactLastName>
<contactPhoneNumber>555-123-6543</contactPhoneNumber>
</contactDetails>
<requestDecision>Y</requestDecision>
<comments>Just a Comment</comments>
</In_Request>
36 changes: 36 additions & 0 deletions src/pages/app-connect-enterprise/Lab0/Assets/IN_Request.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<xsd:element name="In_Request" type="In_RequestType"/>

<xsd:complexType name="In_RequestType">
<xsd:sequence>
<xsd:element name="ActionRequest" type="xsd:string"/>
<xsd:element name="DateRequest" type="xsd:date"/>
<xsd:element name="customerNumber" type="xsd:int"/>
<xsd:element name="customerName" type="xsd:string"/>
<xsd:element name="customerDetails" type="customerDetailsType"/>
<xsd:element name="contactDetails" type="contactDetailsType"/>
<xsd:element name="requestDecision" type="xsd:string"/>
<xsd:element name="comments" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="contactDetailsType">
<xsd:sequence>
<xsd:element name="contactFirstName" type="xsd:string"/>
<xsd:element name="contactLastName" type="xsd:string"/>
<xsd:element name="contactPhoneNumber" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="customerDetailsType">
<xsd:sequence>
<xsd:element name="customerAddress1" type="xsd:string"/>
<xsd:element name="customerAddress2" type="xsd:string"/>
<xsd:element name="customerCity" type="xsd:string"/>
<xsd:element name="customerState" type="xsd:string"/>
<xsd:element name="customerCountry" type="xsd:string"/>
<xsd:element name="customerPostalCode" type="xsd:string"/>
<xsd:element name="customerCreditLimit" type="xsd:int"/>
<xsd:element name="customerCreditScore" type="xsd:int"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
1 change: 1 addition & 0 deletions src/pages/app-connect-enterprise/Lab0/Assets/dummy.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit ff2d6e3

Please sign in to comment.