turbot-runner 0.2.36 → 0.2.37

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: e7b77862c781a643f175dd01788b7dbb6a708039
4
- data.tar.gz: 03b99e354f71190e7b6f32b400b2396d85586027
3
+ metadata.gz: 87eda0655205ee0ebe93a81e7ba6bd7d5803ad4d
4
+ data.tar.gz: 99d81a8b653bb43484a83c8bb48e9736ef22123e
5
5
  SHA512:
6
- metadata.gz: '05612914b8bc4c5b287bf41cf36ddbf1b0f83f7f4f692f5bddfd7bfdede649904f615aec2478773f46d2605d2f123d015c165caea5ae9107a87a8da0e2efd302'
7
- data.tar.gz: cf574688420d94fb0b6247758f9e260c4e882b68538735939e63f47b8c0848ad1e671251fabad3dea8e6422b9738077de5c4ffa401f6fee349c290197711519c
6
+ metadata.gz: 006c98f974e9d85d89caa76347c5f82d7ec123fad3ceee3f8c3a745bd12533cb3f22c9180bd2b61af92b9fe0cb8179c51c28a709902c605030940d4598c2fb2c
7
+ data.tar.gz: 0b54774ce1412d7273fbcd37d37167ff39c116336344717faec683ad00c92045f853f7eaa5bbb75b6c53731198aa3f73a3895ea66eadd7e81ddbec07a926bac0
@@ -1,3 +1,3 @@
1
1
  module TurbotRunner
2
- VERSION = '0.2.36'
2
+ VERSION = '0.2.37'
3
3
  end
@@ -0,0 +1,34 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "description": "An identifier for an entity (possibly other things, e.g. securities in the future). Examples are tax IDs, non-profit IDs, SEC CIK numbers, Federal Reserve RSSD id. The main requirements for an identifier is that they should be well-defined, and issued by a government or have statutory standing",
4
+ "type": "object",
5
+ "properties": {
6
+ "uid": {
7
+ "type": "string",
8
+ "description": "The unique identifier given by the identifier system – it should be unique in the context of the identifier_system",
9
+ "minLength": 1
10
+ },
11
+ "identifier_system_code": {
12
+ "type": "string",
13
+ "description": "An identifier representing the identifier scheme. Some examples of this are us_fein (US Federal tax number), us_sec_cik (US Securities and Exchange Commission CIK), uk_ew_cc (Charity Commission of England & Wales), lei (Global Legal Entity Identifier System)"
14
+ },
15
+ "subject_entity": {
16
+ "description": "Company that the identifier identifies",
17
+ "type": "object"
18
+ },
19
+ "sample_date": {
20
+ "description": "Date on which we know this to be true (usually date this information was retrieved from the source)",
21
+ "type": "string",
22
+ "format": "date"
23
+ },
24
+ "confidence": {
25
+ "description": "confidence value for source accuracy",
26
+ "type": "string"
27
+ }
28
+ },
29
+ "required": [
30
+ "uid",
31
+ "identifier_system_code",
32
+ "subject_entity"
33
+ ]
34
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbot-runner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.36
4
+ version: 0.2.37
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenCorporates
@@ -103,6 +103,7 @@ files:
103
103
  - schema/schemas/filing-schema.json
104
104
  - schema/schemas/financial-payment-schema.json
105
105
  - schema/schemas/gazette-notice-schema.json
106
+ - schema/schemas/identifier-delegate-schema.json
106
107
  - schema/schemas/includes/accounts-element.json
107
108
  - schema/schemas/includes/address-with-type.json
108
109
  - schema/schemas/includes/address.json