@yottagraph-app/data-model-skill 0.0.7 → 0.0.8
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.
package/package.json
CHANGED
package/skill/edgar/schema.yaml
CHANGED
|
@@ -148,6 +148,13 @@ flavors:
|
|
|
148
148
|
strong_id_properties: ["cusip_number"]
|
|
149
149
|
passive: true
|
|
150
150
|
|
|
151
|
+
- name: "industry"
|
|
152
|
+
description: "A Standard Industrial Classification (SIC) industry category assigned by the SEC"
|
|
153
|
+
display_name: "Industry"
|
|
154
|
+
mergeability: not_mergeable
|
|
155
|
+
strong_id_properties: ["sic_code"]
|
|
156
|
+
passive: true
|
|
157
|
+
|
|
151
158
|
# =============================================================================
|
|
152
159
|
# PROPERTIES — Organization
|
|
153
160
|
# =============================================================================
|
|
@@ -184,7 +191,7 @@ properties:
|
|
|
184
191
|
description: "Four-digit Standard Industrial Classification code"
|
|
185
192
|
display_name: "SIC Code"
|
|
186
193
|
mergeability: not_mergeable
|
|
187
|
-
domain_flavors: ["organization"]
|
|
194
|
+
domain_flavors: ["organization", "industry"]
|
|
188
195
|
passive: true
|
|
189
196
|
|
|
190
197
|
- name: "sic_description"
|
|
@@ -192,7 +199,7 @@ properties:
|
|
|
192
199
|
description: "Human-readable SIC code description"
|
|
193
200
|
display_name: "SIC Description"
|
|
194
201
|
mergeability: not_mergeable
|
|
195
|
-
domain_flavors: ["organization"]
|
|
202
|
+
domain_flavors: ["organization", "industry"]
|
|
196
203
|
passive: true
|
|
197
204
|
|
|
198
205
|
- name: "state_of_incorporation"
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Dataset schema for SIC industry classifications derived from SEC EDGAR filings.
|
|
2
|
+
#
|
|
3
|
+
# This schema introduces the `industry` flavor — a Standard Industrial
|
|
4
|
+
# Classification (SIC) category identified by its 4-digit code. Organizations
|
|
5
|
+
# are linked to their industry via the `works_in_industry` relationship.
|
|
6
|
+
#
|
|
7
|
+
# All elements are passive (deterministic extraction from filing headers).
|
|
8
|
+
name: "industries"
|
|
9
|
+
description: "SIC industry classifications linking SEC-registered organizations to their Standard Industrial Classification codes"
|
|
10
|
+
|
|
11
|
+
extraction:
|
|
12
|
+
flavors: closed
|
|
13
|
+
properties: closed
|
|
14
|
+
relationships: closed
|
|
15
|
+
attributes: closed
|
|
16
|
+
|
|
17
|
+
flavors:
|
|
18
|
+
- name: "industry"
|
|
19
|
+
description: "A Standard Industrial Classification (SIC) industry category assigned by the SEC"
|
|
20
|
+
display_name: "Industry"
|
|
21
|
+
mergeability: not_mergeable
|
|
22
|
+
strong_id_properties: ["sic_code"]
|
|
23
|
+
passive: true
|
|
24
|
+
|
|
25
|
+
- name: "organization"
|
|
26
|
+
description: "A particular business, institution, or organization such as a corporation, university, government agency, or non-profit"
|
|
27
|
+
display_name: "Organization"
|
|
28
|
+
mergeability: not_mergeable
|
|
29
|
+
strong_id_properties: ["company_cik"]
|
|
30
|
+
passive: true
|
|
31
|
+
|
|
32
|
+
properties:
|
|
33
|
+
- name: "sic_code"
|
|
34
|
+
type: string
|
|
35
|
+
description: "Four-digit Standard Industrial Classification code"
|
|
36
|
+
display_name: "SIC Code"
|
|
37
|
+
mergeability: not_mergeable
|
|
38
|
+
domain_flavors: ["industry", "organization"]
|
|
39
|
+
passive: true
|
|
40
|
+
|
|
41
|
+
- name: "sic_description"
|
|
42
|
+
type: string
|
|
43
|
+
description: "Human-readable SIC code description"
|
|
44
|
+
display_name: "SIC Description"
|
|
45
|
+
mergeability: not_mergeable
|
|
46
|
+
domain_flavors: ["industry", "organization"]
|
|
47
|
+
passive: true
|
|
48
|
+
|
|
49
|
+
- name: "company_cik"
|
|
50
|
+
type: string
|
|
51
|
+
description: "SEC Central Index Key, 10-digit zero-padded"
|
|
52
|
+
display_name: "CIK"
|
|
53
|
+
mergeability: not_mergeable
|
|
54
|
+
domain_flavors: ["organization"]
|
|
55
|
+
passive: true
|
|
56
|
+
|
|
57
|
+
relationships:
|
|
58
|
+
- name: "works_in_industry"
|
|
59
|
+
description: "Link from an organization to its SIC industry classification"
|
|
60
|
+
display_name: "Works In Industry"
|
|
61
|
+
mergeability: not_mergeable
|
|
62
|
+
domain_flavors: ["organization"]
|
|
63
|
+
target_flavors: ["industry"]
|
|
64
|
+
passive: true
|