turbot-runner 0.2.36 → 0.2.37
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/lib/turbot_runner/version.rb +1 -1
- data/schema/schemas/identifier-delegate-schema.json +34 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87eda0655205ee0ebe93a81e7ba6bd7d5803ad4d
|
|
4
|
+
data.tar.gz: 99d81a8b653bb43484a83c8bb48e9736ef22123e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 006c98f974e9d85d89caa76347c5f82d7ec123fad3ceee3f8c3a745bd12533cb3f22c9180bd2b61af92b9fe0cb8179c51c28a709902c605030940d4598c2fb2c
|
|
7
|
+
data.tar.gz: 0b54774ce1412d7273fbcd37d37167ff39c116336344717faec683ad00c92045f853f7eaa5bbb75b6c53731198aa3f73a3895ea66eadd7e81ddbec07a926bac0
|
|
@@ -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.
|
|
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
|