fidor_schema 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/fidor_schema_version.rb +1 -1
- data/schema/v1.0/base_types/base_types.json +2 -2
- data/schema/v1.0/rate_limit.json +29 -0
- data/schema/v1.0/sepa_direct_debit.json +1 -1
- data/schema/v1.0/transaction.json +7 -7
- data/schema/v1.0/user.json +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a8eb9aba30533d5b2acc68a972a3fbc3015aa7d
|
|
4
|
+
data.tar.gz: c16b3be13bd1b8a66f5d66b99fb806bc6bc58005
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bfdb27a590afab34161712e5efd6b75ea9dfab98c7c7bc1bdf4bbc530bb25168a68412604bf0af288fceb8072b2ffca4a830c39b68f10136e913d8d76c7d92c2
|
|
7
|
+
data.tar.gz: cfc10044519471705857faa10596fb6404ee59aa18d4b92e545f35188c14088ac71b8b956f904e752df60f3ac8d69ab405b61e0a30d8dc5bc03528564276b514
|
data/CHANGELOG.md
CHANGED
data/lib/fidor_schema_version.rb
CHANGED
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"pattern" : "^@(\\w){1,15}$"
|
|
38
38
|
},
|
|
39
39
|
"created_at" : {
|
|
40
|
-
"description" : "Creation date-time, never changes.",
|
|
40
|
+
"description" : "Creation date-time, never changes. ISO 8601 Date-Time",
|
|
41
41
|
"format" : "date-time",
|
|
42
42
|
"type" : "string",
|
|
43
43
|
"readonly" : true
|
|
44
44
|
},
|
|
45
45
|
"updated_at" : {
|
|
46
|
-
"description" : "Last update date-time.",
|
|
46
|
+
"description" : "Last update date-time. ISO 8601 Date-Time",
|
|
47
47
|
"format" : "date-time",
|
|
48
48
|
"type" : "string",
|
|
49
49
|
"readonly" : true
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type" : "object",
|
|
3
|
+
"title" : "Rate limit",
|
|
4
|
+
"name" : "rate_limit",
|
|
5
|
+
"description" : "Overall, remaining rate limits and the time frame until the reset.",
|
|
6
|
+
"properties" : {
|
|
7
|
+
"limit" : {
|
|
8
|
+
"description" : "The rate limit ceiling for the given request in a [time window]",
|
|
9
|
+
"type" : "integer",
|
|
10
|
+
"readonly" : true
|
|
11
|
+
},
|
|
12
|
+
"remaining" : {
|
|
13
|
+
"description" : "The number of requests left for the [time window]",
|
|
14
|
+
"type" : "integer",
|
|
15
|
+
"readonly" : true
|
|
16
|
+
},
|
|
17
|
+
"reset" : {
|
|
18
|
+
"description" : "The remaining window before the rate limit resets in e.g. UTC epoch seconds",
|
|
19
|
+
"type" : "integer",
|
|
20
|
+
"readonly" : true
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"links" : [
|
|
24
|
+
{
|
|
25
|
+
"rel" : "self",
|
|
26
|
+
"href" : "rate_limit"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"readonly" : true
|
|
48
48
|
},
|
|
49
49
|
"booking_date" : {
|
|
50
|
-
"description" : "Date the transaction was booked.",
|
|
51
|
-
"format" : "date
|
|
50
|
+
"description" : "Date the transaction was booked. ISO 8601 Date",
|
|
51
|
+
"format" : "date",
|
|
52
52
|
"readonly" : true,
|
|
53
53
|
"type" : "string"
|
|
54
54
|
},
|
|
55
55
|
"value_date" : {
|
|
56
|
-
"description" : "Date the amount was credited to the account
|
|
56
|
+
"description" : "Date the amount was credited to the account. ISO 8601 Date",
|
|
57
57
|
"format" : "date",
|
|
58
58
|
"readonly" : true,
|
|
59
59
|
"type" : "string"
|
|
@@ -100,13 +100,13 @@
|
|
|
100
100
|
"type" : "string"
|
|
101
101
|
},
|
|
102
102
|
"filter[booking_date_from]" : {
|
|
103
|
-
"title" : "Date filter from >= date",
|
|
104
|
-
"format" : "date
|
|
103
|
+
"title" : "Date filter from >= date. ISO 8601 Date",
|
|
104
|
+
"format" : "date",
|
|
105
105
|
"type" : "string"
|
|
106
106
|
},
|
|
107
107
|
"filter[booking_date_to]" : {
|
|
108
|
-
"title" : "Date filter to <= date",
|
|
109
|
-
"format" : "date
|
|
108
|
+
"title" : "Date filter to <= date. ISO 8601 Date",
|
|
109
|
+
"format" : "date",
|
|
110
110
|
"type" : "string"
|
|
111
111
|
},
|
|
112
112
|
"filter[kinds]" : {
|
data/schema/v1.0/user.json
CHANGED
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.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Georg Leciejewski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -129,6 +129,7 @@ files:
|
|
|
129
129
|
- schema/v1.0/lists/sepa_mandates.json
|
|
130
130
|
- schema/v1.0/lists/transactions.json
|
|
131
131
|
- schema/v1.0/lists/users.json
|
|
132
|
+
- schema/v1.0/rate_limit.json
|
|
132
133
|
- schema/v1.0/sepa_credit_transfer.json
|
|
133
134
|
- schema/v1.0/sepa_direct_debit.json
|
|
134
135
|
- schema/v1.0/sepa_mandate.json
|