fidor_schema 0.10.9 → 0.10.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b16fe000728b4fbd73421fe38fe3e8c3cd95ac6c
4
- data.tar.gz: db0e93f3e82518ed4393608d5685bf41442bb79d
3
+ metadata.gz: 92e29926b333355c5c5e3243b0c0796c17ea170a
4
+ data.tar.gz: 1f9c42f321be71e3f2798de4ae0ef8395cf8ed12
5
5
  SHA512:
6
- metadata.gz: 920665798b4ed31fae6f766a5679c5a09db777a40ccf82b46e322b8af1d23cef4ec16347ac68722065a2e7a6b0b2800ac9e0e04100555cba81f9cf3bfabe93ac
7
- data.tar.gz: e5299391ca9182b76906e3b06c7d24824033f0367c5443e213d56191237a96b2b9d12adc0a8e44e9d5b78d94abd2e44d05391d0b880fe28d23f4ade96cabdfc2
6
+ metadata.gz: 49e96693835bb64b4548377153a6d0020defce999ce5f70b5d9538aa6194bb2be59fcaa549b95bcd9a2a63e0f8acce1773b309b68aef54e98179306bc7d69dfd
7
+ data.tar.gz: 4aa27eaec5178f71fe6862f42ae25b462674aac78bb5dcec7cdf3ef7ac867522645ec49a22fa6c335f7cc08e4228968cb3205be402fa2e2c35d28520cd32c3ae
@@ -1,5 +1,5 @@
1
1
  module Fidor
2
2
  class Schema
3
- VERSION = '0.10.9'
3
+ VERSION = '0.10.10'
4
4
  end
5
5
  end
@@ -0,0 +1,33 @@
1
+ {
2
+ "$schema" : "http://json-schema.org/draft-04/schema#",
3
+ "type" : "object",
4
+ "title" : "account_limit",
5
+ "description" : "See and update your account limits",
6
+ "properties" : {
7
+ "order_limit" : {
8
+ "description" : "A limit for a single transaction order",
9
+ "$ref" : "./base_types/base_types.json#definitions/amount"
10
+ },
11
+ "cash_limit" : {
12
+ "description" : "Limit for the transactions authorized with FIN",
13
+ "$ref" : "./base_types/base_types.json#definitions/amount"
14
+ },
15
+ "daily_limit" : {
16
+ "description" : "Daily transaction limit",
17
+ "$ref" : "./base_types/base_types.json#definitions/amount"
18
+ }
19
+ },
20
+ "links" : [
21
+ {
22
+ "rel" : "self",
23
+ "href" : "account_limits"
24
+ },
25
+ {
26
+ "description" : "Update your account limits",
27
+ "href" : "account_limits",
28
+ "method" : "PUT",
29
+ "rel" : "update",
30
+ "title" : "update_account_limits"
31
+ }
32
+ ]
33
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fidor_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.9
4
+ version: 0.10.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Leciejewski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-22 00:00:00.000000000 Z
11
+ date: 2016-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -162,18 +162,17 @@ files:
162
162
  - lib/validator/json_schema.rb
163
163
  - lib/validator/schema.json
164
164
  - schema/v1.0/account.json
165
+ - schema/v1.0/account_limit.json
165
166
  - schema/v1.0/bank_check.json
166
167
  - schema/v1.0/base_types/base_types.json
167
168
  - schema/v1.0/base_types/lists.json
168
169
  - schema/v1.0/batch_direct_debit.json
169
170
  - schema/v1.0/batch_transfer.json
170
- - schema/v1.0/blocked_amount.json
171
171
  - schema/v1.0/card.json
172
172
  - schema/v1.0/card/pin.json
173
173
  - schema/v1.0/card_limit.json
174
174
  - schema/v1.0/creditor_identity.json
175
175
  - schema/v1.0/customer.json
176
- - schema/v1.0/emergency_loan.json
177
176
  - schema/v1.0/error.json
178
177
  - schema/v1.0/internal_transfer.json
179
178
  - schema/v1.0/legal.json
@@ -1,9 +0,0 @@
1
- {
2
- "type" : "object",
3
- "title" : "blocked_amount",
4
- "description" : "",
5
- "properties" : {
6
-
7
- },
8
- "links" : []
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "type" : "object",
3
- "title" : "emergency_loan",
4
- "description" : "",
5
- "properties" : {
6
-
7
- },
8
- "links" : []
9
- }