synmax-api-python-client 4.2.1__py3-none-any.whl → 4.4.0__py3-none-any.whl

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.
@@ -0,0 +1,1280 @@
1
+ # The following comment tells yaml-language-server which schema to validate this file against
2
+ # yaml-language-server: $schema=https://raw.githubusercontent.com/OAI/OpenAPI-Specification/refs/heads/main/_archive_/schemas/v3.0/schema.yaml
3
+ openapi: 3.0.3
4
+ info:
5
+ title: Hyperion API
6
+ description: Customer API Endpoints
7
+ version: 4.0.0
8
+ servers:
9
+ - url: /
10
+ paths:
11
+ /completions:
12
+ post:
13
+ x-method-name: well_completion
14
+ security: [ApiKeyAuth: [hyperion]]
15
+ summary: Well completions. Well level frac jobs by date
16
+ requestBody:
17
+ content:
18
+ application/json:
19
+ schema:
20
+ type: object
21
+ additionalProperties: false
22
+ nullable: true
23
+ properties:
24
+ aggregate_by:
25
+ type: array
26
+ items:
27
+ type: string
28
+ example: region_natgas
29
+ enum:
30
+ - county
31
+ - date_completion_start
32
+ - date_completion_end
33
+ - operator
34
+ - region_natgas
35
+ - state_code
36
+ - sub_region_natgas
37
+ completion_class: { $ref: '#/components/schemas/completion_class_array' }
38
+ county: { $ref: '#/components/schemas/county_array' }
39
+ date_completion_start_min: { $ref: '#/components/schemas/date' }
40
+ date_completion_start_max: { $ref: '#/components/schemas/date' }
41
+ date_completion_end_min: { $ref: '#/components/schemas/date' }
42
+ date_completion_end_max: { $ref: '#/components/schemas/date' }
43
+ operator: { $ref: '#/components/schemas/operator_array' }
44
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
45
+ state_code: { $ref: '#/components/schemas/state_code_array' }
46
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
47
+ responses:
48
+ '200':
49
+ description: Success
50
+ content:
51
+ application/json:
52
+ schema: { $ref: '#/components/schemas/WellCompletionsResponse' }
53
+ application/x-ndjson:
54
+ schema: { $ref: '#/components/schemas/WellCompletionsResponse' }
55
+ /dailyfrackedfeet:
56
+ post:
57
+ x-method-name: daily_fracked_feet
58
+ summary: Fracked feet per day averaged by subregion.
59
+ security: [ApiKeyAuth: [hyperion]]
60
+ requestBody:
61
+ required: true
62
+ content:
63
+ application/json:
64
+ schema:
65
+ type: object
66
+ additionalProperties: false
67
+ nullable: true
68
+ properties:
69
+ date_frac_min: { $ref: '#/components/schemas/date' }
70
+ date_frac_max: { $ref: '#/components/schemas/date' }
71
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
72
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
73
+ responses:
74
+ '200':
75
+ description: Success
76
+ content:
77
+ application/json:
78
+ schema: { $ref: '#/components/schemas/DailyFrackedFeetResponse' }
79
+ application/x-ndjson:
80
+ schema: { $ref: '#/components/schemas/DailyFrackedFeetResponse' }
81
+ /dailyproduction:
82
+ post:
83
+ x-method-name: daily_production
84
+ summary: Returns the daily gas production model for the lower 48, informed from pipeline scrapes, state data, and our short-term production forecast.
85
+ security: [ApiKeyAuth: [hyperion]]
86
+ requestBody:
87
+ required: true
88
+ content:
89
+ application/json:
90
+ schema:
91
+ type: object
92
+ additionalProperties: false
93
+ nullable: true
94
+ properties:
95
+ aggregate_by:
96
+ type: array
97
+ items:
98
+ type: string
99
+ example: region_natgas
100
+ enum: [ date_prod, region_natgas, sub_region_natgas ]
101
+ date_prod_min: { $ref: '#/components/schemas/date' }
102
+ date_prod_max: { $ref: '#/components/schemas/date' }
103
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
104
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
105
+ responses:
106
+ '200':
107
+ description: Success
108
+ content:
109
+ application/json:
110
+ schema: { $ref: '#/components/schemas/DailyProductionResponse' }
111
+ application/x-ndjson:
112
+ schema: { $ref: '#/components/schemas/DailyProductionResponse' }
113
+ /drygasfactors:
114
+ post:
115
+ x-method-name: dry_gas_factors
116
+ summary: Monthly dry gas factors by natgas subregion
117
+ security: [ApiKeyAuth: [hyperion]]
118
+ requestBody:
119
+ required: true
120
+ content:
121
+ application/json:
122
+ schema:
123
+ type: object
124
+ additionalProperties: false
125
+ nullable: true
126
+ properties:
127
+ date_factor_min: { $ref: '#/components/schemas/date' }
128
+ date_factor_max: { $ref: '#/components/schemas/date' }
129
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
130
+ responses:
131
+ '200':
132
+ description: Success
133
+ content:
134
+ application/json:
135
+ schema: { $ref: '#/components/schemas/DryGasFactorResponse' }
136
+ application/x-ndjson:
137
+ schema: { $ref: '#/components/schemas/DryGasFactorResponse' }
138
+ /ducsbyoperator:
139
+ post:
140
+ x-method-name: ducs_by_operator
141
+ summary: Count of drilled but uncompleted wells by county and operator
142
+ security: [ApiKeyAuth: [hyperion]]
143
+ requestBody:
144
+ required: true
145
+ content:
146
+ application/json:
147
+ schema:
148
+ type: object
149
+ additionalProperties: false
150
+ nullable: true
151
+ properties:
152
+ aggregate_by:
153
+ type: array
154
+ items:
155
+ type: string
156
+ example: region_natgas
157
+ enum:
158
+ - county
159
+ - date_observed
160
+ - operator
161
+ - region_natgas
162
+ - state_code
163
+ - sub_region_natgas
164
+ county: { $ref: '#/components/schemas/county_array' }
165
+ date_observed_min: { $ref: '#/components/schemas/date' }
166
+ date_observed_max: { $ref: '#/components/schemas/date' }
167
+ operator: { $ref: '#/components/schemas/operator_array' }
168
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
169
+ state_code: { $ref: '#/components/schemas/state_code_array' }
170
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
171
+ responses:
172
+ '200':
173
+ description: Success
174
+ content:
175
+ application/json:
176
+ schema: { $ref: '#/components/schemas/DucsByOperatorResponse' }
177
+ application/x-ndjson:
178
+ schema: { $ref: '#/components/schemas/DucsByOperatorResponse' }
179
+ /longtermforecast:
180
+ post:
181
+ x-method-name: long_term_forecast
182
+ summary: Long-term production forecasts for gas production of the lower 48 for the next 12 months.
183
+ security: [ApiKeyAuth: [hyperion]]
184
+ requestBody:
185
+ required: true
186
+ content:
187
+ application/json:
188
+ schema:
189
+ type: object
190
+ additionalProperties: false
191
+ nullable: true
192
+ properties:
193
+ aggregate_by:
194
+ type: array
195
+ items:
196
+ type: string
197
+ example: region_natgas
198
+ enum:
199
+ - date_prod
200
+ - region_natgas
201
+ - sub_region_natgas
202
+ date_prod_min: { $ref: '#/components/schemas/date' }
203
+ date_prod_max: { $ref: '#/components/schemas/date' }
204
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
205
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
206
+ responses:
207
+ '200':
208
+ description: Success
209
+ content:
210
+ application/json:
211
+ schema: { $ref: '#/components/schemas/LongTermForecastResponse' }
212
+ application/x-ndjson:
213
+ schema: { $ref: '#/components/schemas/LongTermForecastResponse' }
214
+ /operatorclassification:
215
+ get:
216
+ x-method-name: fetch_operator_classification
217
+ summary: Whether well operator is public or private company.
218
+ security: [ApiKeyAuth: [hyperion]]
219
+ responses:
220
+ '200':
221
+ description: Success
222
+ content:
223
+ application/json:
224
+ schema: { $ref: '#/components/schemas/OperatorClassificationResponse' }
225
+ application/x-ndjson:
226
+ schema: { $ref: '#/components/schemas/OperatorClassificationResponse' }
227
+ /oilproduction:
228
+ post:
229
+ # x-method-name: oil_production
230
+ summary: Daily oil production by subregion
231
+ security: [ApiKeyAuth: [hyperion]]
232
+ requestBody:
233
+ required: true
234
+ content:
235
+ application/json:
236
+ schema:
237
+ type: object
238
+ additionalProperties: false
239
+ properties:
240
+ aggregate_by:
241
+ type: array
242
+ items:
243
+ type: string
244
+ example: region_natgas
245
+ enum: [ date_prod, region_natgas, sub_region_natgas ]
246
+ date_prod_min: { $ref: '#/components/schemas/date' }
247
+ date_prod_max: { $ref: '#/components/schemas/date' }
248
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
249
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
250
+ responses:
251
+ '200':
252
+ description: Success
253
+ content:
254
+ application/json:
255
+ schema: { $ref: '#/components/schemas/OilProductionResponse' }
256
+ application/x-ndjson:
257
+ schema: { $ref: '#/components/schemas/OilProductionResponse' }
258
+ /productionbywell:
259
+ post:
260
+ x-method-name: production_by_well
261
+ security: [ApiKeyAuth: [hyperion]]
262
+ summary: Well level monthly oil and gas production.
263
+ requestBody:
264
+ required: true
265
+ content:
266
+ application/json:
267
+ schema:
268
+ type: object
269
+ additionalProperties: false
270
+ nullable: true
271
+ properties:
272
+ aggregate_by:
273
+ type: array
274
+ items:
275
+ type: string
276
+ example: region_natgas
277
+ enum: [ date_prod, county, operator, region_natgas, state_code, sub_region_natgas ]
278
+ county: { $ref: '#/components/schemas/county_array' }
279
+ date_prod_min: { $ref: '#/components/schemas/date' }
280
+ date_prod_max: { $ref: '#/components/schemas/date' }
281
+ operator: { $ref: '#/components/schemas/operator_array' }
282
+ production_month: { $ref: '#/components/schemas/integer_array' }
283
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
284
+ state_code: { $ref: '#/components/schemas/state_code_array' }
285
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
286
+ well_id: { $ref: '#/components/schemas/well_id_array' }
287
+ responses:
288
+ '200':
289
+ description: Success
290
+ content:
291
+ application/json:
292
+ schema: { $ref: '#/components/schemas/ProductionByWellResponse' }
293
+ application/x-ndjson:
294
+ schema: { $ref: '#/components/schemas/ProductionByWellResponse' }
295
+ /regions:
296
+ get:
297
+ x-method-name: fetch_regions
298
+ summary: Region lookup data
299
+ security: [ApiKeyAuth: [hyperion]]
300
+ responses:
301
+ '200':
302
+ description: Success
303
+ content:
304
+ application/json:
305
+ schema: { $ref: '#/components/schemas/RegionDefResponse' }
306
+ application/x-ndjson:
307
+ schema: { $ref: '#/components/schemas/RegionDefResponse' }
308
+ /rigs:
309
+ post:
310
+ x-method-name: rigs
311
+ security: [ApiKeyAuth: [hyperion]]
312
+ summary: Returns location specific to a wellpad and its operating dates.
313
+ requestBody:
314
+ required: true
315
+ content:
316
+ application/json:
317
+ schema:
318
+ type: object
319
+ additionalProperties: false
320
+ nullable: true
321
+ properties:
322
+ aggregate_by:
323
+ type: array
324
+ items:
325
+ type: string
326
+ example: region_natgas
327
+ enum: [ date_observed, region_natgas, sub_region_natgas, county, operator, state_code ]
328
+ date_observed_min: { $ref: '#/components/schemas/date' }
329
+ date_observed_max: { $ref: '#/components/schemas/date' }
330
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
331
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
332
+ county: { $ref: '#/components/schemas/county_array' }
333
+ operator: { $ref: '#/components/schemas/operator_array' }
334
+ state_code: { $ref: '#/components/schemas/state_code_array' }
335
+ rig_class: { $ref: '#/components/schemas/rig_class_array' }
336
+ responses:
337
+ '200':
338
+ description: Success
339
+ content:
340
+ application/json:
341
+ schema: { $ref: '#/components/schemas/RigsResponse' }
342
+ application/x-ndjson:
343
+ schema: { $ref: '#/components/schemas/RigsResponse' }
344
+ /rigs/latest:
345
+ post:
346
+ security: [ApiKeyAuth: [hyperion]]
347
+ summary: Rigs for most recent dates in their region
348
+ requestBody:
349
+ required: true
350
+ content:
351
+ application/json:
352
+ schema:
353
+ type: object
354
+ additionalProperties: false
355
+ nullable: true
356
+ properties:
357
+ aggregate_by:
358
+ type: array
359
+ items:
360
+ type: string
361
+ example: region_natgas
362
+ enum: [ date_observed, region_natgas, sub_region_natgas, county, operator, state_code ]
363
+ date_observed_min: { $ref: '#/components/schemas/date' }
364
+ date_observed_max: { $ref: '#/components/schemas/date' }
365
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
366
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
367
+ county: { $ref: '#/components/schemas/county_array' }
368
+ operator: { $ref: '#/components/schemas/operator_array' }
369
+ state_code: { $ref: '#/components/schemas/state_code_array' }
370
+ rig_class: { $ref: '#/components/schemas/rig_class_array' }
371
+ responses:
372
+ '200':
373
+ description: Success
374
+ content:
375
+ application/json:
376
+ schema: { $ref: '#/components/schemas/RigsResponse' }
377
+ application/x-ndjson:
378
+ schema: { $ref: '#/components/schemas/RigsResponse' }
379
+ /shorttermforecast:
380
+ post:
381
+ x-method-name: short_term_forecast
382
+ summary: Returns short-term, monthly gas production forecasts for well APIs.
383
+ security: [ApiKeyAuth: [hyperion]]
384
+ requestBody:
385
+ required: true
386
+ content:
387
+ application/json:
388
+ schema:
389
+ type: object
390
+ additionalProperties: false
391
+ nullable: true
392
+ properties:
393
+ aggregate_by:
394
+ type: array
395
+ items:
396
+ type: string
397
+ example: region_natgas
398
+ enum:
399
+ - county
400
+ - date_prod
401
+ - operator
402
+ - region_natgas
403
+ - state_code
404
+ - sub_region_natgas
405
+ county: { $ref: '#/components/schemas/county_array' }
406
+ date_prod_min: { $ref: '#/components/schemas/date' }
407
+ date_prod_max: { $ref: '#/components/schemas/date' }
408
+ operator: { $ref: '#/components/schemas/operator_array' }
409
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
410
+ state_code: { $ref: '#/components/schemas/state_code_array' }
411
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
412
+ well_id: { $ref: '#/components/schemas/well_id_array' }
413
+ responses:
414
+ '200':
415
+ description: Success
416
+ content:
417
+ application/json:
418
+ schema: { $ref: '#/components/schemas/ShortTermForecastResponse' }
419
+ application/x-ndjson:
420
+ schema: { $ref: '#/components/schemas/ShortTermForecastResponse' }
421
+ /shorttermforecastdeclines:
422
+ post:
423
+ x-method-name: short_term_forecast_declines
424
+ security: [ApiKeyAuth: [hyperion]]
425
+ summary: Long term well declines at a monthly rate.
426
+ requestBody:
427
+ required: true
428
+ content:
429
+ application/json:
430
+ schema:
431
+ type: object
432
+ additionalProperties: false
433
+ nullable: true
434
+ properties:
435
+ aggregate_by:
436
+ type: array
437
+ items:
438
+ type: string
439
+ example: region_natgas
440
+ enum:
441
+ - county
442
+ - date_prod
443
+ - first_production_month
444
+ - modeled
445
+ - operator
446
+ - production_month
447
+ - region_natgas
448
+ - state_code
449
+ - state_reported
450
+ - sub_region_natgas
451
+ aggregation_type: { $ref: '#/components/schemas/aggregation_type' }
452
+ county: { $ref: '#/components/schemas/county_array' }
453
+ date_prod_min: { $ref: '#/components/schemas/date' }
454
+ date_prod_max: { $ref: '#/components/schemas/date' }
455
+ first_production_month_min: { $ref: '#/components/schemas/date' }
456
+ first_production_month_max: { $ref: '#/components/schemas/date' }
457
+ modeled: { type: boolean }
458
+ operator: { $ref: '#/components/schemas/operator_array' }
459
+ production_month: { $ref: '#/components/schemas/integer_array' }
460
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
461
+ state_code: { $ref: '#/components/schemas/state_code_array' }
462
+ state_reported: { type: boolean }
463
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
464
+ well_id: { $ref: '#/components/schemas/well_id_array' }
465
+ responses:
466
+ '200':
467
+ description: Success
468
+ content:
469
+ application/json:
470
+ schema: { $ref: '#/components/schemas/ShortTermForecastDeclinesResponse' }
471
+ application/x-ndjson:
472
+ schema: { $ref: '#/components/schemas/ShortTermForecastDeclinesResponse' }
473
+ /shorttermforecasthistory:
474
+ post:
475
+ x-method-name: short_term_forecast_history
476
+ summary: Monthly production backcasts by well.
477
+ security: [ApiKeyAuth: [hyperion]]
478
+ requestBody:
479
+ required: true
480
+ content:
481
+ application/json:
482
+ schema:
483
+ type: object
484
+ additionalProperties: false
485
+ required: [date_forecast_run]
486
+ properties:
487
+ aggregate_by:
488
+ type: array
489
+ items:
490
+ type: string
491
+ example: region_natgas
492
+ enum:
493
+ - county
494
+ - date_prod
495
+ - operator
496
+ - region_natgas
497
+ - state_code
498
+ - sub_region_natgas
499
+ county: { $ref: '#/components/schemas/county_array' }
500
+ date_forecast_run: { $ref: '#/components/schemas/date' }
501
+ date_prod_min: { $ref: '#/components/schemas/date' }
502
+ date_prod_max: { $ref: '#/components/schemas/date' }
503
+ operator: { $ref: '#/components/schemas/operator_array' }
504
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
505
+ state_code: { $ref: '#/components/schemas/state_code_array' }
506
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
507
+ well_id: { $ref: '#/components/schemas/well_id_array' }
508
+ responses:
509
+ '200':
510
+ description: Success
511
+ content:
512
+ application/json:
513
+ schema: { $ref: '#/components/schemas/ShortTermForecastHistoryResponse' }
514
+ application/x-ndjson:
515
+ schema: { $ref: '#/components/schemas/ShortTermForecastHistoryResponse' }
516
+ /shorttermforecasthistorydates:
517
+ get:
518
+ x-method-name: fetch_forecast_run_dates
519
+ summary: Forecast run dates
520
+ security: [ApiKeyAuth: [hyperion]]
521
+ responses:
522
+ '200':
523
+ description: Success
524
+ content:
525
+ application/json:
526
+ schema: { $ref: '#/components/schemas/ShortTermForecastHistoryDatesResponse' }
527
+ application/x-ndjson:
528
+ schema: { $ref: '#/components/schemas/ShortTermForecastHistoryDatesResponse' }
529
+ /stfaggregatedhistory:
530
+ post:
531
+ x-method-name: short_term_forecast_aggregated_history
532
+ summary: Subregion aggregated histories of all shorttermforecasts.
533
+ security: [ApiKeyAuth: [hyperion]]
534
+ requestBody:
535
+ required: true
536
+ content:
537
+ application/json:
538
+ schema:
539
+ type: object
540
+ additionalProperties: false
541
+ nullable: true
542
+ properties:
543
+ date_forecast_run: { $ref: '#/components/schemas/date' }
544
+ date_prod_min: { $ref: '#/components/schemas/date' }
545
+ date_prod_max: { $ref: '#/components/schemas/date' }
546
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
547
+ responses:
548
+ '200':
549
+ description: Success
550
+ content:
551
+ application/json:
552
+ schema: { $ref: '#/components/schemas/ShortTermForecastAggregatedHistoryResponse' }
553
+ application/x-ndjson:
554
+ schema: { $ref: '#/components/schemas/ShortTermForecastAggregatedHistoryResponse' }
555
+ /tils:
556
+ get:
557
+ x-method-name: fetch_tils
558
+ summary: TIL monitoring data.
559
+ security: [ApiKeyAuth: [hyperion]]
560
+ responses:
561
+ '200':
562
+ description: Success
563
+ content:
564
+ application/json:
565
+ schema: { $ref: '#/components/schemas/TilsResponse' }
566
+ application/x-ndjson:
567
+ schema: { $ref: '#/components/schemas/TilsResponse' }
568
+ /wells:
569
+ post:
570
+ x-method-name: wells
571
+ summary: Well level details. Well level data derived from all sources.
572
+ security: [ApiKeyAuth: [hyperion]]
573
+ requestBody:
574
+ required: true
575
+ content:
576
+ application/json:
577
+ schema:
578
+ type: object
579
+ additionalProperties: false
580
+ nullable: true
581
+ properties:
582
+ aggregate_by:
583
+ type: array
584
+ items:
585
+ type: string
586
+ example: region_natgas
587
+ enum:
588
+ - county
589
+ - date_first_production
590
+ - date_spud
591
+ - operator
592
+ - region_natgas
593
+ - state_code
594
+ - sub_region_natgas
595
+ county: { $ref: '#/components/schemas/county_array' }
596
+ date_spud_min: { $ref: '#/components/schemas/date' }
597
+ date_spud_max: { $ref: '#/components/schemas/date' }
598
+ date_first_production_min: { $ref: '#/components/schemas/date' }
599
+ date_first_production_max: { $ref: '#/components/schemas/date' }
600
+ depth_min: { type: number }
601
+ depth_max: { type: number }
602
+ horizontal_length_min: { type: number }
603
+ horizontal_length_max: { type: number }
604
+ operator: { $ref: '#/components/schemas/operator_array' }
605
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
606
+ state_code: { $ref: '#/components/schemas/state_code_array' }
607
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
608
+ responses:
609
+ '200':
610
+ description: Success
611
+ content:
612
+ application/json:
613
+ schema: { $ref: '#/components/schemas/WellsResponse' }
614
+ application/x-ndjson:
615
+ schema: { $ref: '#/components/schemas/WellsResponse' }
616
+ # /pipelinescrapes:
617
+ # post:
618
+ # # x-method-name: pipeline_scrapes
619
+ # summary: TODO MV # Daily pipeline scrapes. Rework?
620
+ # security: [ApiKeyAuth: [hyperion]]
621
+ # requestBody:
622
+ # required: true
623
+ # content:
624
+ # application/json:
625
+ # schema:
626
+ # type: object
627
+ # additionalProperties: false
628
+ # properties:
629
+ # pipe_point_type: { $ref: '#/components/schemas/pipe_point_type' }
630
+ # county: { $ref: '#/components/schemas/county_array' }
631
+ # date_observed_min: { $ref: '#/components/schemas/date' }
632
+ # date_observed_max: { $ref: '#/components/schemas/date' }
633
+ # rec_del: { $ref: '#/components/schemas/integer_array' }
634
+ # region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
635
+ # state_code: { $ref: '#/components/schemas/state_code_array' }
636
+ # sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
637
+ # responses:
638
+ # '200':
639
+ # description: Success
640
+ # content:
641
+ # application/json:
642
+ # schema: { $ref: '#/components/schemas/PipelineScrapesResponse' }
643
+ # application/x-ndjson:
644
+ # schema: { $ref: '#/components/schemas/PipelineScrapesResponse' }
645
+ # /pipelinescrapestatus:
646
+ # get:
647
+ # #x-method-name: fetch_pipeline_scrape_status
648
+ # summary: TODO MV # Daily status of pipeline scrapes. # Rework?
649
+ # security: [ApiKeyAuth: [hyperion]]
650
+ # responses:
651
+ # '200':
652
+ # description: Success
653
+ # content:
654
+ # application/json:
655
+ # schema: { $ref: '#/components/schemas/PipelineScrapesStatusResponse' }
656
+ # application/x-ndjson:
657
+ # schema: { $ref: '#/components/schemas/PipelineScrapesStatusResponse' }
658
+ /fraccrews:
659
+ post:
660
+ x-method-name: frac_crews
661
+ security: [ApiKeyAuth: [hyperion]]
662
+ summary: Frac crew location by wellpad and date
663
+ requestBody:
664
+ required: true
665
+ content:
666
+ application/json:
667
+ schema:
668
+ type: object
669
+ additionalProperties: false
670
+ nullable: true
671
+ properties:
672
+ aggregate_by:
673
+ type: array
674
+ items:
675
+ type: string
676
+ example: region_natgas
677
+ enum:
678
+ - county
679
+ - date_frac
680
+ - operator
681
+ - region_natgas
682
+ - service_company
683
+ - state_code
684
+ - sub_region_natgas
685
+ county: { $ref: '#/components/schemas/county_array' }
686
+ date_frac_min: { $ref: '#/components/schemas/date' }
687
+ date_frac_max: { $ref: '#/components/schemas/date' }
688
+ frac_class: { $ref: '#/components/schemas/frac_class_array' }
689
+ operator: { $ref: '#/components/schemas/operator_array' }
690
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
691
+ service_company: { $ref: '#/components/schemas/string_array' }
692
+ state_code: { $ref: '#/components/schemas/state_code_array' }
693
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
694
+ responses:
695
+ '200':
696
+ description: Success
697
+ content:
698
+ application/json:
699
+ schema: { $ref: '#/components/schemas/FracCrewsResponse' }
700
+ application/x-ndjson:
701
+ schema: { $ref: '#/components/schemas/FracCrewsResponse' }
702
+ /fraccrews/latest:
703
+ post:
704
+ security: [ApiKeyAuth: [hyperion]]
705
+ summary: Frac crew locations with the most recent recorded date per region
706
+ requestBody:
707
+ required: true
708
+ content:
709
+ application/json:
710
+ schema:
711
+ type: object
712
+ additionalProperties: false
713
+ nullable: true
714
+ properties:
715
+ aggregate_by:
716
+ type: array
717
+ items:
718
+ type: string
719
+ example: region_natgas
720
+ enum:
721
+ - county
722
+ - date_frac
723
+ - operator
724
+ - region_natgas
725
+ - service_company
726
+ - state_code
727
+ - sub_region_natgas
728
+ date_frac_min: { $ref: '#/components/schemas/date' }
729
+ date_frac_max: { $ref: '#/components/schemas/date' }
730
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
731
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
732
+ county: { $ref: '#/components/schemas/county_array' }
733
+ operator: { $ref: '#/components/schemas/operator_array' }
734
+ state_code: { $ref: '#/components/schemas/state_code_array' }
735
+ frac_class: { $ref: '#/components/schemas/frac_class_array' }
736
+ service_company: { $ref: '#/components/schemas/string_array' }
737
+ responses:
738
+ '200':
739
+ description: Success
740
+ content:
741
+ application/json:
742
+ schema: { $ref: '#/components/schemas/FracCrewsResponse' }
743
+ application/x-ndjson:
744
+ schema: { $ref: '#/components/schemas/FracCrewsResponse' }
745
+ /geowell/{well_id}:
746
+ get:
747
+ security: [ApiKeyAuth: [hyperion]]
748
+ summary: Well details for given api. Well level data derived from all sources.
749
+ parameters:
750
+ - name: well_id
751
+ in: path
752
+ required: true
753
+ schema: { $ref: '#/components/schemas/well_id' }
754
+ responses:
755
+ '200':
756
+ description: Success
757
+ content:
758
+ application/json:
759
+ schema: { $ref: '#/components/schemas/GeoWellsByApiResponse' }
760
+ application/x-ndjson:
761
+ schema: { $ref: '#/components/schemas/GeoWellsByApiResponse' }
762
+ /geowells:
763
+ post:
764
+ security: [ApiKeyAuth: [hyperion]]
765
+ summary: Well lat/long coordinates
766
+ requestBody:
767
+ required: false
768
+ content:
769
+ application/json:
770
+ schema:
771
+ type: object
772
+ additionalProperties: false
773
+ nullable: true
774
+ properties:
775
+ county: { $ref: '#/components/schemas/county_array' }
776
+ date_spud_min: { $ref: '#/components/schemas/date' }
777
+ date_spud_max: { $ref: '#/components/schemas/date' }
778
+ depth_tvd_min: { type: number }
779
+ depth_tvd_max: { type: number }
780
+ horizontal_length_min: { type: number }
781
+ horizontal_length_max: { type: number }
782
+ operator: { $ref: '#/components/schemas/operator_array' }
783
+ region_natgas: { $ref: '#/components/schemas/region_natgas_array' }
784
+ state_code: { $ref: '#/components/schemas/state_code_array' }
785
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
786
+ well_status: { $ref: '#/components/schemas/string_array' }
787
+ responses:
788
+ '200':
789
+ description: Success
790
+ content:
791
+ application/json:
792
+ schema: { $ref: '#/components/schemas/GeoWellsResponse' }
793
+ application/x-ndjson:
794
+ schema: { $ref: '#/components/schemas/GeoWellsResponse' }
795
+ /lower_48_total_stf:
796
+ post:
797
+ security: [ApiKeyAuth: [hyperion]]
798
+ x-method-name: lower_48_total_stf
799
+ summary: Aggregated STF for lower 48, including plug regions
800
+ requestBody:
801
+ required: false
802
+ content:
803
+ application/json:
804
+ schema:
805
+ type: object
806
+ additionalProperties: false
807
+ nullable: true
808
+ properties: {}
809
+ responses:
810
+ '200':
811
+ description: Successful response
812
+ content:
813
+ application/json:
814
+ schema: { $ref: '#/components/schemas/Lower48TotalSTFResponse' }
815
+ application/x-ndjson:
816
+ schema: { $ref: '#/components/schemas/Lower48TotalSTFResponse' }
817
+ /beta/complete_report_date:
818
+ post:
819
+ x-method-name: beta_complete_report_date
820
+ security: [ApiKeyAuth: [hyperion]]
821
+ summary: Get most recent date for which reported data in this subregion is considered complete.
822
+ requestBody:
823
+ content:
824
+ application/json:
825
+ schema:
826
+ type: object
827
+ additionalProperties: false
828
+ nullable: true
829
+ properties:
830
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas_array' }
831
+ responses:
832
+ '200':
833
+ description: Success
834
+ content:
835
+ application/json:
836
+ schema: { $ref: '#/components/schemas/CompleteReportDateReponse' }
837
+ application/x-ndjson:
838
+ schema: { $ref: '#/components/schemas/CompleteReportDateReponse' }
839
+ components:
840
+ securitySchemes:
841
+ ApiKeyAuth:
842
+ type: apiKey
843
+ name: Access-Key
844
+ in: header
845
+ schemas:
846
+ DailyFrackedFeetResponse:
847
+ type: object
848
+ properties:
849
+ date_frac: { $ref: '#/components/schemas/date' }
850
+ fracked_feet: { type: number }
851
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
852
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
853
+ DailyProductionResponse:
854
+ type: object
855
+ properties:
856
+ date_prod: { $ref: '#/components/schemas/date' }
857
+ prod_dry_gas_bcf_day: { type: number }
858
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
859
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
860
+ DryGasFactorResponse:
861
+ type: object
862
+ properties:
863
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
864
+ date_factor:
865
+ type: string
866
+ format: date
867
+ example: 2024-11-01
868
+ description: The month during which this dry gas factor applies
869
+ dry_gas_factor:
870
+ type: number
871
+ description: The dry gas factor
872
+ example: 0.866
873
+ DucsByOperatorResponse:
874
+ type: object
875
+ properties:
876
+ county: { $ref: '#/components/schemas/county' }
877
+ date_observed: { $ref: '#/components/schemas/date' }
878
+ ducs_count: { type: integer }
879
+ operator: { type: string }
880
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
881
+ state_code: { type: string }
882
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
883
+ FracCrewsResponse:
884
+ type: object
885
+ properties:
886
+ county: { $ref: '#/components/schemas/county' }
887
+ date_frac: { $ref: '#/components/schemas/date' }
888
+ frac_class: { $ref: '#/components/schemas/frac_class' }
889
+ lat: { type: number }
890
+ long: { type: number }
891
+ count: { type: integer }
892
+ operator: { $ref: '#/components/schemas/operator' }
893
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
894
+ service_company: { type: string }
895
+ state_code: { $ref: '#/components/schemas/state_code' }
896
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
897
+ wellpad_id: { type: string }
898
+ GeoWellsByApiResponse:
899
+ type: object
900
+ properties:
901
+ basin_play: { type: string }
902
+ county: { $ref: '#/components/schemas/county' }
903
+ date_first_production: { $ref: '#/components/schemas/date' }
904
+ date_last_recompletion: { $ref: '#/components/schemas/date' }
905
+ date_permit: { $ref: '#/components/schemas/date' }
906
+ date_spud: { $ref: '#/components/schemas/date' }
907
+ date_status: { $ref: '#/components/schemas/date' }
908
+ depth_measured: { type: number }
909
+ elevation_ground: { type: number }
910
+ field_name: { type: string }
911
+ formation: { type: string }
912
+ horizontal_length: { type: number }
913
+ lat_bottomhole: { type: number }
914
+ lat_surface: { type: number }
915
+ lon_bottomhole: { type: number }
916
+ lon_surface: { type: number }
917
+ lower_perf: { type: number }
918
+ operator: { $ref: '#/components/schemas/operator' }
919
+ product_type: { type: string }
920
+ range: { type: string }
921
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
922
+ section: { type: string }
923
+ state_code: { $ref: '#/components/schemas/state_code' }
924
+ state_name: { type: string }
925
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
926
+ township: { type: string }
927
+ upper_perf: { type: number }
928
+ well_id: { $ref: '#/components/schemas/well_id' }
929
+ well_name: { type: string }
930
+ well_no: { type: string }
931
+ well_status: { type: string }
932
+ wellbore_type: { type: string }
933
+ GeoWellsResponse:
934
+ type: object
935
+ properties:
936
+ lat_surface: { type: number }
937
+ lon_surface: { type: number }
938
+ well_id: { $ref: '#/components/schemas/well_id' }
939
+ LongTermForecastResponse:
940
+ type: object
941
+ properties:
942
+ date_prod: { $ref: '#/components/schemas/date' }
943
+ prod_dry_gas_bcf_day: { type: number }
944
+ prod_oil_bbl_day: { type: number }
945
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
946
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
947
+ OilProductionResponse:
948
+ type: object
949
+ properties:
950
+ date_prod: { $ref: '#/components/schemas/date' }
951
+ prod_oil_bbl_day: { type: number }
952
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
953
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
954
+ OperatorClassificationResponse:
955
+ type: object
956
+ properties:
957
+ operator: { type: string }
958
+ public_or_private: { type: string }
959
+ ticker: { type: string }
960
+ PipelineScrapesResponse:
961
+ type: object
962
+ properties:
963
+ county: { $ref: '#/components/schemas/county' }
964
+ date_observed: { $ref: '#/components/schemas/date' }
965
+ id: { type: integer }
966
+ location_name: { type: string }
967
+ pipe_point_type: { $ref: '#/components/schemas/pipe_point_type' }
968
+ pipeline_name: { type: string }
969
+ prod_dry_gas_mcf_day: { type: number }
970
+ rec_del: { type: integer }
971
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
972
+ source: { type: string }
973
+ state_code: { type: string }
974
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
975
+ PipelineScrapesStatusResponse:
976
+ type: object
977
+ properties:
978
+ date_observed: { $ref: '#/components/schemas/date' }
979
+ pipe_id1_pct: { type: number }
980
+ pipe_id2_pct: { type: number }
981
+ pipe_id3_pct: { type: number }
982
+ pipe_other_cycles_pct: { type: number }
983
+ pipe_points_reporting_pct: { type: number }
984
+ pipe_timely_pct: { type: number }
985
+ ProductionByWellResponse:
986
+ type: object
987
+ properties:
988
+ county: { $ref: '#/components/schemas/county' }
989
+ date_prod: { $ref: '#/components/schemas/date' }
990
+ field_name: { type: string }
991
+ formation: { type: string }
992
+ operator: { $ref: '#/components/schemas/operator' }
993
+ prod_oil_bbl_day: { type: number }
994
+ prod_oil_bbl_month: { type: number }
995
+ prod_water_bbl_day: { type: number }
996
+ prod_water_bbl_month: { type: number }
997
+ prod_wet_gas_mcf_day: { type: number }
998
+ prod_wet_gas_mcf_month: { type: number }
999
+ production_month: { type: integer }
1000
+ range: { type: string }
1001
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1002
+ section: { type: string }
1003
+ state_code: { $ref: '#/components/schemas/state_code' }
1004
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1005
+ township: { type: string }
1006
+ well_id: { $ref: '#/components/schemas/well_id' }
1007
+ well_name: { type: string }
1008
+ well_no: { type: string }
1009
+ RegionDefResponse:
1010
+ type: object
1011
+ properties:
1012
+ county: { $ref: '#/components/schemas/county' }
1013
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1014
+ state_code: { $ref: '#/components/schemas/state_code' }
1015
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1016
+ RigsResponse:
1017
+ type: object
1018
+ properties:
1019
+ count: { type: integer }
1020
+ county: { $ref: '#/components/schemas/county' }
1021
+ date_observed: { $ref: '#/components/schemas/date' }
1022
+ lat: { type: number }
1023
+ long: { type: number }
1024
+ operator: { $ref: '#/components/schemas/operator' }
1025
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1026
+ rig_class: { $ref: '#/components/schemas/rig_class' }
1027
+ state_code: { $ref: '#/components/schemas/state_code' }
1028
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1029
+ wellpad_id: { type: string }
1030
+ ShortTermForecastAggregatedHistoryResponse:
1031
+ type: object
1032
+ properties:
1033
+ date_forecast_run: { $ref: '#/components/schemas/date' }
1034
+ date_prod: { $ref: '#/components/schemas/date' }
1035
+ prod_dry_gas_bcf_day: { type: number }
1036
+ prod_oil_mbbl_day: { type: number }
1037
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1038
+ ShortTermForecastDeclinesResponse:
1039
+ type: object
1040
+ properties:
1041
+ count: { type: integer }
1042
+ county: { $ref: '#/components/schemas/county' }
1043
+ date_forecast_run: { $ref: '#/components/schemas/date' }
1044
+ date_prod: { $ref: '#/components/schemas/date' }
1045
+ first_production_month: { $ref: '#/components/schemas/date' }
1046
+ modeled: { type: boolean }
1047
+ operator: { $ref: '#/components/schemas/operator' }
1048
+ prod_oil_bbl_day: { type: number }
1049
+ prod_oil_bbl_month: { type: number }
1050
+ prod_wet_gas_mcf_day: { type: number }
1051
+ prod_wet_gas_mcf_month: { type: number }
1052
+ production_month: { type: integer }
1053
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1054
+ state_code: { $ref: '#/components/schemas/state_code' }
1055
+ state_reported: { type: boolean }
1056
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1057
+ well_id: { $ref: '#/components/schemas/well_id' }
1058
+ ShortTermForecastResponse:
1059
+ type: object
1060
+ properties:
1061
+ county: { $ref: '#/components/schemas/county' }
1062
+ date_forecast_run: { $ref: '#/components/schemas/date' }
1063
+ date_prod: { $ref: '#/components/schemas/date' }
1064
+ operator: { $ref: '#/components/schemas/operator' }
1065
+ prod_oil_bbl_day: { type: number }
1066
+ prod_oil_bbl_month: { type: number }
1067
+ prod_dry_gas_mcf_day: { type: number }
1068
+ prod_dry_gas_mcf_month: { type: number }
1069
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1070
+ state_code: { $ref: '#/components/schemas/state_code' }
1071
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1072
+ well_id: { $ref: '#/components/schemas/well_id' }
1073
+ ShortTermForecastHistoryDatesResponse:
1074
+ type: object
1075
+ properties:
1076
+ date_forecast_run: { $ref: '#/components/schemas/date' }
1077
+ ShortTermForecastHistoryResponse:
1078
+ type: object
1079
+ properties:
1080
+ county: { $ref: '#/components/schemas/county' }
1081
+ date_forecast_run: { $ref: '#/components/schemas/date' }
1082
+ date_prod: { $ref: '#/components/schemas/date' }
1083
+ operator: { type: string }
1084
+ prod_oil_bbl_day: { type: number }
1085
+ prod_oil_bbl_month: { type: number }
1086
+ prod_wet_gas_mcf_day: { type: number }
1087
+ prod_wet_gas_mcf_month: { type: number }
1088
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1089
+ state_code: { $ref: '#/components/schemas/state_code' }
1090
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1091
+ well_id: { $ref: '#/components/schemas/well_id' }
1092
+ TilsResponse:
1093
+ type: object
1094
+ properties:
1095
+ date_frac_end: { $ref: '#/components/schemas/date' }
1096
+ date_til: { $ref: '#/components/schemas/date' }
1097
+ operator: { type: string }
1098
+ prod_wet_gas_bcf_day: { type: number }
1099
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1100
+ wellpad_id: { type: string }
1101
+ wells: { type: integer }
1102
+ WellsResponse:
1103
+ type: object
1104
+ properties:
1105
+ county: { $ref: '#/components/schemas/county' }
1106
+ date_completion: { $ref: '#/components/schemas/date' }
1107
+ date_first_production: { $ref: '#/components/schemas/date' }
1108
+ date_permit: { $ref: '#/components/schemas/date' }
1109
+ date_spud: { $ref: '#/components/schemas/date' }
1110
+ depth_measured: { type: number }
1111
+ depth_tvd: { type: number }
1112
+ horizontal_length: { type: number }
1113
+ lat_bottomhole: { type: number }
1114
+ lon_bottomhole: { type: number }
1115
+ lat_surface: { type: number }
1116
+ lon_surface: { type: number }
1117
+ operator: { type: string }
1118
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1119
+ state_code: { type: string }
1120
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1121
+ well_id: { $ref: '#/components/schemas/well_id' }
1122
+ wellbore_type: { type: string }
1123
+ wellpad_id: { type: string }
1124
+ WellCompletionsResponse:
1125
+ type: object
1126
+ properties:
1127
+ completion_class: { $ref: '#/components/schemas/completion_class' }
1128
+ count: { type: integer }
1129
+ county: { $ref: '#/components/schemas/county' }
1130
+ date_completion_start: { $ref: '#/components/schemas/date' }
1131
+ date_completion_end: { $ref: '#/components/schemas/date' }
1132
+ operator: { $ref: '#/components/schemas/operator' }
1133
+ region_natgas: { $ref: '#/components/schemas/region_natgas' }
1134
+ state_code: { $ref: '#/components/schemas/state_code' }
1135
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1136
+ wellpad_id: { type: string }
1137
+ well_id: { $ref: '#/components/schemas/well_id' }
1138
+ Lower48TotalSTFResponse:
1139
+ type: object
1140
+ properties:
1141
+ date_prod: { $ref: '#/components/schemas/date' }
1142
+ prod_dry_gas_bcf_day: { type: number }
1143
+ aggregation_type:
1144
+ type: string
1145
+ example: sum
1146
+ enum: [ average, count, sum ]
1147
+ completion_class:
1148
+ type: string
1149
+ example: oil
1150
+ enum:
1151
+ - oil
1152
+ - gas
1153
+ - TBD
1154
+ completion_class_array:
1155
+ anyOf:
1156
+ - type: array
1157
+ items: { $ref: '#/components/schemas/completion_class' }
1158
+ - $ref: '#/components/schemas/completion_class'
1159
+ county:
1160
+ type: string
1161
+ example: CAMPBELL
1162
+ county_array:
1163
+ anyOf:
1164
+ - type: array
1165
+ items: { $ref: '#/components/schemas/county' }
1166
+ - $ref: '#/components/schemas/county'
1167
+ date:
1168
+ type: string
1169
+ format: date
1170
+ example: "2021-11-24"
1171
+ frac_class:
1172
+ type: string
1173
+ example: oil
1174
+ enum:
1175
+ - oil
1176
+ - gas
1177
+ - TBD
1178
+ frac_class_array:
1179
+ anyOf:
1180
+ - type: array
1181
+ items: { $ref: '#/components/schemas/frac_class' }
1182
+ - $ref: '#/components/schemas/frac_class'
1183
+ integer_array:
1184
+ anyOf:
1185
+ - type: array
1186
+ items: { type: integer }
1187
+ - type: integer
1188
+ operator:
1189
+ example: BILL BARRETT CORPORATION
1190
+ type: string
1191
+ operator_array:
1192
+ anyOf:
1193
+ - type: array
1194
+ items: { $ref: '#/components/schemas/operator' }
1195
+ - $ref: '#/components/schemas/operator'
1196
+ pipe_point_type:
1197
+ type: string
1198
+ example: Wellhead
1199
+ enum:
1200
+ - Compressor
1201
+ - Gathering System
1202
+ - Industrial
1203
+ - Interconnect
1204
+ - LDC
1205
+ - LNG
1206
+ - Pooling Point
1207
+ - Power
1208
+ - Processing Plant
1209
+ - Production
1210
+ - RNG
1211
+ - Storage
1212
+ - Virtual Point
1213
+ - Wellhead
1214
+ region_natgas:
1215
+ example: west
1216
+ type: string
1217
+ region_natgas_array:
1218
+ anyOf:
1219
+ - type: array
1220
+ items: { $ref: '#/components/schemas/region_natgas' }
1221
+ - $ref: '#/components/schemas/region_natgas'
1222
+ rig_class:
1223
+ type: string
1224
+ example: oil
1225
+ enum:
1226
+ - oil
1227
+ - gas
1228
+ - TBD
1229
+ rig_class_array:
1230
+ anyOf:
1231
+ - type: array
1232
+ items: { $ref: '#/components/schemas/rig_class' }
1233
+ - $ref: '#/components/schemas/rig_class'
1234
+ state_code:
1235
+ type: string
1236
+ example: WY
1237
+ state_code_array:
1238
+ anyOf:
1239
+ - type: array
1240
+ items: { $ref: '#/components/schemas/state_code' }
1241
+ - $ref: '#/components/schemas/state_code'
1242
+ string_array:
1243
+ type: array
1244
+ items: { type: string }
1245
+ sub_region_natgas:
1246
+ type: string
1247
+ example: Haynesville - TX
1248
+ sub_region_natgas_array:
1249
+ anyOf:
1250
+ - type: array
1251
+ items: { $ref: '#/components/schemas/sub_region_natgas' }
1252
+ - $ref: '#/components/schemas/sub_region_natgas'
1253
+ well_id_array:
1254
+ anyOf:
1255
+ - type: array
1256
+ items: { $ref: '#/components/schemas/well_id' }
1257
+ - $ref: '#/components/schemas/well_id'
1258
+ well_id:
1259
+ type: string
1260
+ example: 4900552885
1261
+ CompleteReportDateReponse:
1262
+ type: object
1263
+ properties:
1264
+ sub_region_natgas: { $ref: '#/components/schemas/sub_region_natgas' }
1265
+ date_pipe_scrape_report:
1266
+ type: string
1267
+ format: date
1268
+ description: Last good date for pipeline scrapes
1269
+ date_completion_report:
1270
+ type: string
1271
+ format: date
1272
+ description: Cut-off date for completions data
1273
+ date_gas_prod_report:
1274
+ type: string
1275
+ format: date
1276
+ description: Complete production date for gas
1277
+ date_oil_prod_report:
1278
+ type: string
1279
+ format: date
1280
+ description: Complete production date for oil