@yottagraph-app/data-model-skill 0.0.26 → 0.0.28
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 +1 -1
- package/skill/faaregistry/schema.yaml +2 -2
- package/skill/lda/schema.yaml +42 -21
package/package.json
CHANGED
|
@@ -47,11 +47,11 @@ properties:
|
|
|
47
47
|
# Identity and Registration
|
|
48
48
|
- name: "aircraft_id"
|
|
49
49
|
type: string
|
|
50
|
-
description: "Composite aircraft identifier combining manufacturer name and serial number (format: MANUFACTURER:SERIAL)"
|
|
50
|
+
description: "Composite aircraft identifier combining manufacturer name, model name, and serial number (format: MANUFACTURER:MODEL:SERIAL)"
|
|
51
51
|
display_name: "Aircraft ID"
|
|
52
52
|
mergeability: not_mergeable
|
|
53
53
|
domain_flavors: ["aircraft"]
|
|
54
|
-
examples: ["CESSNA:172S10245", "BOEING:28-7990244"]
|
|
54
|
+
examples: ["CESSNA:172S:172S10245", "BOEING:737-800:28-7990244"]
|
|
55
55
|
passive: true
|
|
56
56
|
|
|
57
57
|
- name: "n_number"
|
package/skill/lda/schema.yaml
CHANGED
|
@@ -16,7 +16,7 @@ extraction:
|
|
|
16
16
|
|
|
17
17
|
flavors:
|
|
18
18
|
- name: "lda_filing"
|
|
19
|
-
description: "A lobbying disclosure (registration or quarterly activity) identified by
|
|
19
|
+
description: "A lobbying disclosure (registration or quarterly activity) identified by lda_filing_uuid"
|
|
20
20
|
display_name: "LDA filing"
|
|
21
21
|
mergeability: not_mergeable
|
|
22
22
|
strong_id_properties: ["lda_filing_uuid"]
|
|
@@ -45,15 +45,17 @@ properties:
|
|
|
45
45
|
domain_flavors: ["lda_filing"]
|
|
46
46
|
passive: true
|
|
47
47
|
|
|
48
|
-
- name: "
|
|
48
|
+
- name: "filing_type"
|
|
49
|
+
namespace: "lda"
|
|
49
50
|
type: string
|
|
50
|
-
description: "Machine filing type code (e.g. RR, Q1) from the API filing_type field; human label is attribute
|
|
51
|
+
description: "Machine filing type code (e.g. RR, Q1) from the API filing_type field; human label is attribute filing_type_display when present"
|
|
51
52
|
display_name: "LDA Filing Type Code"
|
|
52
53
|
mergeability: not_mergeable
|
|
53
54
|
domain_flavors: ["lda_filing"]
|
|
54
55
|
passive: true
|
|
55
56
|
|
|
56
|
-
- name: "
|
|
57
|
+
- name: "filing_year"
|
|
58
|
+
namespace: "lda"
|
|
57
59
|
type: float
|
|
58
60
|
description: "Reporting year associated with the filing"
|
|
59
61
|
display_name: "LDA Filing Year"
|
|
@@ -61,15 +63,17 @@ properties:
|
|
|
61
63
|
domain_flavors: ["lda_filing"]
|
|
62
64
|
passive: true
|
|
63
65
|
|
|
64
|
-
- name: "
|
|
66
|
+
- name: "filing_period"
|
|
67
|
+
namespace: "lda"
|
|
65
68
|
type: string
|
|
66
|
-
description: "Reporting period code from filing_period (string or number in JSON); human label is attribute
|
|
69
|
+
description: "Reporting period code from filing_period (string or number in JSON); human label is attribute filing_period_display when present"
|
|
67
70
|
display_name: "LDA Filing Period Code"
|
|
68
71
|
mergeability: not_mergeable
|
|
69
72
|
domain_flavors: ["lda_filing"]
|
|
70
73
|
passive: true
|
|
71
74
|
|
|
72
|
-
- name: "
|
|
75
|
+
- name: "income"
|
|
76
|
+
namespace: "lda"
|
|
73
77
|
type: string
|
|
74
78
|
description: "Income amount reported on the filing when present (API decimal as string)"
|
|
75
79
|
display_name: "LDA Reported Income"
|
|
@@ -77,7 +81,8 @@ properties:
|
|
|
77
81
|
domain_flavors: ["lda_filing"]
|
|
78
82
|
passive: true
|
|
79
83
|
|
|
80
|
-
- name: "
|
|
84
|
+
- name: "expenses"
|
|
85
|
+
namespace: "lda"
|
|
81
86
|
type: string
|
|
82
87
|
description: "Expenses amount reported on the filing when present (API decimal as string)"
|
|
83
88
|
display_name: "LDA Reported Expenses"
|
|
@@ -85,7 +90,8 @@ properties:
|
|
|
85
90
|
domain_flavors: ["lda_filing"]
|
|
86
91
|
passive: true
|
|
87
92
|
|
|
88
|
-
- name: "
|
|
93
|
+
- name: "dt_posted"
|
|
94
|
+
namespace: "lda"
|
|
89
95
|
type: string
|
|
90
96
|
description: "Date and time the filing was posted (dt_posted), ISO-8601 string from the API"
|
|
91
97
|
display_name: "LDA Date Posted"
|
|
@@ -93,7 +99,8 @@ properties:
|
|
|
93
99
|
domain_flavors: ["lda_filing"]
|
|
94
100
|
passive: true
|
|
95
101
|
|
|
96
|
-
- name: "
|
|
102
|
+
- name: "filing_document_url"
|
|
103
|
+
namespace: "lda"
|
|
97
104
|
type: string
|
|
98
105
|
description: "Public URL of the filing document (HTML/PDF) from filing_document_url"
|
|
99
106
|
display_name: "LDA Filing Document URL"
|
|
@@ -101,7 +108,8 @@ properties:
|
|
|
101
108
|
domain_flavors: ["lda_filing"]
|
|
102
109
|
passive: true
|
|
103
110
|
|
|
104
|
-
- name: "
|
|
111
|
+
- name: "posted_by_name"
|
|
112
|
+
namespace: "lda"
|
|
105
113
|
type: string
|
|
106
114
|
description: "Name of the individual who posted the filing (posted_by_name)"
|
|
107
115
|
display_name: "LDA Posted By"
|
|
@@ -109,11 +117,12 @@ properties:
|
|
|
109
117
|
domain_flavors: ["lda_filing"]
|
|
110
118
|
passive: true
|
|
111
119
|
|
|
112
|
-
- name: "
|
|
120
|
+
- name: "lobbying_causes"
|
|
121
|
+
namespace: "lda"
|
|
113
122
|
type: string
|
|
114
123
|
description: >-
|
|
115
124
|
One atom per lobbying_activities row: "CODE (Display)" from general_issue_code and
|
|
116
|
-
general_issue_code_display. Narrative text is attribute
|
|
125
|
+
general_issue_code_display. Narrative text is attribute lobbying_cause_description on the
|
|
117
126
|
same atom when present (same pattern as patent cpc_code + cpc_description).
|
|
118
127
|
display_name: "LDA Lobbying Causes"
|
|
119
128
|
mergeability: not_mergeable
|
|
@@ -123,7 +132,8 @@ properties:
|
|
|
123
132
|
- "HCR (Health Issues)"
|
|
124
133
|
passive: true
|
|
125
134
|
|
|
126
|
-
- name: "
|
|
135
|
+
- name: "party_role"
|
|
136
|
+
namespace: "lda"
|
|
127
137
|
type: string
|
|
128
138
|
description: "Whether this organization row is the lobbying registrant or the client on the linked LDA filing"
|
|
129
139
|
display_name: "LDA Party Role"
|
|
@@ -132,6 +142,14 @@ properties:
|
|
|
132
142
|
examples: ["registrant", "client"]
|
|
133
143
|
passive: true
|
|
134
144
|
|
|
145
|
+
- name: "name"
|
|
146
|
+
type: string
|
|
147
|
+
description: "Display name of the entity"
|
|
148
|
+
display_name: "Name"
|
|
149
|
+
mergeability: not_mergeable
|
|
150
|
+
domain_flavors: ["organization"]
|
|
151
|
+
passive: true
|
|
152
|
+
|
|
135
153
|
- name: "lda_registrant_id"
|
|
136
154
|
type: string
|
|
137
155
|
description: "Stable LDA API registrant id (registrant.id) as a string, for entity resolution"
|
|
@@ -182,23 +200,26 @@ relationships:
|
|
|
182
200
|
passive: true
|
|
183
201
|
|
|
184
202
|
attributes:
|
|
185
|
-
- property: "
|
|
186
|
-
|
|
203
|
+
- property: "filing_period"
|
|
204
|
+
property_namespace: "lda"
|
|
205
|
+
name: "filing_period_display"
|
|
187
206
|
type: string
|
|
188
207
|
description: "Human-readable reporting period label from filing_period_display on the same atom as the period code"
|
|
189
208
|
display_name: "LDA Filing Period"
|
|
190
209
|
mergeability: not_mergeable
|
|
191
210
|
|
|
192
|
-
- property: "
|
|
193
|
-
|
|
211
|
+
- property: "filing_type"
|
|
212
|
+
property_namespace: "lda"
|
|
213
|
+
name: "filing_type_display"
|
|
194
214
|
type: string
|
|
195
215
|
description: "Human-readable filing type label from filing_type_display on the same atom as the type code"
|
|
196
216
|
display_name: "LDA Filing Type"
|
|
197
217
|
mergeability: not_mergeable
|
|
198
218
|
|
|
199
|
-
# Narrative for one lobbying issue row. Stored as a quad attribute on each
|
|
200
|
-
- property: "
|
|
201
|
-
|
|
219
|
+
# Narrative for one lobbying issue row. Stored as a quad attribute on each lobbying_causes atom.
|
|
220
|
+
- property: "lobbying_causes"
|
|
221
|
+
property_namespace: "lda"
|
|
222
|
+
name: "lobbying_cause_description"
|
|
202
223
|
type: string
|
|
203
224
|
description: >-
|
|
204
225
|
lobbying_activities[].description for that row (optional trailing posted timestamp stripped).
|