qonto_ofx 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +1 -0
  4. data/.rubocop_todo.yml +68 -0
  5. data/Gemfile +6 -0
  6. data/Gemfile.lock +60 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +34 -0
  9. data/Rakefile +11 -0
  10. data/bin/qonto_ofx +24 -0
  11. data/bin/setup +8 -0
  12. data/lib/api_gateway.rb +47 -0
  13. data/lib/base_validator.rb +17 -0
  14. data/lib/converter.rb +158 -0
  15. data/lib/ofx_validator.rb +17 -0
  16. data/lib/organization_validator.rb +17 -0
  17. data/lib/qonto_ofx/version.rb +3 -0
  18. data/lib/transactions_listing_validator.rb +17 -0
  19. data/qonto_ofx.gemspec +32 -0
  20. data/qonto_organization_schema.json +63 -0
  21. data/qonto_transactions_schema.json +175 -0
  22. data/schema/.DS_Store +0 -0
  23. data/schema/OFX2_Protocol.xsd +783 -0
  24. data/schema/OFX3_Protocol_dotNET.xsd +691 -0
  25. data/schema/OFX_Banking.xsd +119 -0
  26. data/schema/OFX_Banking_Message_Wrappers.xsd +399 -0
  27. data/schema/OFX_Banking_Messages.xsd +431 -0
  28. data/schema/OFX_BillPay.xsd +223 -0
  29. data/schema/OFX_BillPay_Message_Wrappers.xsd +343 -0
  30. data/schema/OFX_BillPay_Messages.xsd +412 -0
  31. data/schema/OFX_BillerDelivery.xsd +263 -0
  32. data/schema/OFX_BillerDelivery_Message_Wrappers.xsd +295 -0
  33. data/schema/OFX_BillerDelivery_Messages.xsd +259 -0
  34. data/schema/OFX_BillerDirectory.xsd +132 -0
  35. data/schema/OFX_BillerDirectory_Message_Wrappers.xsd +56 -0
  36. data/schema/OFX_BillerDirectory_Messages.xsd +86 -0
  37. data/schema/OFX_Common.xsd +2329 -0
  38. data/schema/OFX_CreditCard.xsd +45 -0
  39. data/schema/OFX_CreditCard_Message_Wrappers.xsd +88 -0
  40. data/schema/OFX_CreditCard_Messages.xsd +102 -0
  41. data/schema/OFX_Email.xsd +25 -0
  42. data/schema/OFX_Email_Message_Wrappers.xsd +129 -0
  43. data/schema/OFX_Email_Messages.xsd +72 -0
  44. data/schema/OFX_Image_Message_Wrappers.xsd +31 -0
  45. data/schema/OFX_Image_Messages.xsd +35 -0
  46. data/schema/OFX_InterTransfer.xsd +24 -0
  47. data/schema/OFX_InterTransfer_Message_Wrappers.xsd +195 -0
  48. data/schema/OFX_InterTransfer_Messages.xsd +256 -0
  49. data/schema/OFX_Investment.xsd +1358 -0
  50. data/schema/OFX_Investment_Message_Wrappers.xsd +162 -0
  51. data/schema/OFX_Investment_Messages.xsd +149 -0
  52. data/schema/OFX_Loan_Message_Wrappers.xsd +1 -0
  53. data/schema/OFX_Loan_Messages.xsd +124 -0
  54. data/schema/OFX_Loans.xsd +200 -0
  55. data/schema/OFX_Messages.xsd +18 -0
  56. data/schema/OFX_Profile.xsd +959 -0
  57. data/schema/OFX_Profile_Message_Wrappers.xsd +55 -0
  58. data/schema/OFX_Profile_Messages.xsd +96 -0
  59. data/schema/OFX_SecuritiesList.xsd +357 -0
  60. data/schema/OFX_SecuritiesList_Message_Wrappers.xsd +55 -0
  61. data/schema/OFX_SecuritiesList_Messages.xsd +55 -0
  62. data/schema/OFX_Signon.xsd +243 -0
  63. data/schema/OFX_Signon_Message_Wrappers.xsd +120 -0
  64. data/schema/OFX_Signon_Messages.xsd +211 -0
  65. data/schema/OFX_Signup.xsd +114 -0
  66. data/schema/OFX_Signup_Message_Wrappers.xsd +222 -0
  67. data/schema/OFX_Signup_Messages.xsd +153 -0
  68. data/schema/OFX_Tax1098.xsd +123 -0
  69. data/schema/OFX_Tax1098_Message_Wrappers.xsd +52 -0
  70. data/schema/OFX_Tax1098_Messages.xsd +65 -0
  71. data/schema/OFX_Tax1099.xsd +371 -0
  72. data/schema/OFX_Tax1099_Message_Wrappers.xsd +52 -0
  73. data/schema/OFX_Tax1099_Messages.xsd +50 -0
  74. data/schema/OFX_TaxW2.xsd +204 -0
  75. data/schema/OFX_TaxW2_Message_Wrappers.xsd +52 -0
  76. data/schema/OFX_TaxW2_Messages.xsd +58 -0
  77. data/schema/OFX_TypeDefinitions.xsd +98 -0
  78. data/schema/OFX_WireTransfer.xsd +88 -0
  79. data/schema/OFX_WireTransfer_Message_Wrappers.xsd +101 -0
  80. data/schema/OFX_WireTransfer_Messages.xsd +116 -0
  81. data/test/sample/ofx/invalid.xml +34 -0
  82. data/test/sample/ofx/malformed.xml +38 -0
  83. data/test/sample/ofx/test_result.xml +101 -0
  84. data/test/sample/ofx/valid.xml +38 -0
  85. data/test/sample/organization/invalid_format.txt +1 -0
  86. data/test/sample/organization/malformed.txt +1 -0
  87. data/test/sample/organization/valid_one_account.txt +1 -0
  88. data/test/sample/organization/valid_two_accounts.txt +1 -0
  89. data/test/sample/transactions/corp-1234-bank-account-1-FR0000000000000000000000001.txt +60 -0
  90. data/test/sample/transactions/corp-1234-bank-account-2-FR0000000000000000000000002-p1.txt +28 -0
  91. data/test/sample/transactions/corp-1234-bank-account-2-FR0000000000000000000000002-p2.txt +28 -0
  92. data/test/sample/transactions/invalid_format.txt +1 -0
  93. data/test/sample/transactions/malformed.txt +1 -0
  94. data/test/sample/transactions/valid.txt +1 -0
  95. data/test/test_converter.rb +51 -0
  96. data/test/test_ofx_validator.rb +25 -0
  97. data/test/test_organization_validator.rb +28 -0
  98. data/test/test_transactions_listing_validator.rb +23 -0
  99. metadata +314 -0
@@ -0,0 +1,45 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <!--
3
+
4
+ Open Financial Exchange Specification (c)1996-2004 ("Specification") by all of its publishers:
5
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
6
+
7
+ Revision History:
8
+
9
+ Version Date Editor Email Addr Short Description
10
+
11
+ p18 2002-02-11 altenburgd@businesslogic.com Initial revision
12
+ -->
13
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="unqualified" xmlns:ofx="http://ofx.net/types/2003/04" targetNamespace="http://ofx.net/types/2003/04">
14
+ <xsd:include schemaLocation="OFX_Common.xsd"/>
15
+ <xsd:complexType name="CreditCardClosing">
16
+ <xsd:annotation>
17
+ <xsd:documentation>
18
+ The OFX element "CCCLOSING" is of type "CreditCardClosing"
19
+ </xsd:documentation>
20
+ </xsd:annotation>
21
+ <xsd:sequence>
22
+ <xsd:element name="FITID" type="ofx:FinancialInstitutionTransactionIdType"/>
23
+ <xsd:element name="DTOPEN" type="ofx:DateTimeType" minOccurs="0" maxOccurs="1"/>
24
+ <xsd:element name="DTCLOSE" type="ofx:DateTimeType"/>
25
+ <xsd:element name="DTNEXT" type="ofx:DateTimeType" minOccurs="0" maxOccurs="1"/>
26
+ <xsd:element name="BALOPEN" type="ofx:AmountType" minOccurs="0" maxOccurs="1"/>
27
+ <xsd:element name="BALCLOSE" type="ofx:AmountType"/>
28
+ <xsd:element name="DTPMTDUE" type="ofx:DateTimeType" minOccurs="0" maxOccurs="1"/>
29
+ <xsd:element name="MINPMTDUE" type="ofx:AmountType" minOccurs="0" maxOccurs="1"/>
30
+ <xsd:element name="FINCHG" type="ofx:AmountType" minOccurs="0" maxOccurs="1"/>
31
+ <xsd:element name="PAYANDCREDIT" type="ofx:AmountType" minOccurs="0" maxOccurs="1"/>
32
+ <xsd:element name="PURANDADV" type="ofx:AmountType" minOccurs="0" maxOccurs="1"/>
33
+ <xsd:element name="DEBADJ" type="ofx:AmountType" minOccurs="0" maxOccurs="1"/>
34
+ <xsd:element name="CREDITLIMIT" type="ofx:AmountType" minOccurs="0" maxOccurs="1"/>
35
+ <xsd:element name="DTPOSTSTART" type="ofx:DateTimeType"/>
36
+ <xsd:element name="DTPOSTEND" type="ofx:DateTimeType"/>
37
+ <xsd:element name="MKTGINFO" type="ofx:InfoType" minOccurs="0" maxOccurs="1"/>
38
+ <xsd:element name="IMAGEDATA" type="ofx:ImageData" minOccurs="0" maxOccurs="1"/>
39
+ <xsd:choice minOccurs="0" maxOccurs="1">
40
+ <xsd:element name="CURRENCY" type="ofx:Currency"/>
41
+ <xsd:element name="ORIGCURRENCY" type="ofx:Currency"/>
42
+ </xsd:choice>
43
+ </xsd:sequence>
44
+ </xsd:complexType>
45
+ </xsd:schema>
@@ -0,0 +1,88 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!--
4
+
5
+ Open Financial Exchange Specification (c)1996-2003 ("Specification") by all of its publishers:
6
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
7
+
8
+ Revision History:
9
+
10
+ Version Date Editor Email Addr Short Description
11
+
12
+ p18 2002-02-11 altenburgd@businesslogic.com Initial revision
13
+ p21 2002-03-17 altenburgd@businesslogic.com Changed elementFormDefault to "unqualified"
14
+ Changed namespace to "http://ofx.net/types/2003/04"
15
+ -->
16
+
17
+ <xsd:schema
18
+ elementFormDefault="unqualified"
19
+ targetNamespace="http://ofx.net/types/2003/04"
20
+ xmlns:ofx="http://ofx.net/types/2003/04"
21
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
22
+
23
+ <xsd:include schemaLocation="OFX_CreditCard_Messages.xsd"/>
24
+ <xsd:complexType name="CreditCardStatementEndTransactionRequest">
25
+ <xsd:annotation>
26
+ <xsd:documentation>
27
+ The OFX element "CCSTMTENDTRNRQ" is of type "CreditCardStatementEndTransactionRequest"
28
+ </xsd:documentation>
29
+ </xsd:annotation>
30
+
31
+ <xsd:complexContent>
32
+ <xsd:extension base="ofx:AbstractTransactionRequest">
33
+ <xsd:sequence>
34
+ <xsd:element name="CCSTMTENDRQ" type="ofx:CreditCardStatementEndRequest"/>
35
+ </xsd:sequence>
36
+ </xsd:extension>
37
+ </xsd:complexContent>
38
+ </xsd:complexType>
39
+
40
+ <xsd:complexType name="CreditCardStatementEndTransactionResponse">
41
+ <xsd:annotation>
42
+ <xsd:documentation>
43
+ The OFX element "CCSTMTENDTRNRS" is of type "CreditCardStatementEndTransactionResponse"
44
+ </xsd:documentation>
45
+ </xsd:annotation>
46
+
47
+ <xsd:complexContent>
48
+ <xsd:extension base="ofx:AbstractTransactionResponse">
49
+ <xsd:sequence>
50
+ <xsd:element name="CCSTMTENDRS" type="ofx:CreditCardStatementEndResponse" minOccurs="0"/>
51
+ </xsd:sequence>
52
+ </xsd:extension>
53
+ </xsd:complexContent>
54
+ </xsd:complexType>
55
+
56
+ <xsd:complexType name="CreditCardStatementTransactionRequest">
57
+ <xsd:annotation>
58
+ <xsd:documentation>
59
+ The OFX element "CCSTMTTRNRQ" is of type "CreditCardStatementTransactionRequest"
60
+ </xsd:documentation>
61
+ </xsd:annotation>
62
+
63
+ <xsd:complexContent>
64
+ <xsd:extension base="ofx:AbstractTransactionRequest">
65
+ <xsd:sequence>
66
+ <xsd:element name="CCSTMTRQ" type="ofx:CreditCardStatementRequest"/>
67
+ </xsd:sequence>
68
+ </xsd:extension>
69
+ </xsd:complexContent>
70
+ </xsd:complexType>
71
+
72
+ <xsd:complexType name="CreditCardStatementTransactionResponse">
73
+ <xsd:annotation>
74
+ <xsd:documentation>
75
+ The OFX element "CCSTMTTRNRS" is of type "CreditCardStatementTransactionResponse"
76
+ </xsd:documentation>
77
+ </xsd:annotation>
78
+
79
+ <xsd:complexContent>
80
+ <xsd:extension base="ofx:AbstractTransactionResponse">
81
+ <xsd:sequence>
82
+ <xsd:element name="CCSTMTRS" type="ofx:CreditCardStatementResponse" minOccurs="0"/>
83
+ </xsd:sequence>
84
+ </xsd:extension>
85
+ </xsd:complexContent>
86
+ </xsd:complexType>
87
+
88
+ </xsd:schema>
@@ -0,0 +1,102 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!--
4
+
5
+ Open Financial Exchange Specification (c)1996-2004 ("Specification") by all of its publishers:
6
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
7
+
8
+ Revision History:
9
+
10
+ Version Date Editor Email Addr Short Description
11
+
12
+ p18 2002-02-11 altenburgd@businesslogic.com Initial revision
13
+ p21 2002-03-17 altenburgd@businesslogic.com Changed elementFormDefault to "unqualified"
14
+ Changed namespace to "http://ofx.net/types/2003/04"
15
+ -->
16
+
17
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
18
+ elementFormDefault="unqualified"
19
+ xmlns:ofx="http://ofx.net/types/2003/04"
20
+ targetNamespace="http://ofx.net/types/2003/04">
21
+
22
+ <xsd:include schemaLocation = "OFX_CreditCard.xsd" />
23
+
24
+ <xsd:complexType name="CreditCardStatementEndRequest">
25
+ <xsd:annotation>
26
+ <xsd:documentation>
27
+ The OFX element "CCSTMTENDRQ" is of type "CreditCardStatementEndRequest"
28
+ </xsd:documentation>
29
+ </xsd:annotation>
30
+
31
+ <xsd:sequence>
32
+ <xsd:element name="CCACCTFROM" type="ofx:CreditCardAccount" />
33
+
34
+ <xsd:element name="DTSTART" type="ofx:DateTimeType" minOccurs="0" maxOccurs="1" />
35
+
36
+ <xsd:element name="DTEND" type="ofx:DateTimeType" minOccurs="0" maxOccurs="1" />
37
+
38
+ <xsd:element name="INCSTMTIMG" type="ofx:BooleanType" minOccurs="0" maxOccurs="1" />
39
+ </xsd:sequence>
40
+ </xsd:complexType>
41
+
42
+ <xsd:complexType name="CreditCardStatementEndResponse">
43
+ <xsd:annotation>
44
+ <xsd:documentation>
45
+ The OFX element "CCSTMTENDRS" is of type "CreditCardStatementEndResponse"
46
+ </xsd:documentation>
47
+ </xsd:annotation>
48
+
49
+ <xsd:sequence>
50
+ <xsd:element name="CURDEF" type="ofx:CurrencyEnum" />
51
+
52
+ <xsd:element name="CCACCTFROM" type="ofx:CreditCardAccount" />
53
+
54
+ <xsd:element name="CCCLOSING" type="ofx:CreditCardClosing"
55
+ minOccurs="0" maxOccurs="unbounded" />
56
+ </xsd:sequence>
57
+ </xsd:complexType>
58
+
59
+ <xsd:complexType name="CreditCardStatementRequest">
60
+ <xsd:annotation>
61
+ <xsd:documentation>
62
+ The OFX element "CCSTMTRQ" is of type "CreditCardStatementRequest"
63
+ </xsd:documentation>
64
+ </xsd:annotation>
65
+
66
+ <xsd:sequence>
67
+ <xsd:element name="CCACCTFROM" type="ofx:CreditCardAccount" />
68
+
69
+ <xsd:element name="INCTRAN" type="ofx:IncTransaction" minOccurs="0"
70
+ maxOccurs="1" />
71
+ </xsd:sequence>
72
+ </xsd:complexType>
73
+
74
+ <xsd:complexType name="CreditCardStatementResponse">
75
+ <xsd:annotation>
76
+ <xsd:documentation>
77
+ The OFX element "CCSTMTRS" is of type "CreditCardStatementResponse"
78
+ </xsd:documentation>
79
+ </xsd:annotation>
80
+
81
+ <xsd:sequence>
82
+ <xsd:element name="CURDEF" type="ofx:CurrencyEnum" />
83
+
84
+ <xsd:element name="CCACCTFROM" type="ofx:CreditCardAccount" />
85
+
86
+ <xsd:element name="BANKTRANLIST" type="ofx:BankTransactionList"
87
+ minOccurs="0" maxOccurs="1" />
88
+
89
+ <xsd:element name="LEDGERBAL" type="ofx:LedgerBalance" />
90
+
91
+ <xsd:element name="AVAILBAL" type="ofx:AvailableBalance"
92
+ minOccurs="0" maxOccurs="1" />
93
+
94
+ <xsd:element name="BALLIST" type="ofx:BalanceList" minOccurs="0"
95
+ maxOccurs="1" />
96
+
97
+ <xsd:element name="MKTGINFO" type="ofx:InfoType"
98
+ minOccurs="0" maxOccurs="1" />
99
+ </xsd:sequence>
100
+ </xsd:complexType>
101
+
102
+ </xsd:schema>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!--
4
+
5
+ Open Financial Exchange Specification (c)1996-2003 ("Specification") by all of its publishers:
6
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
7
+
8
+ Revision History:
9
+
10
+ Version Date Editor Email Addr Short Description
11
+
12
+ p18 2002-02-11 altenburgd@businesslogic.com Initial revision
13
+ p21 2002-03-17 altenburgd@businesslogic.com Changed elementFormDefault to "unqualified"
14
+ Changed namespace to "http://ofx.net/types/2003/04"
15
+ -->
16
+
17
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
18
+ elementFormDefault="unqualified"
19
+ xmlns:ofx="http://ofx.net/types/2003/04"
20
+ targetNamespace="http://ofx.net/types/2003/04">
21
+
22
+ <xsd:include schemaLocation = "OFX_Common.xsd" />
23
+
24
+ </xsd:schema>
25
+
@@ -0,0 +1,129 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!--
4
+
5
+ Open Financial Exchange Specification (c)1996-2003 ("Specification") by all of its publishers:
6
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
7
+
8
+ Revision History:
9
+
10
+ Version Date Editor Email Addr Short Description
11
+
12
+ p18 2002-02-11 altenburgd@businesslogic.com Initial revision
13
+ p21 2002-03-17 altenburgd@businesslogic.com Renamed "Account" to "AbstractAccount"
14
+ Renamed "SyncRequest" to "AbstractSyncRequest"
15
+ Renamed "SyncResponse" to "AbstractSyncResponse"
16
+ Renamed "TransactionRequest" to "AbstractTransactionRequest"
17
+ Renamed "TransactionResponse" to "AbstractTransactionResponse"
18
+
19
+ p21 2002-03-17 altenburgd@businesslogic.com Changed elementFormDefault to "unqualified"
20
+ Changed namespace to "http://ofx.net/types/2003/04"
21
+ -->
22
+
23
+ <xsd:schema
24
+ targetNamespace="http://ofx.net/types/2003/04"
25
+ xmlns:ofx="http://ofx.net/types/2003/04"
26
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
27
+ elementFormDefault="unqualified"
28
+ >
29
+
30
+ <xsd:include schemaLocation="OFX_Email_Messages.xsd"/>
31
+ <xsd:complexType name="GetMimeTransactionRequest">
32
+ <xsd:annotation>
33
+ <xsd:documentation>
34
+ The OFX element "GETMIMETRNRQ" is of type "GetMimeTransactionRequest"
35
+ </xsd:documentation>
36
+ </xsd:annotation>
37
+
38
+ <xsd:complexContent>
39
+ <xsd:extension base="ofx:AbstractTransactionRequest">
40
+ <xsd:sequence>
41
+ <xsd:element name="GETMIMERQ" type="ofx:GetMimeRequest"/>
42
+ </xsd:sequence>
43
+ </xsd:extension>
44
+ </xsd:complexContent>
45
+ </xsd:complexType>
46
+
47
+ <xsd:complexType name="GetMimeTransactionResponse">
48
+ <xsd:annotation>
49
+ <xsd:documentation>
50
+ The OFX element "GETMIMETRNRS" is of type "GetMimeTransactionResponse"
51
+ </xsd:documentation>
52
+ </xsd:annotation>
53
+
54
+ <xsd:complexContent>
55
+ <xsd:extension base="ofx:AbstractTransactionResponse">
56
+ <xsd:sequence>
57
+ <xsd:element name="GETMIMERS" type="ofx:GetMimeResponse" minOccurs="0"/>
58
+ </xsd:sequence>
59
+ </xsd:extension>
60
+ </xsd:complexContent>
61
+ </xsd:complexType>
62
+
63
+ <xsd:complexType name="MailSyncRequest">
64
+ <xsd:annotation>
65
+ <xsd:documentation>
66
+ The OFX element "MAILSYNCRQ" is of type "MailSyncRequest"
67
+ </xsd:documentation>
68
+ </xsd:annotation>
69
+
70
+ <xsd:complexContent>
71
+ <xsd:extension base="ofx:AbstractSyncRequest">
72
+ <xsd:sequence>
73
+ <xsd:element name="INCIMAGES" type="ofx:BooleanType"/>
74
+ <xsd:element name="USEHTML" type="ofx:BooleanType"/>
75
+ <xsd:element name="MAILTRNRQ" type="ofx:MailTransactionRequest" minOccurs="0" maxOccurs="unbounded"/>
76
+ </xsd:sequence>
77
+ </xsd:extension>
78
+ </xsd:complexContent>
79
+ </xsd:complexType>
80
+
81
+ <xsd:complexType name="MailSyncResponse">
82
+ <xsd:annotation>
83
+ <xsd:documentation>
84
+ The OFX element "MAILSYNCRS" is of type "MailSyncResponse"
85
+ </xsd:documentation>
86
+ </xsd:annotation>
87
+
88
+ <xsd:complexContent>
89
+ <xsd:extension base="ofx:AbstractSyncResponse">
90
+ <xsd:sequence>
91
+ <xsd:element name="MAILTRNRS" type="ofx:MailTransactionResponse" minOccurs="0" maxOccurs="unbounded"/>
92
+ </xsd:sequence>
93
+ </xsd:extension>
94
+ </xsd:complexContent>
95
+ </xsd:complexType>
96
+
97
+ <xsd:complexType name="MailTransactionRequest">
98
+ <xsd:annotation>
99
+ <xsd:documentation>
100
+ The OFX element "MAILTRNRQ" is of type "MailTransactionRequest"
101
+ </xsd:documentation>
102
+ </xsd:annotation>
103
+
104
+ <xsd:complexContent>
105
+ <xsd:extension base="ofx:AbstractTransactionRequest">
106
+ <xsd:sequence>
107
+ <xsd:element name="MAILRQ" type="ofx:MailRequest"/>
108
+ </xsd:sequence>
109
+ </xsd:extension>
110
+ </xsd:complexContent>
111
+ </xsd:complexType>
112
+
113
+ <xsd:complexType name="MailTransactionResponse">
114
+ <xsd:annotation>
115
+ <xsd:documentation>
116
+ The OFX element "MAILTRNRS" is of type "MailTransactionResponse"
117
+ </xsd:documentation>
118
+ </xsd:annotation>
119
+
120
+ <xsd:complexContent>
121
+ <xsd:extension base="ofx:AbstractTransactionResponse">
122
+ <xsd:sequence>
123
+ <xsd:element name="MAILRS" type="ofx:MailResponse" minOccurs="0"/>
124
+ </xsd:sequence>
125
+ </xsd:extension>
126
+ </xsd:complexContent>
127
+ </xsd:complexType>
128
+
129
+ </xsd:schema>
@@ -0,0 +1,72 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!--
4
+
5
+ Open Financial Exchange Specification (c)1996-2003 ("Specification") by all of its publishers:
6
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
7
+
8
+ Revision History:
9
+
10
+ Version Date Editor Email Addr Short Description
11
+
12
+ p18 2002-02-11 altenburgd@businesslogic.com Initial revision
13
+ p21 2002-03-17 altenburgd@businesslogic.com Changed elementFormDefault to "unqualified"
14
+ Changed namespace to "http://ofx.net/types/2003/04"
15
+ -->
16
+
17
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
18
+ elementFormDefault="unqualified"
19
+ xmlns:ofx="http://ofx.net/types/2003/04"
20
+ targetNamespace="http://ofx.net/types/2003/04">
21
+
22
+ <xsd:include schemaLocation = "OFX_Email.xsd" />
23
+
24
+ <xsd:complexType name="GetMimeRequest">
25
+ <xsd:annotation>
26
+ <xsd:documentation>
27
+ The OFX element "GETMIMERQ" is of type "GetMimeRequest"
28
+ </xsd:documentation>
29
+ </xsd:annotation>
30
+
31
+ <xsd:sequence>
32
+ <xsd:element name="URL" type="ofx:UrlType" />
33
+ </xsd:sequence>
34
+ </xsd:complexType>
35
+
36
+ <xsd:complexType name="GetMimeResponse">
37
+ <xsd:annotation>
38
+ <xsd:documentation>
39
+ The OFX element "GETMIMERS" is of type "GetMimeResponse"
40
+ </xsd:documentation>
41
+ </xsd:annotation>
42
+
43
+ <xsd:sequence>
44
+ <xsd:element name="URL" type="ofx:UrlType" />
45
+ </xsd:sequence>
46
+ </xsd:complexType>
47
+
48
+ <xsd:complexType name="MailRequest">
49
+ <xsd:annotation>
50
+ <xsd:documentation>
51
+ The OFX element "MAILRQ" is of type "MailRequest"
52
+ </xsd:documentation>
53
+ </xsd:annotation>
54
+
55
+ <xsd:sequence>
56
+ <xsd:element name="MAIL" type="ofx:Mail" />
57
+ </xsd:sequence>
58
+ </xsd:complexType>
59
+
60
+ <xsd:complexType name="MailResponse">
61
+ <xsd:annotation>
62
+ <xsd:documentation>
63
+ The OFX element "MAILRS" is of type "MailResponse"
64
+ </xsd:documentation>
65
+ </xsd:annotation>
66
+
67
+ <xsd:sequence>
68
+ <xsd:element name="MAIL" type="ofx:Mail" />
69
+ </xsd:sequence>
70
+ </xsd:complexType>
71
+
72
+ </xsd:schema>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!-- Open Financial Exchange Specification (c)1996-2004 ("Specification") by all of its publishers:
4
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation.
5
+ All rights reserved.
6
+ Revision History:
7
+ Version Date Editor Email Addr Short Description p1 2006-06-13 wdubois@intuit.com Initial revision
8
+ -->
9
+
10
+ <xsd:schema
11
+ elementFormDefault="unqualified"
12
+ targetNamespace="http://ofx.net/types/2003/04" xmlns:ofx="http://ofx.net/types/2003/04" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
13
+
14
+ <xsd:include schemaLocation="OFX_Image_Messages.xsd"/>
15
+
16
+ <xsd:complexType name="ImageTransactionRequest">
17
+ <xsd:annotation>
18
+ <xsd:documentation>
19
+ The OFX element "IMAGETRNRQ" is of type "ImageTransactionRequest"
20
+ </xsd:documentation>
21
+ </xsd:annotation>
22
+
23
+ <xsd:complexContent>
24
+ <xsd:extension base="ofx:AbstractTransactionRequest">
25
+ <xsd:sequence>
26
+ <xsd:element name="IMAGERQ" type="ofx:ImageRequest"/> </xsd:sequence>
27
+ </xsd:extension>
28
+ </xsd:complexContent>
29
+ </xsd:complexType>
30
+
31
+ </xsd:schema>
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!--
4
+
5
+ Open Financial Exchange Specification (c)1996-2004 ("Specification") by all of its publishers:
6
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
7
+
8
+ Revision History:
9
+
10
+ Version Date Editor Email Addr Short Description
11
+ p1 2006-06-13 wdubois@intuit.com Initial revision
12
+ -->
13
+
14
+ <xsd:schema
15
+ elementFormDefault="unqualified"
16
+ targetNamespace="http://ofx.net/types/2003/04"
17
+ xmlns:ofx="http://ofx.net/types/2003/04"
18
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
19
+
20
+ <xsd:include schemaLocation="OFX_Common.xsd"/>
21
+
22
+ <xsd:complexType name="ImageRequest">
23
+ <xsd:annotation>
24
+ <xsd:documentation>
25
+ The OFX element "IMAGERQ" is of type "ImageRequest"
26
+ </xsd:documentation>
27
+ </xsd:annotation>
28
+
29
+ <xsd:sequence>
30
+ <xsd:element name="IMAGEREF" type="ofx:ImageRefType"/>
31
+ </xsd:sequence>
32
+ </xsd:complexType>
33
+
34
+
35
+ </xsd:schema>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+
3
+ <!--
4
+
5
+ Open Financial Exchange Specification (c)1996-2003 ("Specification") by all of its publishers:
6
+ CheckFree Corp., Intuit Inc., and Microsoft Corporation. All rights reserved.
7
+
8
+ Revision History:
9
+
10
+ Version Date Editor Email Addr Short Description
11
+
12
+ p18 2002-02-11 altenburgd@businesslogic.com Initial revision
13
+ p21 2002-03-17 altenburgd@businesslogic.com Changed elementFormDefault to "unqualified"
14
+ Changed namespace to "http://ofx.net/types/2003/04"
15
+ -->
16
+
17
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
18
+ elementFormDefault="unqualified"
19
+ xmlns:ofx="http://ofx.net/types/2003/04"
20
+ targetNamespace="http://ofx.net/types/2003/04">
21
+ <xsd:include schemaLocation = "OFX_Common.xsd" />
22
+
23
+ </xsd:schema>
24
+