@yottagraph-app/aether-instructions 1.1.8 → 1.1.10
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/README.md +6 -8
- package/commands/update_instructions.md +30 -23
- package/package.json +1 -1
- package/skills/data-model/SKILL.md +58 -0
- package/skills/data-model/edgar/DATA_DICTIONARY.md +306 -0
- package/skills/data-model/edgar/schema.yaml +1893 -0
- package/skills/data-model/fdic/DATA_DICTIONARY.md +243 -0
- package/skills/data-model/fdic/schema.yaml +356 -0
- package/skills/data-model/fred/DATA_DICTIONARY.md +313 -0
- package/skills/data-model/fred/schema.yaml +155 -0
- package/skills/data-model/gleif/DATA_DICTIONARY.md +211 -0
- package/skills/data-model/gleif/schema.yaml +254 -0
- package/skills/data-model/newsdata/schema.yaml +650 -0
- package/skills/data-model/overview.md +77 -0
- package/skills/data-model/polymarket/DATA_DICTIONARY.md +384 -0
- package/skills/data-model/polymarket/schema.yaml +601 -0
- package/skills/data-model/sanctions/DATA_DICTIONARY.md +140 -0
- package/skills/data-model/sanctions/schema.yaml +153 -0
- package/skills/data-model/stocks/DATA_DICTIONARY.md +122 -0
- package/skills/data-model/stocks/schema.yaml +131 -0
- package/skills/data-model/system_schema.yaml +71 -0
- package/skills/data-model/wikipedia/DATA_DICTIONARY.md +185 -0
- package/skills/data-model/wikipedia/schema.yaml +255 -0
- package/skills/elemental-api/SKILL.md +37 -0
- package/skills/elemental-api/articles.md +386 -0
- package/skills/elemental-api/entities.md +393 -0
- package/skills/elemental-api/events.md +145 -0
- package/skills/elemental-api/find.md +279 -0
- package/skills/elemental-api/graph.md +239 -0
- package/skills/elemental-api/llm.md +18 -0
- package/skills/elemental-api/overview.md +51 -0
- package/skills/elemental-api/relationships.md +310 -0
- package/skills/elemental-api/schema.md +379 -0
- package/skills/elemental-api/sentiment.md +93 -0
- package/skills/elemental-api/server.md +186 -0
|
@@ -0,0 +1,601 @@
|
|
|
1
|
+
# Dataset schema for Polymarket prediction market data.
|
|
2
|
+
#
|
|
3
|
+
# This schema defines entities extracted from prediction market event text
|
|
4
|
+
# (via LLM) and structured market data (via atomizer). The LLM extracts
|
|
5
|
+
# real-world entities from event titles and descriptions so they can be
|
|
6
|
+
# linked to entities from other sources (news, SEC filings, etc.).
|
|
7
|
+
#
|
|
8
|
+
# Structured market data (prices, volumes, outcomes) is atomized directly
|
|
9
|
+
# from the Gamma API response without LLM involvement.
|
|
10
|
+
name: "polymarket"
|
|
11
|
+
description: >-
|
|
12
|
+
Prediction market events and their associated entities, extracted from
|
|
13
|
+
Polymarket via the Gamma API. IMPORTANT: The source text describes
|
|
14
|
+
prediction markets with betting lines, spreads, over/unders, and point
|
|
15
|
+
totals. These are properties of the market itself and must NOT be
|
|
16
|
+
extracted as entities. Only extract real-world entities (people,
|
|
17
|
+
companies, places, etc.) that the markets are about. Other statistics
|
|
18
|
+
will be extracted programmatically from the structured API data.
|
|
19
|
+
|
|
20
|
+
extraction:
|
|
21
|
+
flavors: closed
|
|
22
|
+
properties: closed
|
|
23
|
+
relationships: closed
|
|
24
|
+
attributes: closed
|
|
25
|
+
events: closed
|
|
26
|
+
|
|
27
|
+
# =============================================================================
|
|
28
|
+
# ACTIVE FLAVORS — extracted by the LLM from event/market text
|
|
29
|
+
# =============================================================================
|
|
30
|
+
|
|
31
|
+
flavors:
|
|
32
|
+
- name: "person"
|
|
33
|
+
description: "A real person as opposed to a fictional character, such as a CEO, politician, or public figure"
|
|
34
|
+
display_name: "Person"
|
|
35
|
+
mergeability: not_mergeable
|
|
36
|
+
examples: ["Donald Trump", "Elon Musk", "Jerome Powell", "LeBron James"]
|
|
37
|
+
|
|
38
|
+
- name: "organization"
|
|
39
|
+
description: "A particular business, institution, or organization such as a corporation, university, government agency, or non-profit"
|
|
40
|
+
display_name: "Organization"
|
|
41
|
+
mergeability: not_mergeable
|
|
42
|
+
examples: ["Tesla", "Federal Reserve", "NATO", "OpenAI", "NBA", "Dallas Mavericks", "Democratic Party"]
|
|
43
|
+
|
|
44
|
+
- name: "location"
|
|
45
|
+
description: "A specific named geographic location such as a city, country, region, or landmark"
|
|
46
|
+
display_name: "Location"
|
|
47
|
+
mergeability: not_mergeable
|
|
48
|
+
examples: ["United States", "China", "Pennsylvania", "European Union", "Middle East"]
|
|
49
|
+
|
|
50
|
+
- name: "financial_instrument"
|
|
51
|
+
description: "A specific asset that can be traded, such as a stock, ETF, bond, CD, or fund. Companies are organizations, NOT financial instruments. Specific currency amounts are NOT financial instruments."
|
|
52
|
+
display_name: "Financial Instrument"
|
|
53
|
+
mergeability: not_mergeable
|
|
54
|
+
examples: ["Bitcoin", "Ethereum", "S&P 500", "AAPL", "Gold futures", "BTC/USDT"]
|
|
55
|
+
|
|
56
|
+
- name: "product"
|
|
57
|
+
description: "A specific tangible product being sold or marketed by an organization"
|
|
58
|
+
display_name: "Product"
|
|
59
|
+
mergeability: not_mergeable
|
|
60
|
+
examples: ["GPT-5", "iPhone", "Starlink", "Oppenheimer", "Squid Game", "Claude"]
|
|
61
|
+
|
|
62
|
+
- name: "competition"
|
|
63
|
+
description: >-
|
|
64
|
+
A named recurring competition, championship, tournament, or award
|
|
65
|
+
ceremony. Use for the competition itself, not the organizing body (use
|
|
66
|
+
organization for that). Individual games or matches are NOT competitions
|
|
67
|
+
— they are events.
|
|
68
|
+
display_name: "Competition"
|
|
69
|
+
mergeability: not_mergeable
|
|
70
|
+
examples: ["Stanley Cup", "Super Bowl", "March Madness", "Academy Awards", "World Cup", "Grammy Awards"]
|
|
71
|
+
|
|
72
|
+
- name: "conflict"
|
|
73
|
+
description: >-
|
|
74
|
+
A named geopolitical or military conflict, war, or crisis. Use for the
|
|
75
|
+
conflict itself as an ongoing situation, not for the countries or groups
|
|
76
|
+
involved (use organization or location for those). Abstract concepts like
|
|
77
|
+
"terrorism" or "civil unrest" are NOT conflicts unless they refer to a
|
|
78
|
+
specific named conflict. Sporting events are NOT conflicts — use competition.
|
|
79
|
+
General military actions like "bombing" or "shelling" are NOT conflicts - they
|
|
80
|
+
are not entities.
|
|
81
|
+
display_name: "Conflict"
|
|
82
|
+
mergeability: not_mergeable
|
|
83
|
+
examples: ["Russia-Ukraine war", "Israel-Gaza conflict", "Syrian civil war", "Yemen conflict"]
|
|
84
|
+
|
|
85
|
+
# PASSIVE FLAVORS — created by the atomizer from structured API data
|
|
86
|
+
|
|
87
|
+
- name: "prediction_event"
|
|
88
|
+
description: "A Polymarket prediction event containing one or more tradeable markets"
|
|
89
|
+
display_name: "Prediction Event"
|
|
90
|
+
mergeability: not_mergeable
|
|
91
|
+
strong_id_properties: ["polymarket_id"]
|
|
92
|
+
passive: true
|
|
93
|
+
|
|
94
|
+
- name: "prediction_market"
|
|
95
|
+
description: "A tradeable prediction market (question) within a Polymarket event"
|
|
96
|
+
display_name: "Prediction Market"
|
|
97
|
+
mergeability: not_mergeable
|
|
98
|
+
strong_id_properties: ["polymarket_id"]
|
|
99
|
+
passive: true
|
|
100
|
+
|
|
101
|
+
- name: "prediction_series"
|
|
102
|
+
description: "A series of related Polymarket prediction events (e.g., recurring weekly markets)"
|
|
103
|
+
display_name: "Prediction Series"
|
|
104
|
+
mergeability: not_mergeable
|
|
105
|
+
strong_id_properties: ["polymarket_id"]
|
|
106
|
+
passive: true
|
|
107
|
+
|
|
108
|
+
# =============================================================================
|
|
109
|
+
# ACTIVE RELATIONSHIPS — extracted by the LLM
|
|
110
|
+
# =============================================================================
|
|
111
|
+
|
|
112
|
+
relationships:
|
|
113
|
+
- name: "head_of"
|
|
114
|
+
description: "A person is the head of an organization or location, e.g., President, CEO, or equivalent top leadership role"
|
|
115
|
+
display_name: "Head Of"
|
|
116
|
+
mergeability: not_mergeable
|
|
117
|
+
domain_flavors: ["person"]
|
|
118
|
+
target_flavors: ["organization", "location"]
|
|
119
|
+
|
|
120
|
+
- name: "works_at"
|
|
121
|
+
description: "A person is employed by, or is a founder of an organization. Not to be used for heads or board members of organizations."
|
|
122
|
+
display_name: "Works At"
|
|
123
|
+
mergeability: not_mergeable
|
|
124
|
+
domain_flavors: ["person"]
|
|
125
|
+
target_flavors: ["organization"]
|
|
126
|
+
|
|
127
|
+
- name: "invests_in"
|
|
128
|
+
description: "An entity invests in, finances, or owns shares or stocks of another entity"
|
|
129
|
+
display_name: "Invests In"
|
|
130
|
+
mergeability: not_mergeable
|
|
131
|
+
domain_flavors: ["person", "organization"]
|
|
132
|
+
target_flavors: ["organization", "financial_instrument"]
|
|
133
|
+
|
|
134
|
+
- name: "competes_with"
|
|
135
|
+
description: "Two entities compete with each other, e.g., two competing companies, sports teams, or products"
|
|
136
|
+
display_name: "Competes With"
|
|
137
|
+
mergeability: not_mergeable
|
|
138
|
+
domain_flavors: ["person", "organization", "location"]
|
|
139
|
+
target_flavors: ["person", "organization", "location"]
|
|
140
|
+
|
|
141
|
+
- name: "competes_in"
|
|
142
|
+
description: "An entity competes in a named competition or championship"
|
|
143
|
+
display_name: "Competes In"
|
|
144
|
+
mergeability: not_mergeable
|
|
145
|
+
domain_flavors: ["person", "organization"]
|
|
146
|
+
target_flavors: ["competition"]
|
|
147
|
+
|
|
148
|
+
- name: "is_located_at"
|
|
149
|
+
description: "An entity is located at, operates in, resides in, is headquartered in, was born in, visits, or died in a location"
|
|
150
|
+
display_name: "Located At"
|
|
151
|
+
mergeability: not_mergeable
|
|
152
|
+
domain_flavors: ["person", "organization", "conflict"]
|
|
153
|
+
target_flavors: ["location"]
|
|
154
|
+
|
|
155
|
+
- name: "acquires"
|
|
156
|
+
description: "An organization acquires another organization"
|
|
157
|
+
display_name: "Acquires"
|
|
158
|
+
mergeability: not_mergeable
|
|
159
|
+
domain_flavors: ["organization"]
|
|
160
|
+
target_flavors: ["organization"]
|
|
161
|
+
|
|
162
|
+
- name: "partnered_with"
|
|
163
|
+
description: "Two entities partner with each other, e.g., two organizations co-hosting an event or forming a joint venture"
|
|
164
|
+
display_name: "Partnered With"
|
|
165
|
+
mergeability: not_mergeable
|
|
166
|
+
domain_flavors: ["person", "organization"]
|
|
167
|
+
target_flavors: ["person", "organization"]
|
|
168
|
+
|
|
169
|
+
- name: "owns"
|
|
170
|
+
description: "A person or organization owns or controls another organization or location (such as real estate)."
|
|
171
|
+
display_name: "Owns"
|
|
172
|
+
mergeability: not_mergeable
|
|
173
|
+
domain_flavors: ["person", "organization"]
|
|
174
|
+
target_flavors: ["organization", "location", "financial_instrument", "product"]
|
|
175
|
+
|
|
176
|
+
- name: "produces"
|
|
177
|
+
description: "An organization owns, develops, or markets a product"
|
|
178
|
+
display_name: "Produces"
|
|
179
|
+
mergeability: not_mergeable
|
|
180
|
+
domain_flavors: ["organization"]
|
|
181
|
+
target_flavors: ["product"]
|
|
182
|
+
|
|
183
|
+
- name: "involved_in"
|
|
184
|
+
description: "An entity is involved in or a party to a conflict"
|
|
185
|
+
display_name: "Involved In"
|
|
186
|
+
mergeability: not_mergeable
|
|
187
|
+
domain_flavors: ["person", "organization", "location"]
|
|
188
|
+
target_flavors: ["conflict"]
|
|
189
|
+
|
|
190
|
+
# PASSIVE RELATIONSHIPS — created by the atomizer
|
|
191
|
+
|
|
192
|
+
- name: "appears_in"
|
|
193
|
+
description: "An entity or event appears in a source document"
|
|
194
|
+
display_name: "Appears In"
|
|
195
|
+
mergeability: not_mergeable
|
|
196
|
+
target_flavors: ["prediction_event", "prediction_market"]
|
|
197
|
+
passive: true
|
|
198
|
+
|
|
199
|
+
- name: "has_market"
|
|
200
|
+
description: "A prediction event contains a prediction market"
|
|
201
|
+
display_name: "Has Market"
|
|
202
|
+
mergeability: not_mergeable
|
|
203
|
+
domain_flavors: ["prediction_event"]
|
|
204
|
+
target_flavors: ["prediction_market"]
|
|
205
|
+
passive: true
|
|
206
|
+
|
|
207
|
+
- name: "belongs_to_series"
|
|
208
|
+
description: "A prediction event belongs to a recurring series"
|
|
209
|
+
display_name: "Belongs To Series"
|
|
210
|
+
mergeability: not_mergeable
|
|
211
|
+
domain_flavors: ["prediction_event"]
|
|
212
|
+
target_flavors: ["prediction_series"]
|
|
213
|
+
passive: true
|
|
214
|
+
|
|
215
|
+
# =============================================================================
|
|
216
|
+
# PROPERTIES
|
|
217
|
+
# =============================================================================
|
|
218
|
+
|
|
219
|
+
properties:
|
|
220
|
+
# ACTIVE — LLM-extracted
|
|
221
|
+
|
|
222
|
+
- name: "sentiment"
|
|
223
|
+
type: float
|
|
224
|
+
description: "Classify the financial sentiment of the source text. Positive sentiment indicates events like revenue growth, strategic partnerships, or milestone achievement. Negative sentiment indicates events like economic downturn, natural disasters, or adverse market conditions."
|
|
225
|
+
display_name: "Sentiment"
|
|
226
|
+
mergeability: not_mergeable
|
|
227
|
+
extraction_config:
|
|
228
|
+
level: document
|
|
229
|
+
scoring:
|
|
230
|
+
scale:
|
|
231
|
+
labels:
|
|
232
|
+
- value: -1.0
|
|
233
|
+
name: "strongly negative"
|
|
234
|
+
- value: -0.5
|
|
235
|
+
name: "slightly negative"
|
|
236
|
+
- value: 0.0
|
|
237
|
+
name: "neutral"
|
|
238
|
+
- value: 0.5
|
|
239
|
+
name: "slightly positive"
|
|
240
|
+
- value: 1.0
|
|
241
|
+
name: "strongly positive"
|
|
242
|
+
|
|
243
|
+
- name: "entity_sentiment"
|
|
244
|
+
type: float
|
|
245
|
+
description: "Classify the financial sentiment of a specific entity mentioned in the source text. Positive sentiment indicates events like revenue growth, strategic partnerships, or milestone achievement. Negative sentiment indicates events like economic downturn, natural disasters, or adverse market conditions. If the entity is irrelevant to the subject matter, assign a neutral score."
|
|
246
|
+
display_name: "Entity Sentiment"
|
|
247
|
+
mergeability: not_mergeable
|
|
248
|
+
domain_flavors: ["organization", "person", "location", "product", "financial_instrument"]
|
|
249
|
+
extraction_config:
|
|
250
|
+
level: entity
|
|
251
|
+
scoring:
|
|
252
|
+
scale:
|
|
253
|
+
labels:
|
|
254
|
+
- value: -1.0
|
|
255
|
+
name: "strongly negative"
|
|
256
|
+
- value: -0.5
|
|
257
|
+
name: "slightly negative"
|
|
258
|
+
- value: 0.0
|
|
259
|
+
name: "neutral"
|
|
260
|
+
- value: 0.5
|
|
261
|
+
name: "slightly positive"
|
|
262
|
+
- value: 1.0
|
|
263
|
+
name: "strongly positive"
|
|
264
|
+
|
|
265
|
+
# PASSIVE — prediction_event properties
|
|
266
|
+
|
|
267
|
+
- name: "title"
|
|
268
|
+
type: string
|
|
269
|
+
description: "Title of the entity"
|
|
270
|
+
display_name: "Title"
|
|
271
|
+
mergeability: not_mergeable
|
|
272
|
+
domain_flavors: ["prediction_event"]
|
|
273
|
+
passive: true
|
|
274
|
+
|
|
275
|
+
- name: "event_description"
|
|
276
|
+
type: string
|
|
277
|
+
description: "Description of the prediction event"
|
|
278
|
+
display_name: "Event Description"
|
|
279
|
+
mergeability: not_mergeable
|
|
280
|
+
domain_flavors: ["prediction_event"]
|
|
281
|
+
passive: true
|
|
282
|
+
|
|
283
|
+
- name: "category"
|
|
284
|
+
type: string
|
|
285
|
+
description: "Classification or category for the event"
|
|
286
|
+
display_name: "Category"
|
|
287
|
+
mergeability: not_mergeable
|
|
288
|
+
domain_flavors: ["prediction_event"]
|
|
289
|
+
passive: true
|
|
290
|
+
|
|
291
|
+
- name: "event_status"
|
|
292
|
+
type: string
|
|
293
|
+
description: "Status of the prediction event: active, closed, or archived"
|
|
294
|
+
display_name: "Event Status"
|
|
295
|
+
mergeability: not_mergeable
|
|
296
|
+
domain_flavors: ["prediction_event"]
|
|
297
|
+
passive: true
|
|
298
|
+
|
|
299
|
+
- name: "event_volume"
|
|
300
|
+
type: float
|
|
301
|
+
description: "Total trading volume in USD for the prediction event"
|
|
302
|
+
display_name: "Event Volume"
|
|
303
|
+
mergeability: not_mergeable
|
|
304
|
+
domain_flavors: ["prediction_event"]
|
|
305
|
+
passive: true
|
|
306
|
+
|
|
307
|
+
- name: "event_volume_24h"
|
|
308
|
+
type: float
|
|
309
|
+
description: "24-hour trading volume in USD for the prediction event"
|
|
310
|
+
display_name: "Event Volume (24h)"
|
|
311
|
+
mergeability: not_mergeable
|
|
312
|
+
domain_flavors: ["prediction_event"]
|
|
313
|
+
passive: true
|
|
314
|
+
|
|
315
|
+
- name: "event_liquidity"
|
|
316
|
+
type: float
|
|
317
|
+
description: "Current liquidity in USD for the prediction event"
|
|
318
|
+
display_name: "Event Liquidity"
|
|
319
|
+
mergeability: not_mergeable
|
|
320
|
+
domain_flavors: ["prediction_event"]
|
|
321
|
+
passive: true
|
|
322
|
+
|
|
323
|
+
- name: "event_open_interest"
|
|
324
|
+
type: float
|
|
325
|
+
description: "Open interest in USD for the prediction event"
|
|
326
|
+
display_name: "Event Open Interest"
|
|
327
|
+
mergeability: not_mergeable
|
|
328
|
+
domain_flavors: ["prediction_event"]
|
|
329
|
+
passive: true
|
|
330
|
+
|
|
331
|
+
- name: "slug"
|
|
332
|
+
type: string
|
|
333
|
+
description: "URL slug for the entity on Polymarket"
|
|
334
|
+
display_name: "Slug"
|
|
335
|
+
mergeability: not_mergeable
|
|
336
|
+
domain_flavors: ["prediction_event", "prediction_series"]
|
|
337
|
+
passive: true
|
|
338
|
+
|
|
339
|
+
- name: "url"
|
|
340
|
+
type: string
|
|
341
|
+
description: "Full URL on Polymarket"
|
|
342
|
+
display_name: "URL"
|
|
343
|
+
mergeability: not_mergeable
|
|
344
|
+
domain_flavors: ["prediction_event"]
|
|
345
|
+
passive: true
|
|
346
|
+
|
|
347
|
+
- name: "has_tag"
|
|
348
|
+
type: string
|
|
349
|
+
description: "A tag associated with the prediction event"
|
|
350
|
+
display_name: "Tag"
|
|
351
|
+
mergeability: not_mergeable
|
|
352
|
+
domain_flavors: ["prediction_event"]
|
|
353
|
+
passive: true
|
|
354
|
+
|
|
355
|
+
- name: "polymarket_id"
|
|
356
|
+
type: string
|
|
357
|
+
description: "The unique Polymarket identifier for this entity (event ID, market condition ID, or series ID)"
|
|
358
|
+
display_name: "Polymarket ID"
|
|
359
|
+
mergeability: not_mergeable
|
|
360
|
+
domain_flavors: ["prediction_event", "prediction_market", "prediction_series"]
|
|
361
|
+
passive: true
|
|
362
|
+
|
|
363
|
+
# PASSIVE — prediction_market properties
|
|
364
|
+
|
|
365
|
+
- name: "question"
|
|
366
|
+
type: string
|
|
367
|
+
description: "The market question being predicted"
|
|
368
|
+
display_name: "Question"
|
|
369
|
+
mergeability: not_mergeable
|
|
370
|
+
domain_flavors: ["prediction_market"]
|
|
371
|
+
passive: true
|
|
372
|
+
|
|
373
|
+
- name: "outcomes"
|
|
374
|
+
type: string
|
|
375
|
+
description: "Possible outcomes for the market (e.g., 'Yes, No')"
|
|
376
|
+
display_name: "Outcomes"
|
|
377
|
+
mergeability: not_mergeable
|
|
378
|
+
domain_flavors: ["prediction_market"]
|
|
379
|
+
passive: true
|
|
380
|
+
|
|
381
|
+
- name: "outcome_prices"
|
|
382
|
+
type: string
|
|
383
|
+
description: "Current probability/prices for each outcome (e.g., '0.65, 0.35')"
|
|
384
|
+
display_name: "Outcome Prices"
|
|
385
|
+
mergeability: not_mergeable
|
|
386
|
+
domain_flavors: ["prediction_market"]
|
|
387
|
+
passive: true
|
|
388
|
+
|
|
389
|
+
- name: "market_status"
|
|
390
|
+
type: string
|
|
391
|
+
description: "Status of the market: active or closed"
|
|
392
|
+
display_name: "Market Status"
|
|
393
|
+
mergeability: not_mergeable
|
|
394
|
+
domain_flavors: ["prediction_market"]
|
|
395
|
+
passive: true
|
|
396
|
+
|
|
397
|
+
- name: "market_volume"
|
|
398
|
+
type: float
|
|
399
|
+
description: "Total trading volume in USD for the market"
|
|
400
|
+
display_name: "Market Volume"
|
|
401
|
+
mergeability: not_mergeable
|
|
402
|
+
domain_flavors: ["prediction_market"]
|
|
403
|
+
passive: true
|
|
404
|
+
|
|
405
|
+
- name: "market_volume_24h"
|
|
406
|
+
type: float
|
|
407
|
+
description: "24-hour trading volume in USD for the market"
|
|
408
|
+
display_name: "Market Volume (24h)"
|
|
409
|
+
mergeability: not_mergeable
|
|
410
|
+
domain_flavors: ["prediction_market"]
|
|
411
|
+
passive: true
|
|
412
|
+
|
|
413
|
+
- name: "market_liquidity"
|
|
414
|
+
type: float
|
|
415
|
+
description: "Current liquidity in USD for the market"
|
|
416
|
+
display_name: "Market Liquidity"
|
|
417
|
+
mergeability: not_mergeable
|
|
418
|
+
domain_flavors: ["prediction_market"]
|
|
419
|
+
passive: true
|
|
420
|
+
|
|
421
|
+
- name: "best_bid"
|
|
422
|
+
type: float
|
|
423
|
+
description: "Best bid price (probability) for the market"
|
|
424
|
+
display_name: "Best Bid"
|
|
425
|
+
mergeability: not_mergeable
|
|
426
|
+
domain_flavors: ["prediction_market"]
|
|
427
|
+
passive: true
|
|
428
|
+
|
|
429
|
+
- name: "best_ask"
|
|
430
|
+
type: float
|
|
431
|
+
description: "Best ask price (probability) for the market"
|
|
432
|
+
display_name: "Best Ask"
|
|
433
|
+
mergeability: not_mergeable
|
|
434
|
+
domain_flavors: ["prediction_market"]
|
|
435
|
+
passive: true
|
|
436
|
+
|
|
437
|
+
- name: "last_trade_price"
|
|
438
|
+
type: float
|
|
439
|
+
description: "Last trade price (probability) for the market"
|
|
440
|
+
display_name: "Last Trade Price"
|
|
441
|
+
mergeability: not_mergeable
|
|
442
|
+
domain_flavors: ["prediction_market"]
|
|
443
|
+
passive: true
|
|
444
|
+
|
|
445
|
+
- name: "spread"
|
|
446
|
+
type: float
|
|
447
|
+
description: "Bid-ask spread for the market"
|
|
448
|
+
display_name: "Spread"
|
|
449
|
+
mergeability: not_mergeable
|
|
450
|
+
domain_flavors: ["prediction_market"]
|
|
451
|
+
passive: true
|
|
452
|
+
|
|
453
|
+
- name: "sports_market_type"
|
|
454
|
+
type: string
|
|
455
|
+
description: "Type of sports market (e.g., spread, total, moneyline)"
|
|
456
|
+
display_name: "Sports Market Type"
|
|
457
|
+
mergeability: not_mergeable
|
|
458
|
+
domain_flavors: ["prediction_market"]
|
|
459
|
+
passive: true
|
|
460
|
+
|
|
461
|
+
- name: "line"
|
|
462
|
+
type: float
|
|
463
|
+
description: "The betting line for the market (e.g., -1.5 for a spread, 6.5 for an over/under)"
|
|
464
|
+
display_name: "Line"
|
|
465
|
+
mergeability: not_mergeable
|
|
466
|
+
domain_flavors: ["prediction_market"]
|
|
467
|
+
passive: true
|
|
468
|
+
|
|
469
|
+
- name: "group_item_threshold"
|
|
470
|
+
type: string
|
|
471
|
+
description: "Threshold value for grouped market items (e.g., price targets, stat lines)"
|
|
472
|
+
display_name: "Threshold"
|
|
473
|
+
mergeability: not_mergeable
|
|
474
|
+
domain_flavors: ["prediction_market"]
|
|
475
|
+
passive: true
|
|
476
|
+
|
|
477
|
+
# PASSIVE — prediction_series properties
|
|
478
|
+
|
|
479
|
+
- name: "series_title"
|
|
480
|
+
type: string
|
|
481
|
+
description: "Title of the prediction series"
|
|
482
|
+
display_name: "Series Title"
|
|
483
|
+
mergeability: not_mergeable
|
|
484
|
+
domain_flavors: ["prediction_series"]
|
|
485
|
+
passive: true
|
|
486
|
+
|
|
487
|
+
- name: "series_type"
|
|
488
|
+
type: string
|
|
489
|
+
description: "Type of the prediction series"
|
|
490
|
+
display_name: "Series Type"
|
|
491
|
+
mergeability: not_mergeable
|
|
492
|
+
domain_flavors: ["prediction_series"]
|
|
493
|
+
passive: true
|
|
494
|
+
|
|
495
|
+
- name: "series_recurrence"
|
|
496
|
+
type: string
|
|
497
|
+
description: "Recurrence pattern of the series (e.g., daily, weekly)"
|
|
498
|
+
display_name: "Series Recurrence"
|
|
499
|
+
mergeability: not_mergeable
|
|
500
|
+
domain_flavors: ["prediction_series"]
|
|
501
|
+
passive: true
|
|
502
|
+
|
|
503
|
+
- name: "series_status"
|
|
504
|
+
type: string
|
|
505
|
+
description: "Status of the series: active, closed, or archived"
|
|
506
|
+
display_name: "Series Status"
|
|
507
|
+
mergeability: not_mergeable
|
|
508
|
+
domain_flavors: ["prediction_series"]
|
|
509
|
+
passive: true
|
|
510
|
+
|
|
511
|
+
- name: "series_volume"
|
|
512
|
+
type: float
|
|
513
|
+
description: "Total trading volume in USD for the series"
|
|
514
|
+
display_name: "Series Volume"
|
|
515
|
+
mergeability: not_mergeable
|
|
516
|
+
domain_flavors: ["prediction_series"]
|
|
517
|
+
passive: true
|
|
518
|
+
|
|
519
|
+
- name: "series_volume_24h"
|
|
520
|
+
type: float
|
|
521
|
+
description: "24-hour trading volume in USD for the series"
|
|
522
|
+
display_name: "Series Volume (24h)"
|
|
523
|
+
mergeability: not_mergeable
|
|
524
|
+
domain_flavors: ["prediction_series"]
|
|
525
|
+
passive: true
|
|
526
|
+
|
|
527
|
+
- name: "series_liquidity"
|
|
528
|
+
type: float
|
|
529
|
+
description: "Current liquidity in USD for the series"
|
|
530
|
+
display_name: "Series Liquidity"
|
|
531
|
+
mergeability: not_mergeable
|
|
532
|
+
domain_flavors: ["prediction_series"]
|
|
533
|
+
passive: true
|
|
534
|
+
|
|
535
|
+
# =============================================================================
|
|
536
|
+
# ATTRIBUTES
|
|
537
|
+
# =============================================================================
|
|
538
|
+
|
|
539
|
+
attributes:
|
|
540
|
+
- property: "appears_in"
|
|
541
|
+
name: "event_id"
|
|
542
|
+
type: string
|
|
543
|
+
description: "Polymarket event ID"
|
|
544
|
+
display_name: "Event ID"
|
|
545
|
+
mergeability: not_mergeable
|
|
546
|
+
|
|
547
|
+
- property: "appears_in"
|
|
548
|
+
name: "sentiment"
|
|
549
|
+
type: float
|
|
550
|
+
description: "Entity-level sentiment in the context of the source document"
|
|
551
|
+
display_name: "Sentiment"
|
|
552
|
+
mergeability: not_mergeable
|
|
553
|
+
|
|
554
|
+
- property: "sentiment"
|
|
555
|
+
name: "reasoning"
|
|
556
|
+
type: string
|
|
557
|
+
description: "Reasoning behind the sentiment score"
|
|
558
|
+
display_name: "Reasoning"
|
|
559
|
+
mergeability: not_mergeable
|
|
560
|
+
|
|
561
|
+
# =============================================================================
|
|
562
|
+
# EVENTS — prediction-market-relevant event categories
|
|
563
|
+
# =============================================================================
|
|
564
|
+
|
|
565
|
+
events:
|
|
566
|
+
- name: "Election outcome"
|
|
567
|
+
description: "A prediction about the outcome of a political election"
|
|
568
|
+
metadata: { severity: high }
|
|
569
|
+
- name: "IPO"
|
|
570
|
+
description: "A prediction about an initial public offering"
|
|
571
|
+
metadata: { severity: high }
|
|
572
|
+
- name: "Mergers & acquisitions"
|
|
573
|
+
description: "A prediction about a corporate merger or acquisition"
|
|
574
|
+
metadata: { severity: high }
|
|
575
|
+
- name: "Geopolitical event"
|
|
576
|
+
description: "A prediction about a significant geopolitical event (war, sanctions, treaties)"
|
|
577
|
+
metadata: { severity: high }
|
|
578
|
+
- name: "Regulatory decision"
|
|
579
|
+
description: "A prediction about a government or regulatory body decision"
|
|
580
|
+
metadata: { severity: high }
|
|
581
|
+
- name: "Major leadership change"
|
|
582
|
+
description: "A prediction about a leadership change at a major organization or government"
|
|
583
|
+
metadata: { severity: medium }
|
|
584
|
+
- name: "Change in government policy"
|
|
585
|
+
description: "A prediction about a change in government policy (tariffs, legislation, executive orders)"
|
|
586
|
+
metadata: { severity: medium }
|
|
587
|
+
- name: "Market milestone"
|
|
588
|
+
description: "A prediction about a financial market milestone (price target, index level, market cap)"
|
|
589
|
+
metadata: { severity: medium }
|
|
590
|
+
- name: "Technological milestone"
|
|
591
|
+
description: "A prediction about achieving a technological milestone (product launch, scientific breakthrough)"
|
|
592
|
+
metadata: { severity: medium }
|
|
593
|
+
- name: "Natural disaster"
|
|
594
|
+
description: "A prediction about a natural disaster or severe weather event"
|
|
595
|
+
metadata: { severity: high }
|
|
596
|
+
- name: "Sports outcome"
|
|
597
|
+
description: "A prediction about the outcome of a sporting event or season"
|
|
598
|
+
metadata: { severity: low }
|
|
599
|
+
- name: "Entertainment"
|
|
600
|
+
description: "A prediction about entertainment (award shows, box office, releases)"
|
|
601
|
+
metadata: { severity: low }
|