-
Notifications
You must be signed in to change notification settings - Fork 1
/
definitions.yaml
1889 lines (1867 loc) · 58.4 KB
/
definitions.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# OpenAPI version identifier - required for OpenAPI 3.0 domains
openapi: 3.0.0
#######################
# Optional info section
#######################
info:
title: INGV Definitions
description: Common components for INGV REST APIs
version: '1.0.0'
components:
####################
# Common data models
####################
schemas:
id:
type: integer
description: Unique incremental id | bigint(20)
format: int64
example: 14932631
id__READONLY:
type: integer
description: Unique incremental id | bigint(20)
format: int64
readOnly: true
example: 14932631
modified:
type: string
format: date-time
readOnly: true
description: Last Review | timestamp
example: '2016-06-22T16:52:06.260Z'
inserted:
type: string
format: date-time
readOnly: true
description: Insert time | timestamp
example: '2016-06-22T16:52:06.260Z'
fk_type_origin:
type: integer
description: 'Link: type_origin | bigint(20)'
format: int64
example: 0
fk_type_event:
type: integer
description: ' | bigint(20)'
format: int64
example: 697
default: 1
fk_provenance:
type: integer
description: 'Link: provenance | bigint(20)'
format: int64
example: 13
id_localspace:
type: integer
description: Localspace Id | bigint(19)
format: int64
example: 182491
default: null
nullable: true
id_localspace__WRITEONLY:
type: integer
description: Localspace Id | bigint(19)
format: int64
example: 182491
default: null
nullable: true
writeOnly: true
event__fk_event_group__READONLY:
type: integer
description: Link event group | bigint(20)
format: int64
readOnly: true
default: 0
event__fk_event_group:
type: integer
description: Link event group | bigint(20)
format: int64
default: 0
event__fk_event_group__FOR_PATCH:
type: integer
description: Link event group | bigint(20)
format: int64
event__fk_origin_preferred__READONLY:
type: integer
description: 'Link: preferred origin. It can be NULL. | bigint(20)'
format: int64
readOnly: true
default: null
nullable: true
event__fk_origin_preferred:
type: integer
description: 'Link: preferred origin. It can be NULL. | bigint(20)'
format: int64
default: null
nullable: true
event__fk_magnitude_preferred__READONLY:
type: integer
description: 'Link: preferred magnitude. It can be NULL. | bigint(20)'
format: int64
readOnly: true
default: null
nullable: true
event__fk_magnitude_preferred:
type: integer
description: 'Link: preferred magnitude. It can be NULL. | bigint(20)'
format: int64
default: null
nullable: true
event__fk_focalmechanism_preferred__READONLY:
type: integer
description: 'Link: preferred focalmechanism. It can be NULL. | bigint(20)'
format: int64
readOnly: true
default: null
nullable: true
event__fk_focalmechanism_preferred:
type: integer
description: 'Link: preferred focalmechanism. It can be NULL. | bigint(20)'
format: int64
default: null
nullable: true
event__type_group:
type: integer
description: Group type. Used by clustering algorithm | tinyint(4)
format: int64
readOnly: true
default: 0
origin__ot:
type: string
format: date-time
description: Origin time | datetime(3)
example: '2016-06-22T16:52:06.260Z'
depth:
type: number
description: Depth in Km | double
format: double
example: 0.02
status:
#From here: $ref: 'https://teamdigitale.github.io/openapi/v0.1.0/definitions.yaml#/components/schemas/Problem/properties/status'
description: |
The HTTP status code generated by the origin server for this occurrence
of the problem.
example: 503
exclusiveMaximum: true
format: int32
maximum: 600
minimum: 100
type: integer
title:
#From here: $ref: 'https://teamdigitale.github.io/openapi/v0.1.0/definitions.yaml#/components/schemas/Problem/properties/title'
description: |
A short, summary of the problem type. Written in english and readable
for engineers (usually not suited for non technical stakeholders and
not localized): the expressed pattern does not support unicode characters.
example: Service Unavailable
maxLength: 64
pattern: ^[ -~]{0,64}$
type: string
detail:
#From here: $ref: 'https://teamdigitale.github.io/openapi/v0.1.0/definitions.yaml#/components/schemas/Problem/properties/detail'
description: |
A human readable explanation specific to this occurrence of the
problem. You MUST NOT expose internal informations, personal
data or implementation details through this field.
`detail` supports localized patterns whereas `title` pattern is only in ascii.
example: Request took too long to complete.
maxLength: 4096
pattern: ^.{0,1024}$
type: string
latitude:
$ref: 'https://teamdigitale.github.io/openapi/v0.1.0/definitions.yaml#/components/schemas/Latitude'
longitude:
$ref: 'https://teamdigitale.github.io/openapi/v0.1.0/definitions.yaml#/components/schemas/Longitude'
Problem:
$ref: 'https://teamdigitale.github.io/openapi/v0.1.0/definitions.yaml#/components/schemas/Problem'
standard_dev:
type: number
description: Standard deviation SQRT[ rms / (n - 1) ] | double
format: double
example: 0.53
associatedPhaseCount:
type: integer
description: Number of associated phases, regardless of their use for origin computation | int(8)'
format: int64
associatedStationCount:
type: integer
description: Number of stations at which the event was observed | int(8)'
format: int64
usedPhaseCount:
type: integer
description: Number of defining phases, i.e., phase observations that were actually used for computing the origin | int(8)'
format: int64
usedStationCount:
type: integer
description: Number of stations from which data was used for origin computation | int(8)'
format: int64
origin__nph:
type: integer
description: '# arrivals (P&S) weight >0.1 | int(11)'
format: int64
origin__nph_s:
type: integer
description: '# S arrivals weight >0.1 | int(11)'
format: int64
origin__nph_tot:
type: integer
description: '# arrivals (P&S) weight >0.0 | int(11)'
format: int64
origin__nph_fm:
type: integer
description: '# P first motions | int(11)'
format: int64
origin__is_centroid:
type: boolean
description: true if it is a centroi | boolean
example: false
default: false
origin__sec_azim_gap:
type: number
description: Secondary Azimutal gap | double
format: float
origin__err_depth:
type: number
description: Depth error | double
format: double
origin__err_lat:
type: number
description: Latitude error (km) | double
format: double
origin__err_lon:
type: number
description: Longitude error (km) | double
format: double
err_lat_deg:
type: number
readOnly: true
description: Latitude error (deg) | double
format: double
err_lon_deg:
type: number
readOnly: true
description: Longitude error (deg) | double
format: double
azimutal_gap:
type: number
description: Azimutal gap | float4
format: float
origin__rms:
type: number
description: Root mean square | double
format: double
origin__e0_az:
type: number
description: azimuth of largest principal error | double
format: float
origin__min_distance:
type: number
description: Distance from the closest station (km) | double
format: double
origin__med_distance:
type: number
description: Median distance from the epicenter to the used stations (km) | double
format: double
origin__max_distance:
type: number
description: Distance from the furthest station (km) | double
format: double
origin__w_rms:
type: number
description: Root mean square Weighted | double
format: double
origin__e0_dip:
type: number
description: dip of largest principal error | double
format: double
origin__e0:
type: number
description: largest principal error | double
format: double
origin__e1_az:
type: number
description: azimuth of intermediate principal error | double
format: float
origin__e1_dip:
type: number
description: dip of intermediate principal error | double
format: double
origin__e1:
type: number
description: intermed principal error | double
format: double
origin__e2_az:
type: number
description: azimuth of smallest principal error | double
format: float
origin__e2_dip:
type: integer
description: dip of smallest principal error | double
format: int64
origin__e2:
type: number
description: smallest principal error | double
format: double
origin__err_h:
type: number
description: Horizontal error (km) | double
format: double
origin__err_z:
type: number
description: Depth error (km) | double
format: double
origin__err_ot:
type: number
description: Origin time error | double
format: double
origin__fix_depth:
type: boolean
description: true if depth is fixed | boolean
example: false
default: false
confidence_level:
type: number
description: Integer numer for confidence level type (68.3 1 sigma, xx =2 sigma, 99% 3 sigma) | decimal(5.2)
format: float
example: 68.3
default: 68.3
origin__quality:
type: string
description: Quality of the localization | char(2)
example: AB
origin__quality_numeric:
type: integer
description: Quality as numeric value | int(10)
example: 12
format: int64
environment:
description: Environment (es:development, testing, staging, production, external, catalog, generic) | varchar(255)
type: string
example: development
default: development
enum:
- development
- testing
- staging
- production
- external
- catalog
- generic
type_origin__name:
description: type_origin by QuakeML definition (es:hypocenter,centroid,macroseismic,..) | varchar(255)
type: string
example: hypocenter
default: hypocenter
enum:
- hypocenter
- centroid
- amplitude
- macroseismic
- rupture start
- rupture end
type_origin__version_name:
description: Localization name (es:ew prelim,XX,WW,..) | varchar(255)
type: string
example: ew prelim
type_origin__version_name__READONLY:
description: Localization name (es:ew prelim,XX,WW,..) | varchar(255)
type: string
example: ew prelim
readOnly: true
##########################
## Purtroppo ho dovuto duplicare questo campo in quanto se avessi usato l'ereditarieta tipo:
#type_origin__version_value:
# readOnly: true
# allOf:
# - $ref: '#/components/schemas/type_origin__version_value'
#
## poi la generazione della Classi Java da SwaggerHub non funzionava.
## Da riprovare piu' avanti.
type_origin__version_value:
type: integer
description: Define a numeric value for type origin. < 100 is automatic location | bigint(20)
format: int64
type_origin__version_value__READONLY:
type: integer
description: Define a numeric value for type origin. < 100 is automatic location | bigint(20)
format: int64
readOnly: true
##########################
description:
type: string
description: Additional information | char(255)
example: Auto added
default: null
nullable: true
description__READONLY:
type: string
description: Additional information | char(255)
example: Auto added
default: null
nullable: true
readOnly: true
note:
type: string
description: Additional information | char(255)
example: my note
default: null
nullable: true
net:
type: string
description: Channel net code | char(2)
example: IV
sta:
type: string
description: Channel station code | varchar(5)
example: ACER
cha:
type: string
description: Channel code | char(3)
example: HHZ
loc:
type: string
description: Channel location | char(2)
example: '00'
default: '--'
focalmechanism__strike1:
type: integer
format: int32
description: strike focal plane n.1 | int(10)
example: 34
nullable: true
focalmechanism__dip1:
type: integer
format: int32
description: dip focal plane n.1 | int(10)
example: 50
nullable: true
focalmechanism__rake1:
type: integer
format: int32
description: rake focal plane n.1 | int(10)
example: 88
nullable: true
focalmechanism__strike2:
type: integer
format: int32
description: strike focal plane n.2 | int(10)
example: 218
nullable: true
focalmechanism__dip2:
type: integer
format: int32
description: dip focal plane n.2 | int(10)
example: 40
nullable: true
focalmechanism__rake2:
type: integer
format: int32
description: rake focal plane n.2 | int(10)
example: 93
nullable: true
focalmechanism__azim_gap:
type: number
format: float
description: Largest azim gap as seen from epicenter | double(22)
nullable: true
focalmechanism__nsta_polarity:
type: integer
format: int32
description: Number of station polarities used for determination | int(10)
nullable: true
focalmechanism__misfit:
type: number
format: double
description: Fraction of misfit polarities [0,1] | double(22)
nullable: true
focalmechanism__stdr:
type: number
format: double
description: Station distribution ratio parameter [0,1] | double(22)
nullable: true
focalmechanism__rms_ang_diff_acc_pref:
type: number
format: double
description: rms_ang_diff_acc_pref | double(22)
focalmechanism__frac_acc_30deg_pref:
type: number
format: double
description: frac_acc_30deg_pref | double(22)
nullable: true
focalmechanism__quality:
type: string
description: quality | char(2)
example: Ba
default: null
nullable: true
url:
type: string
description: External URL Reference | varchar(512)
example: 'http://mysite'
default: null
nullable: true
momenttensor__scalarmoment:
type: number
format: double
description: Scalar moment as derived in moment tensor inversion. Unit, Nm | double(22)
example: 16607495309062.705
default: null
nullable: true
momenttensor__variance_reduction:
type: number
format: double
description: Variance reduction of moment tensor inversion, given in percent (Dreger 2003). This is a goodness-of-fit measure | double(22)
example: 41.15
default: null
nullable: true
momenttensor__double_couple:
type: number
format: double
description: Double couple parameter obtained from moment tensor inversion (decimal fraction between 0 and 1) | double(22)
example: 0.76
default: null
nullable: true
momenttensor__clvd:
type: number
format: double
description: CLVD (compensated linear vector dipole) parameter obtained from moment tensor inversion (decimal fraction between 0 and 1) | double(22)
example: 0.24
default: null
nullable: true
momenttensor__iso:
type: number
format: double
description: Isotropic part obtained from moment tensor inversion (decimal fraction between 0 and 1) | double(22)
example: 0
default: null
nullable: true
momenttensor__mrr:
type: number
format: double
description: mrr moment tensor component | double(22)
example: 80.956
default: null
nullable: true
momenttensor__mtt:
type: number
format: double
description: mtt moment tensor component | double(22)
example: -25.017
default: null
nullable: true
momenttensor__mpp:
type: number
format: double
description: mpp moment tensor component | double(22)
example: -55.939
default: null
nullable: true
momenttensor__mrt:
type: number
format: double
description: mrt moment tensor component | double(22)
example: 7.048
default: null
nullable: true
momenttensor__mrp:
type: number
format: double
description: mrp moment tensor component | double(22)
example: 13.494
default: null
nullable: true
momenttensor__mtp:
type: number
format: double
description: mtp moment tensor component | double(22)
example: -49.466
default: null
nullable: true
magnitude:
type: number
description: Magnitude | double
format: double
magnitude__mag:
type: number
description: Magnitude value | double
format: double
example: 3.01
magnitude__lower_uncertainty:
type: number
description: Magnitude lower_uncertainty | double
format: double
example: 0.52
magnitude__upper_uncertainty:
type: number
description: Magnitude upper_uncertainty | double
format: double
example: 0.53
magnitude__quality:
type: number
description: quality | double
format: double
magnitude__min_dist:
type: number
description: Minimal distance from station to origin | double
format: double
magnitude__nsta:
type: integer
description: Number of the stations on magnitudo calculation | int(11)
format: int64
magnitude__ncha:
type: integer
description: Number of the channel on magnitudo calculation | int(11)
format: int64
magnitude__nsta_used:
type: integer
description: Number of the stations used on magnitudo calculation | int(11)
format: int64
example: 9
magnitude__ncha_used:
type: integer
description: Number of the channels used on magnitude calculation | int(11)
format: int64
example: 27
magnitude__mag_quality:
type: string
description: INGV quality code of the magnitude (computed by ew2moledb) | char(2)
example: BB
scnl__net:
type: string
description: Channel net code | char(2)
example: IV
scnl__sta:
type: string
description: Channel station code | varchar(5)
example: ACER
scnl__cha:
type: string
description: Channel code | char(3)
example: HHZ
scnl__loc:
type: string
description: Channel location | char(2)
example: '00'
default: '--'
scnl__lat:
type: number
format: double
description: latitude | float(8,8)
example: -19.755530
scnl__lon:
type: number
format: double
description: longitude | float(8,8)
example: 63.370140
scnl__elev:
type: number
format: double
description: elevation | float(8,8)
example: 19.1
pick__arrival_time:
type: string
format: date-time
description: Arrival time with microseconds | datetime(3)
example: '2017-04-12T08:46:30.930Z'
pick__pick_quality_class:
type: integer
description: Pick quality class | bigint
format: int32
example: 3
pick__lower_uncertainty:
type: number
description: Uncertainty as the absolute value of deviation from the mainvalue towards smaller values. | decimal(8,3)
format: float
example: 0.52
default: null
nullable: true
pick__upper_uncertainty:
type: number
description: Uncertainty as the absolute value of deviation from the mainvalue towards larger values. | decimal(8,3)
format: float
example: 0.53
default: null
nullable: true
pick__firstmotion:
type: string
nullable: true
description: First motion polarity associated with the pick | varchar(1)
example: D
default: null
enum:
- U
- D
- null
pick__emersio:
type: string
nullable: true
description: Impulsive or emersio, pamp description | varchar(1)
example: E
default: null
enum:
- E
- I
- null
pickew__pamp:
type: number
description: peak P-wave half amplitude | double(22)
format: float
example: 283
default: null
nullable: true
pick_ew_coda__ccntr_0:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__ccntr_1:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__ccntr_2:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__ccntr_3:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__ccntr_4:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__ccntr_5:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__caav_0:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__caav_1:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__caav_2:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__caav_3:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__caav_4:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
pick_ew_coda__caav_5:
type: integer
description: peak P-wave half amplitude | int(11)
format: int64
arrival__isc_code:
type: string
description: ISC arrival code | varchar(8)
example: S
type_magnitude__name:
type: string
description: Type of the magnitude | varchar(255)
example: ML-VAX
type_magnitude__minmag:
type: number
format: float
description: Minimum magnitude value | float(4)
example: 1.2
type_magnitude__maxmag:
type: number
format: float
description: Maximum magnitude value | float(4)
example: 2.2
type_magnitude__minreadings:
type: integer
format: int32
description: Minimum number of readings | int(8)
origin_flag__name:
type: string
description: Flag name | varchar(255)
example: DPC
origin_flag__value:
type: number
format: float
description: Value associated to the flag | int
example: 1
arrival-stationmagnitude-st_dur_mag__ep_distance:
type: number
description: Distance from epicenter of the station | double
format: float
example: 694
arrival-stationmagnitude-st_dur_mag__azimut:
type: number
description: Station origin azimut | double
format: float
example: 161
arrival-stationmagnitude-st_dur_mag__orig_distance_km:
type: number
description: Distance from origin of the station (km) | double
format: double
example: 161
default: null
nullable: true
arrival__take_off:
type: number
description: Take off angle | double
format: float
example: 94
arrival__polarity_is_used:
type: boolean
description: 1 if it is used for polarity calculation | boolean
example: false
default: null
nullable: true
arrival__arr_time_is_used:
type: boolean
description: 1 if it is used for origin calculation | boolean
example: false
default: null
nullable: true
arrival__residual:
type: number
description: Residual | double
format: double
example: 6.19
weight:
type: number
description: Weight | double
format: double
example: 0.88
stationmagnitude-st_dur_mag__polarity_is_used:
type: boolean
description: true if used | boolean
example: false
default: false
st_dur_mag__dur:
type: number
description: ' Coda duration in seconds | double'
format: double
example: 6
st_dur_mag__mag:
type: number
description: Duration magnitude value | double
format: double
example: 0.8
stationmagnitude__mag:
type: number
description: Amplitude magnitude value | double
format: double
example: 3.04
stationmagnitude__mag_correction:
type: number
description: magnitude correction | double
format: double
example: 0
stationmagnitude-st_dur_mag__err_mag:
type: number
description: magnitude error | double
format: double
ep_distance_km:
type: number
description: Distance from epicenter of the station expressed in Km | double
format: float
example: 223.3
orig_distance_km:
type: number
description: Distance from ipocenter of the station expressed in Km | double
format: float
example: 253.3
ep_distance_delta:
type: number
description: Distance from epicenter of the station expressed in Degrees | double
format: float
example: 2
amplitude__time1:
type: string
format: date-time
description: ' | datetime(3)'
example: '2017-04-28T06:34:15.350Z'
amplitude__amp1:
type: number
description: Amplitude value | double
format: double
example: -0.358
amplitude__period:
type: number
description: Amlitude period | double
format: double
amplitude__time2:
type: string
format: date-time
description: ' | datetime(3)'
example: '2017-04-28T06:34:15.850Z'
amplitude__amp2:
type: number
description: Amplitude value | double
format: double
example: 0.292
amplitude__revised:
type: integer
description: Dichiara se tale ampiezza è stata rivista dall'analista, eventualmente anche non modificata, oppure no. (1/0, true/false) | tinyint(3)
format: int32
example: 0
strongmotion__t_dt:
type: string
format: date-time
description: 'time: trigger reported by SM box - datetime part | datetime(6)'
example: '2017-04-12T08:46:56.190Z'
strongmotion__pga:
type: number
description: 'REQUIRED: peak ground acceleration (cm/s/s) | double'
format: float
example: 0.000162
strongmotion__tpga_dt:
type: string
format: date-time
description: 'OPTIONAL: time of pga - datetime part | datetime(3)'
example: '2017-04-12T08:47:06.990Z'
strongmotion__pgv:
type: number
description: 'REQUIRED: peak ground velocity (cm/s) | double'
format: float
example: 0.000034
strongmotion__tpgv_dt:
type: string
format: date-time
description: 'OPTIONAL: time of pgv - datetime part | datetime(3)'
example: '2017-04-12T08:46:56.190Z'
strongmotion__pgd:
type: number
description: 'REQUIRED: peak ground displacement (cm) | double'
format: float
example: 0.000025
strongmotion__tpgd_dt:
type: string
format: date-time
description: 'OPTIONAL: time of pgd - datetime part | datetime(3)'
example: '2017-04-12T08:46:59.989Z'
strongmotion__rsa_030:
type: number
format: float
description: RSA(response spectrum accel) value for period 0.30 | double
example: 0.02604
strongmotion__rsa_100:
type: number
format: float
description: RSA(response spectrum accel) value for period 1.00 | double
example: 0.003673
strongmotion__rsa_300:
type: number
format: float
description: RSA(response spectrum accel) value for period 3.00 | double
example: 0.000339
strongmotion_alt__t_alt_dt:
type: string
format: date-time
description: 'alternate time: trigger reported by SM box - time with microseconds | datetime(3)'
strongmotion_alt__altcode:
type: integer
format: int64
description: code specifying the source of the alternate time field | int(11)
example: 0
strongmotion_rsa__value:
type: number
format: double
description: RSA value (cm/s/s) at given period | double
example: 1.5
strongmotion_rsa__period:
type: number
format: double
description: period (s) at which RSA values are given | double
example: 0.000096
type_event__name:
type: string
description: Name | varchar(255)
example: earthquake
origin_region_name__region:
type: string
description: Event location remark region | varchar(255)
example: Norcia
flags:
type: string
description: Flags for origin | varchar(255)
readOnly: true
example: DPC,twitter,shakemap4,FM
localspace__name:
type: string
description: 'Localspace name. i.e. hew1_mole, endeavour_mole | char(255)'
example: hew1_mole
provenance__model:
type: string
description: Name/URI/DOI of the model | varchar(255)