turbot-runner 0.2.33 → 0.2.34

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
- SHA256:
3
- metadata.gz: da8abedec4c778f73ad6ef717804a4a73349bdcbead7e9ac5be3e07fa8d5a7fa
4
- data.tar.gz: 6f848dbec7fd83e678a99f7083ea9e9eb7009ac2962be7fc14bc87bb5f3a7cbe
2
+ SHA1:
3
+ metadata.gz: c73a920e178c0ba176b17be1e10a480b4a663ca4
4
+ data.tar.gz: 9693383fe1630efcd66b820fa93b889774dd7788
5
5
  SHA512:
6
- metadata.gz: 4815ac1f507e4c55349b8639bc854ec5e8eb6d1ac8efe5285fd7b439afab6bda4745e5760d165aa695cc91bb8ab31529fc8e3d59d2ab3a32a589ad52d5ee7e72
7
- data.tar.gz: 8cb243bbfd0699a29ca20ee802a0e4184a23e45b95b0e4d0e147523aba1cc426bd4dff591e6dc4997ddcd6818445f7b9b7d4d6ea60b9db71c6797c775ec6a840
6
+ metadata.gz: ec20be567c6dde2b967e10719998f782905497e895f72c9b59376dff039ccdd573fdac9ad500264e6b5e624c695e91ff323b3cfe3d26387709dfe93cb4e7a7be
7
+ data.tar.gz: 98ffaeac42ae44c7c2b2cb54deeb45d4902f093539744fcbdf8a688493a8b6b209dd9b00feff2e0d89ab267c19a0c6fc66cce35965ee320aa0ceb3d4c88b9f36
@@ -1,3 +1,3 @@
1
1
  module TurbotRunner
2
- VERSION = '0.2.33'
2
+ VERSION = '0.2.34'
3
3
  end
@@ -0,0 +1,69 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "description": "Doing Business As, also known as fictitious name or trade name",
4
+ "type": "object",
5
+ "properties": {
6
+ "name": {
7
+ "description": "The name registered",
8
+ "type": "string"
9
+ },
10
+ "type": {
11
+ "description": "Type of alternative name",
12
+ "type": "string",
13
+ "enum": [
14
+ "Assumed Name",
15
+ "Trade Name",
16
+ "DBA / doing business as",
17
+ "Fictitious name"
18
+ ]
19
+ },
20
+ "registered_address": {
21
+ "description": "The address filing was registered to",
22
+ "type": "object"
23
+ },
24
+ "start_date": {
25
+ "type": "string",
26
+ "format": "date"
27
+ },
28
+ "end_date": {
29
+ "type": "string",
30
+ "format": "date"
31
+ },
32
+ "source_url": {
33
+ "description": "Place where this fact can be verified",
34
+ "type": "string",
35
+ "minLength": 1
36
+ },
37
+ "confidence": {
38
+ "description": "Confidence in accuracy of data",
39
+ "type": "string",
40
+ "enum": [
41
+ "HIGH",
42
+ "MEDIUM",
43
+ "LOW"
44
+ ]
45
+ },
46
+ "sample_date": {
47
+ "description": "Date on which we know this to be true (usually date this information was retrieved from the source)",
48
+ "type": "string",
49
+ "format": "date"
50
+ },
51
+ "retrieved_at": {
52
+ "description": "The time or date at which the source URL was requested",
53
+ "type": "string",
54
+ "format": "date"
55
+ },
56
+ "other_attributes": {
57
+ "description": "Dump of all other relevant data for which we don't yet have curated schema attributes",
58
+ "type": "object"
59
+ }
60
+ },
61
+ "required": [
62
+ "name",
63
+ "type",
64
+ "other_attributes",
65
+ "retrieved_at",
66
+ "sample_date",
67
+ "source_url"
68
+ ]
69
+ }
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.33
4
+ version: 0.2.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenCorporates
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-21 00:00:00.000000000 Z
11
+ date: 2021-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -97,6 +97,7 @@ files:
97
97
  - lib/turbot_runner/version.rb
98
98
  - schema/schemas/accounts-statement-schema.json
99
99
  - schema/schemas/alternate-registration-schema.json
100
+ - schema/schemas/alternative-name-schema.json
100
101
  - schema/schemas/company-schema.json
101
102
  - schema/schemas/control-statement-schema.json
102
103
  - schema/schemas/filing-schema.json
@@ -222,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
223
  version: '0'
223
224
  requirements: []
224
225
  rubyforge_project:
225
- rubygems_version: 2.7.6
226
+ rubygems_version: 2.5.2.3
226
227
  signing_key:
227
228
  specification_version: 4
228
229
  summary: Utilities for running bots with Turbot