turbot-runner 0.2.31 → 0.2.32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/lib/turbot_runner/version.rb +1 -1
  3. data/schema/schemas/accounts-statement-schema.json +48 -29
  4. data/schema/schemas/company-schema.json +8 -5
  5. data/schema/schemas/control-statement-schema.json +32 -8
  6. data/schema/schemas/filing-schema.json +3 -4
  7. data/schema/schemas/financial-payment-schema.json +1 -1
  8. data/schema/schemas/gazette-notice-schema.json +337 -312
  9. data/schema/schemas/includes/{accounts_element.json → accounts-element.json} +1 -1
  10. data/schema/schemas/includes/address.json +2 -3
  11. data/schema/schemas/includes/{alternative_name.json → alternative-name.json} +1 -1
  12. data/schema/schemas/includes/base-statement.json +5 -2
  13. data/schema/schemas/includes/company-for-nesting.json +3 -3
  14. data/schema/schemas/includes/company.json +1 -1
  15. data/schema/schemas/includes/date.json +17 -4
  16. data/schema/schemas/includes/entity.json +2 -2
  17. data/schema/schemas/includes/{filing_document.json → filing-document.json} +12 -3
  18. data/schema/schemas/includes/filing.json +1 -1
  19. data/schema/schemas/includes/financial-payment-data-object.json +1 -1
  20. data/schema/schemas/includes/identifier.json +1 -1
  21. data/schema/schemas/includes/{industry_code.json → industry-code.json} +1 -1
  22. data/schema/schemas/includes/legislation.json +1 -1
  23. data/schema/schemas/includes/licence-data-object.json +1 -1
  24. data/schema/schemas/includes/officer.json +1 -1
  25. data/schema/schemas/includes/organisation.json +8 -5
  26. data/schema/schemas/includes/permission.json +1 -1
  27. data/schema/schemas/includes/{person_name.json → person-name.json} +1 -1
  28. data/schema/schemas/includes/person.json +9 -7
  29. data/schema/schemas/includes/{previous_name.json → previous-name.json} +1 -1
  30. data/schema/schemas/includes/range.json +1 -1
  31. data/schema/schemas/includes/sanction.json +5 -2
  32. data/schema/schemas/includes/share-parcel-data.json +1 -1
  33. data/schema/schemas/includes/share-parcel.json +17 -5
  34. data/schema/schemas/includes/subsidiary-relationship-data.json +1 -1
  35. data/schema/schemas/includes/total-shares.json +1 -1
  36. data/schema/schemas/includes/{unknown_entity_type.json → unknown-entity-type.json} +8 -5
  37. data/schema/schemas/licence-schema.json +1 -1
  38. data/schema/schemas/primary-data-schema.json +1 -1
  39. data/schema/schemas/register-entry-schema.json +4 -3
  40. data/schema/schemas/sanctioned-entity-schema.json +4 -5
  41. data/schema/schemas/share-parcel-schema.json +1 -1
  42. data/schema/schemas/simple-financial-payment-schema.json +1 -1
  43. data/schema/schemas/simple-licence-schema.json +1 -1
  44. data/schema/schemas/simple-subsidiary-schema.json +1 -1
  45. data/schema/schemas/subsidiary-relationship-schema.json +1 -1
  46. data/schema/schemas/trademark-registration-schema.json +3 -1
  47. metadata +9 -9
@@ -107,4 +107,4 @@
107
107
  "licence_issuer",
108
108
  "jurisdiction_of_licence"
109
109
  ]
110
- }
110
+ }
@@ -17,4 +17,4 @@
17
17
  "sample_date"
18
18
  ],
19
19
  "additionalProperties": true
20
- }
20
+ }
@@ -5,7 +5,9 @@
5
5
  "subject_entity": {
6
6
  "$ref": "includes/entity.json"
7
7
  },
8
- "register": {"$ref": "#/definitions/register"},
8
+ "register": {
9
+ "$ref": "#/definitions/register"
10
+ },
9
11
  "identifier": {
10
12
  "description": "A unique identifier used by the register to identifier the register entry. In some cases – e.g. Charity Register for England & Wales, these identifiers (in this case known as the 'charity number') are used outside of the context of the register",
11
13
  "type": "string"
@@ -110,6 +112,5 @@
110
112
  "title"
111
113
  ]
112
114
  }
113
-
114
115
  }
115
- }
116
+ }
@@ -13,8 +13,9 @@
13
13
  "DebarredSupplier"
14
14
  ]
15
15
  },
16
- "sanctions_list": {"$ref": "#/definitions/sanctions_list"},
17
-
16
+ "sanctions_list": {
17
+ "$ref": "#/definitions/sanctions_list"
18
+ },
18
19
  "sanctions": {
19
20
  "type": "array",
20
21
  "items": {
@@ -109,7 +110,5 @@
109
110
  "title"
110
111
  ]
111
112
  }
112
-
113
113
  }
114
-
115
- }
114
+ }
@@ -19,4 +19,4 @@
19
19
  }
20
20
  }
21
21
  ]
22
- }
22
+ }
@@ -124,4 +124,4 @@
124
124
  "date",
125
125
  "currency"
126
126
  ]
127
- }
127
+ }
@@ -83,4 +83,4 @@
83
83
  "company_name",
84
84
  "company_jurisdiction"
85
85
  ]
86
- }
86
+ }
@@ -86,4 +86,4 @@
86
86
  "subsidiary_name",
87
87
  "subsidiary_jurisdiction"
88
88
  ]
89
- }
89
+ }
@@ -47,4 +47,4 @@
47
47
  "data",
48
48
  "sample_date"
49
49
  ]
50
- }
50
+ }
@@ -154,7 +154,9 @@
154
154
  "properties": {
155
155
  "code_scheme_id": {
156
156
  "description": "The scheme of the classification",
157
- "enum": ["wipo_nice"]
157
+ "enum": [
158
+ "wipo_nice"
159
+ ]
158
160
  },
159
161
  "code": {
160
162
  "description": "The classification code",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbot-runner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.31
4
+ version: 0.2.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenCorporates
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-15 00:00:00.000000000 Z
11
+ date: 2018-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -97,36 +97,36 @@ files:
97
97
  - schema/schemas/filing-schema.json
98
98
  - schema/schemas/financial-payment-schema.json
99
99
  - schema/schemas/gazette-notice-schema.json
100
- - schema/schemas/includes/accounts_element.json
100
+ - schema/schemas/includes/accounts-element.json
101
101
  - schema/schemas/includes/address-with-type.json
102
102
  - schema/schemas/includes/address.json
103
- - schema/schemas/includes/alternative_name.json
103
+ - schema/schemas/includes/alternative-name.json
104
104
  - schema/schemas/includes/base-statement.json
105
105
  - schema/schemas/includes/classification.json
106
106
  - schema/schemas/includes/company-for-nesting.json
107
107
  - schema/schemas/includes/company.json
108
108
  - schema/schemas/includes/date.json
109
109
  - schema/schemas/includes/entity.json
110
+ - schema/schemas/includes/filing-document.json
110
111
  - schema/schemas/includes/filing.json
111
- - schema/schemas/includes/filing_document.json
112
112
  - schema/schemas/includes/financial-payment-data-object.json
113
113
  - schema/schemas/includes/identifier.json
114
- - schema/schemas/includes/industry_code.json
114
+ - schema/schemas/includes/industry-code.json
115
115
  - schema/schemas/includes/legislation.json
116
116
  - schema/schemas/includes/licence-data-object.json
117
117
  - schema/schemas/includes/officer.json
118
118
  - schema/schemas/includes/organisation.json
119
119
  - schema/schemas/includes/permission.json
120
+ - schema/schemas/includes/person-name.json
120
121
  - schema/schemas/includes/person.json
121
- - schema/schemas/includes/person_name.json
122
- - schema/schemas/includes/previous_name.json
122
+ - schema/schemas/includes/previous-name.json
123
123
  - schema/schemas/includes/range.json
124
124
  - schema/schemas/includes/sanction.json
125
125
  - schema/schemas/includes/share-parcel-data.json
126
126
  - schema/schemas/includes/share-parcel.json
127
127
  - schema/schemas/includes/subsidiary-relationship-data.json
128
128
  - schema/schemas/includes/total-shares.json
129
- - schema/schemas/includes/unknown_entity_type.json
129
+ - schema/schemas/includes/unknown-entity-type.json
130
130
  - schema/schemas/licence-schema.json
131
131
  - schema/schemas/primary-data-schema.json
132
132
  - schema/schemas/register-entry-schema.json