turbot-runner-morph 0.0.14 → 0.0.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTE4ZDRmNDVhZjA4Mzg0MzdlNDJiYmU3ZTY5OTEzNDMzZjg3ZTUzYQ==
4
+ ZWU2ZjQzZjE1NTA4ZWNiMDJlOTBhMzQxN2EwYTQzODU0M2E3NmNhMg==
5
5
  data.tar.gz: !binary |-
6
- YmM3MjhkN2RmMDQ0NzU1OGM3NzQ3MGI3MTM1YWQxZDkyOTc4NzcwMg==
6
+ MzhjNTQ2MTc1MjI3MDg2NTEzNDZiZmJlZmUzOWU4MWE0ZDIzOWUyMA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MmEyZDIwNGU4ODg4NDlhOGZkZWMzYmY0M2UzYWY5NTFkNjQzYmNkNDQ1YjEx
10
- NDA0NDFiYzBiZmQwN2M2ODg0YzMxYjE3OGExOWE0MmViYWE2MzBlNjk5ZDJi
11
- OWE0YWQxYjllZWVjMWEyYzVmYWM4MTEwNThlZGIyMzc1YmQ3MTA=
9
+ MDlhYWE3MzhkYzVjNGVhMDA2YjA3M2ZlNzg3YjQwZWY1NjBiYmU1MjY5NTk4
10
+ ZDg3MzNmMWI5NjM0ZTVjODBlNmYyNmYzNjY5ODFkNDRhNTVjODM5NTRjNDY0
11
+ MGIwMTQzODAyMTM5MzJkYjQ3NGQ2YzI5NzdjNDU1OTVmNTBmMjE=
12
12
  data.tar.gz: !binary |-
13
- ZWE3Mzc5Y2E5ZTBiY2RiYmEwZjIyNzI5YjNiYTg3YmJkOWI0YjljZGRjOTQy
14
- Y2VjM2Q2NGMyNzI1NGNiZDAxNWYwZjU4NWIwNmVhNDNmMmY0NGNlZjgxYjlk
15
- MDdjZWI5MDE5NDE5YWZmNWEyODViNzIyMjk0NzQyNTM1NDI5MTk=
13
+ ODAzZTFmM2NmNTI2NjE5M2FmNTFkMDU4OTUwOGUzOWZiYjQ2NzY1MDgyZmZh
14
+ Y2QzN2Y2MjgzYTUwNTI2YzhkNzNhZWE3ZTg3MWY3YTJkMWMwMTViNzJmNzE5
15
+ OTNlYzg3YzdhYzcxZThkNjIyZWFiMDJjZmIzYmE5MzJiNDUwMDA=
@@ -1,3 +1,3 @@
1
1
  module TurbotRunner
2
- VERSION = '0.0.14'
2
+ VERSION = '0.0.15'
3
3
  end
@@ -31,6 +31,13 @@
31
31
  "$ref": "includes/entity.json"
32
32
  }
33
33
  },
34
+ "related_entities": {
35
+ "description": "Other entities that the notice is about",
36
+ "type": "array",
37
+ "items": {
38
+ "$ref": "includes/entity.json"
39
+ }
40
+ },
34
41
  "about": {
35
42
  "description": "The content of the notice",
36
43
  "type": "object",
@@ -45,7 +52,7 @@
45
52
  "description": "The type of creation",
46
53
  "type": "array",
47
54
  "items": {
48
- "type": "string"
55
+ "$ref": "includes/classification.json"
49
56
  }
50
57
  },
51
58
  "body": {
@@ -99,7 +106,7 @@
99
106
  "description": "The type of registration",
100
107
  "type": "array",
101
108
  "items": {
102
- "type": "string"
109
+ "$ref": "includes/classification.json"
103
110
  }
104
111
  },
105
112
  "body": {
@@ -158,7 +165,7 @@
158
165
  "description": "The type of sale",
159
166
  "type": "array",
160
167
  "items": {
161
- "type": "string"
168
+ "$ref": "includes/classification.json"
162
169
  }
163
170
  },
164
171
  "body": {
@@ -243,7 +250,7 @@
243
250
  "description": "The type of judgment",
244
251
  "type": "array",
245
252
  "items": {
246
- "type": "string"
253
+ "$ref": "includes/classification.json"
247
254
  }
248
255
  },
249
256
  "body": {
@@ -271,7 +278,7 @@
271
278
  "description": "The type of judgment",
272
279
  "type": "array",
273
280
  "items": {
274
- "type": "string"
281
+ "$ref": "includes/classification.json"
275
282
  }
276
283
  },
277
284
  "body": {
@@ -353,7 +360,7 @@
353
360
  "description": "The type of filing",
354
361
  "type": "array",
355
362
  "items": {
356
- "type": "string"
363
+ "$ref": "includes/classification.json"
357
364
  }
358
365
  },
359
366
  "body": {
@@ -18,8 +18,17 @@
18
18
  }
19
19
  },
20
20
  "additionalProperties": false,
21
- "required": [
22
- "code",
23
- "code_scheme_id"
21
+ "anyOf": [
22
+ {
23
+ "required": [
24
+ "name"
25
+ ]
26
+ },
27
+ {
28
+ "required": [
29
+ "code",
30
+ "code_scheme_id"
31
+ ]
32
+ }
24
33
  ]
25
34
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbot-runner-morph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenCorporates