@dmdata/telegram-json-types 1.0.8 → 1.0.9-jschema.0

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,3891 @@
1
+ {
2
+ "anyOf": [
3
+ {
4
+ "$ref": "#/definitions/TsunamiInformation.PublicVTSE41"
5
+ },
6
+ {
7
+ "$ref": "#/definitions/TsunamiInformation.PublicVTSE51"
8
+ },
9
+ {
10
+ "$ref": "#/definitions/TsunamiInformation.PublicVTSE52"
11
+ },
12
+ {
13
+ "$ref": "#/definitions/TsunamiInformation.Channel"
14
+ }
15
+ ],
16
+ "definitions": {
17
+ "EarthquakeInformation.PublicVXSE51": {
18
+ "type": "object",
19
+ "properties": {
20
+ "_schema": {
21
+ "$ref": "#/definitions/EarthquakeInformation.Schema"
22
+ },
23
+ "type": {
24
+ "type": "string",
25
+ "enum": [
26
+ "震度速報"
27
+ ]
28
+ },
29
+ "title": {
30
+ "type": "string",
31
+ "enum": [
32
+ "震度速報"
33
+ ]
34
+ },
35
+ "infoKind": {
36
+ "type": "string",
37
+ "enum": [
38
+ "震度速報"
39
+ ]
40
+ },
41
+ "eventId": {
42
+ "type": "string"
43
+ },
44
+ "serialNo": {
45
+ "type": "null"
46
+ },
47
+ "infoType": {
48
+ "enum": [
49
+ "発表",
50
+ "訂正"
51
+ ],
52
+ "type": "string"
53
+ },
54
+ "body": {
55
+ "$ref": "#/definitions/EarthquakeInformation.PublicBodyVXSE51"
56
+ },
57
+ "_originalId": {
58
+ "type": "string"
59
+ },
60
+ "status": {
61
+ "enum": [
62
+ "訓練",
63
+ "試験",
64
+ "通常"
65
+ ],
66
+ "type": "string"
67
+ },
68
+ "editorialOffice": {
69
+ "type": "string"
70
+ },
71
+ "publishingOffice": {
72
+ "type": "array",
73
+ "items": {
74
+ "type": "string"
75
+ }
76
+ },
77
+ "pressDateTime": {
78
+ "type": "string"
79
+ },
80
+ "reportDateTime": {
81
+ "type": "string"
82
+ },
83
+ "targetDateTime": {
84
+ "type": "string"
85
+ },
86
+ "targetDateTimeDubious": {
87
+ "type": "string"
88
+ },
89
+ "targetDuration": {
90
+ "type": "string"
91
+ },
92
+ "validDateTime": {
93
+ "type": "string"
94
+ },
95
+ "infoKindVersion": {
96
+ "type": "string"
97
+ },
98
+ "headline": {
99
+ "type": [
100
+ "null",
101
+ "string"
102
+ ]
103
+ }
104
+ },
105
+ "required": [
106
+ "_originalId",
107
+ "_schema",
108
+ "body",
109
+ "editorialOffice",
110
+ "eventId",
111
+ "headline",
112
+ "infoKind",
113
+ "infoKindVersion",
114
+ "infoType",
115
+ "pressDateTime",
116
+ "publishingOffice",
117
+ "reportDateTime",
118
+ "serialNo",
119
+ "status",
120
+ "targetDateTime",
121
+ "title",
122
+ "type"
123
+ ]
124
+ },
125
+ "EarthquakeInformation.Schema": {
126
+ "type": "object",
127
+ "properties": {
128
+ "type": {
129
+ "type": "string",
130
+ "enum": [
131
+ "earthquake-information"
132
+ ]
133
+ },
134
+ "version": {
135
+ "type": "string",
136
+ "enum": [
137
+ "1.1.0"
138
+ ]
139
+ }
140
+ },
141
+ "required": [
142
+ "type",
143
+ "version"
144
+ ]
145
+ },
146
+ "EarthquakeInformation.PublicBodyVXSE51": {
147
+ "type": "object",
148
+ "properties": {
149
+ "intensity": {
150
+ "type": "object",
151
+ "properties": {
152
+ "maxInt": {
153
+ "$ref": "#/definitions/EarthquakeInformation.IntensityClass"
154
+ },
155
+ "prefectures": {
156
+ "type": "array",
157
+ "items": {
158
+ "type": "object",
159
+ "properties": {
160
+ "name": {
161
+ "type": "string"
162
+ },
163
+ "code": {
164
+ "type": "string"
165
+ },
166
+ "maxInt": {
167
+ "$ref": "#/definitions/EarthquakeInformation.IntensityClass"
168
+ }
169
+ },
170
+ "required": [
171
+ "code",
172
+ "maxInt",
173
+ "name"
174
+ ]
175
+ }
176
+ },
177
+ "regions": {
178
+ "type": "array",
179
+ "items": {
180
+ "type": "object",
181
+ "properties": {
182
+ "name": {
183
+ "type": "string"
184
+ },
185
+ "code": {
186
+ "type": "string"
187
+ },
188
+ "maxInt": {
189
+ "$ref": "#/definitions/EarthquakeInformation.IntensityClass"
190
+ }
191
+ },
192
+ "required": [
193
+ "code",
194
+ "maxInt",
195
+ "name"
196
+ ]
197
+ }
198
+ }
199
+ },
200
+ "required": [
201
+ "maxInt",
202
+ "prefectures",
203
+ "regions"
204
+ ]
205
+ },
206
+ "text": {
207
+ "type": "string"
208
+ },
209
+ "comments": {
210
+ "$ref": "#/definitions/Omit<EarthquakeInformation.Comment,\"var\">"
211
+ }
212
+ },
213
+ "required": [
214
+ "comments",
215
+ "intensity"
216
+ ]
217
+ },
218
+ "EarthquakeInformation.IntensityClass": {
219
+ "enum": [
220
+ "1",
221
+ "2",
222
+ "3",
223
+ "4",
224
+ "5+",
225
+ "5-",
226
+ "6+",
227
+ "6-",
228
+ "7"
229
+ ],
230
+ "type": "string"
231
+ },
232
+ "Omit<EarthquakeInformation.Comment,\"var\">": {
233
+ "type": "object",
234
+ "properties": {
235
+ "free": {
236
+ "type": "string"
237
+ },
238
+ "forecast": {
239
+ "type": "object",
240
+ "properties": {
241
+ "text": {
242
+ "type": "string"
243
+ },
244
+ "codes": {
245
+ "type": "array",
246
+ "items": {
247
+ "type": "string"
248
+ }
249
+ }
250
+ },
251
+ "required": [
252
+ "codes",
253
+ "text"
254
+ ]
255
+ }
256
+ }
257
+ },
258
+ "EarthquakeInformation.PublicVXSE52": {
259
+ "type": "object",
260
+ "properties": {
261
+ "_schema": {
262
+ "$ref": "#/definitions/EarthquakeInformation.Schema"
263
+ },
264
+ "type": {
265
+ "type": "string",
266
+ "enum": [
267
+ "震源に関する情報"
268
+ ]
269
+ },
270
+ "title": {
271
+ "type": "string",
272
+ "enum": [
273
+ "震源に関する情報"
274
+ ]
275
+ },
276
+ "infoKind": {
277
+ "type": "string",
278
+ "enum": [
279
+ "震源速報"
280
+ ]
281
+ },
282
+ "eventId": {
283
+ "type": "string"
284
+ },
285
+ "serialNo": {
286
+ "type": "null"
287
+ },
288
+ "infoType": {
289
+ "enum": [
290
+ "発表",
291
+ "訂正"
292
+ ],
293
+ "type": "string"
294
+ },
295
+ "body": {
296
+ "$ref": "#/definitions/EarthquakeInformation.PublicBodyVXSE52"
297
+ },
298
+ "_originalId": {
299
+ "type": "string"
300
+ },
301
+ "status": {
302
+ "enum": [
303
+ "訓練",
304
+ "試験",
305
+ "通常"
306
+ ],
307
+ "type": "string"
308
+ },
309
+ "editorialOffice": {
310
+ "type": "string"
311
+ },
312
+ "publishingOffice": {
313
+ "type": "array",
314
+ "items": {
315
+ "type": "string"
316
+ }
317
+ },
318
+ "pressDateTime": {
319
+ "type": "string"
320
+ },
321
+ "reportDateTime": {
322
+ "type": "string"
323
+ },
324
+ "targetDateTime": {
325
+ "type": "string"
326
+ },
327
+ "targetDateTimeDubious": {
328
+ "type": "string"
329
+ },
330
+ "targetDuration": {
331
+ "type": "string"
332
+ },
333
+ "validDateTime": {
334
+ "type": "string"
335
+ },
336
+ "infoKindVersion": {
337
+ "type": "string"
338
+ },
339
+ "headline": {
340
+ "type": [
341
+ "null",
342
+ "string"
343
+ ]
344
+ }
345
+ },
346
+ "required": [
347
+ "_originalId",
348
+ "_schema",
349
+ "body",
350
+ "editorialOffice",
351
+ "eventId",
352
+ "headline",
353
+ "infoKind",
354
+ "infoKindVersion",
355
+ "infoType",
356
+ "pressDateTime",
357
+ "publishingOffice",
358
+ "reportDateTime",
359
+ "serialNo",
360
+ "status",
361
+ "targetDateTime",
362
+ "title",
363
+ "type"
364
+ ]
365
+ },
366
+ "EarthquakeInformation.PublicBodyVXSE52": {
367
+ "type": "object",
368
+ "properties": {
369
+ "earthquake": {
370
+ "$ref": "#/definitions/Earthquake"
371
+ },
372
+ "text": {
373
+ "type": "string"
374
+ },
375
+ "comments": {
376
+ "$ref": "#/definitions/Omit<EarthquakeInformation.Comment,\"var\">"
377
+ }
378
+ },
379
+ "required": [
380
+ "comments",
381
+ "earthquake"
382
+ ]
383
+ },
384
+ "Earthquake": {
385
+ "type": "object",
386
+ "properties": {
387
+ "originTime": {
388
+ "type": "string"
389
+ },
390
+ "arrivalTime": {
391
+ "type": "string"
392
+ },
393
+ "hypocenter": {
394
+ "type": "object",
395
+ "properties": {
396
+ "name": {
397
+ "type": "string"
398
+ },
399
+ "code": {
400
+ "type": "string"
401
+ },
402
+ "coordinate": {
403
+ "anyOf": [
404
+ {
405
+ "type": "object",
406
+ "properties": {
407
+ "condition": {
408
+ "type": "string",
409
+ "enum": [
410
+ "不明"
411
+ ]
412
+ }
413
+ },
414
+ "required": [
415
+ "condition"
416
+ ]
417
+ },
418
+ {
419
+ "type": "object",
420
+ "properties": {
421
+ "latitude": {
422
+ "type": "object",
423
+ "properties": {
424
+ "text": {
425
+ "type": "string"
426
+ },
427
+ "value": {
428
+ "type": "string"
429
+ }
430
+ },
431
+ "required": [
432
+ "text",
433
+ "value"
434
+ ]
435
+ },
436
+ "longitude": {
437
+ "type": "object",
438
+ "properties": {
439
+ "text": {
440
+ "type": "string"
441
+ },
442
+ "value": {
443
+ "type": "string"
444
+ }
445
+ },
446
+ "required": [
447
+ "text",
448
+ "value"
449
+ ]
450
+ },
451
+ "height": {
452
+ "type": "object",
453
+ "properties": {
454
+ "type": {
455
+ "type": "string",
456
+ "enum": [
457
+ "深さ"
458
+ ]
459
+ },
460
+ "unit": {
461
+ "type": "string",
462
+ "enum": [
463
+ "km"
464
+ ]
465
+ },
466
+ "value": {
467
+ "type": [
468
+ "null",
469
+ "string"
470
+ ]
471
+ }
472
+ },
473
+ "required": [
474
+ "type",
475
+ "unit",
476
+ "value"
477
+ ]
478
+ },
479
+ "condition": {
480
+ "type": "undefined"
481
+ },
482
+ "geodeticSystem": {
483
+ "enum": [
484
+ "日本測地系"
485
+ ],
486
+ "type": "string"
487
+ }
488
+ },
489
+ "required": [
490
+ "condition",
491
+ "latitude",
492
+ "longitude"
493
+ ]
494
+ }
495
+ ]
496
+ },
497
+ "depth": {
498
+ "anyOf": [
499
+ {
500
+ "allOf": [
501
+ {
502
+ "type": "object",
503
+ "properties": {
504
+ "type": {
505
+ "type": "string",
506
+ "enum": [
507
+ "深さ"
508
+ ]
509
+ },
510
+ "unit": {
511
+ "type": "string",
512
+ "enum": [
513
+ "km"
514
+ ]
515
+ }
516
+ },
517
+ "required": [
518
+ "type",
519
+ "unit"
520
+ ]
521
+ },
522
+ {
523
+ "type": "object",
524
+ "properties": {
525
+ "value": {
526
+ "type": "null"
527
+ },
528
+ "condition": {
529
+ "type": "string",
530
+ "enum": [
531
+ "不明"
532
+ ]
533
+ }
534
+ },
535
+ "required": [
536
+ "condition",
537
+ "value"
538
+ ]
539
+ }
540
+ ]
541
+ },
542
+ {
543
+ "allOf": [
544
+ {
545
+ "type": "object",
546
+ "properties": {
547
+ "type": {
548
+ "type": "string",
549
+ "enum": [
550
+ "深さ"
551
+ ]
552
+ },
553
+ "unit": {
554
+ "type": "string",
555
+ "enum": [
556
+ "km"
557
+ ]
558
+ }
559
+ },
560
+ "required": [
561
+ "type",
562
+ "unit"
563
+ ]
564
+ },
565
+ {
566
+ "type": "object",
567
+ "properties": {
568
+ "value": {
569
+ "type": "string",
570
+ "enum": [
571
+ "0"
572
+ ]
573
+ },
574
+ "condition": {
575
+ "type": "string",
576
+ "enum": [
577
+ "ごく浅い"
578
+ ]
579
+ }
580
+ },
581
+ "required": [
582
+ "condition",
583
+ "value"
584
+ ]
585
+ }
586
+ ]
587
+ },
588
+ {
589
+ "allOf": [
590
+ {
591
+ "type": "object",
592
+ "properties": {
593
+ "type": {
594
+ "type": "string",
595
+ "enum": [
596
+ "深さ"
597
+ ]
598
+ },
599
+ "unit": {
600
+ "type": "string",
601
+ "enum": [
602
+ "km"
603
+ ]
604
+ }
605
+ },
606
+ "required": [
607
+ "type",
608
+ "unit"
609
+ ]
610
+ },
611
+ {
612
+ "type": "object",
613
+ "properties": {
614
+ "value": {
615
+ "type": "string",
616
+ "enum": [
617
+ "700"
618
+ ]
619
+ },
620
+ "condition": {
621
+ "type": "string",
622
+ "enum": [
623
+ "700km以上"
624
+ ]
625
+ }
626
+ },
627
+ "required": [
628
+ "condition",
629
+ "value"
630
+ ]
631
+ }
632
+ ]
633
+ },
634
+ {
635
+ "allOf": [
636
+ {
637
+ "type": "object",
638
+ "properties": {
639
+ "type": {
640
+ "type": "string",
641
+ "enum": [
642
+ "深さ"
643
+ ]
644
+ },
645
+ "unit": {
646
+ "type": "string",
647
+ "enum": [
648
+ "km"
649
+ ]
650
+ }
651
+ },
652
+ "required": [
653
+ "type",
654
+ "unit"
655
+ ]
656
+ },
657
+ {
658
+ "type": "object",
659
+ "properties": {
660
+ "value": {
661
+ "type": "string"
662
+ }
663
+ },
664
+ "required": [
665
+ "value"
666
+ ]
667
+ }
668
+ ]
669
+ }
670
+ ]
671
+ },
672
+ "detailed": {
673
+ "type": "object",
674
+ "properties": {
675
+ "code": {
676
+ "type": "string"
677
+ },
678
+ "name": {
679
+ "type": "string"
680
+ }
681
+ },
682
+ "required": [
683
+ "code",
684
+ "name"
685
+ ]
686
+ },
687
+ "auxiliary": {
688
+ "type": "object",
689
+ "properties": {
690
+ "text": {
691
+ "type": "string"
692
+ },
693
+ "code": {
694
+ "type": "string"
695
+ },
696
+ "name": {
697
+ "type": "string"
698
+ },
699
+ "direction": {
700
+ "type": "string"
701
+ },
702
+ "distance": {
703
+ "$ref": "#/definitions/Omit<UnitValueNotNull<never,\"km\",never>,\"type\"|\"condition\">"
704
+ }
705
+ },
706
+ "required": [
707
+ "code",
708
+ "direction",
709
+ "distance",
710
+ "name",
711
+ "text"
712
+ ]
713
+ },
714
+ "source": {
715
+ "enum": [
716
+ "PTWC",
717
+ "USGS",
718
+ "WCATWC"
719
+ ],
720
+ "type": "string"
721
+ }
722
+ },
723
+ "required": [
724
+ "code",
725
+ "coordinate",
726
+ "depth",
727
+ "name"
728
+ ]
729
+ },
730
+ "magnitude": {
731
+ "anyOf": [
732
+ {
733
+ "allOf": [
734
+ {
735
+ "type": "object",
736
+ "properties": {
737
+ "type": {
738
+ "type": "string",
739
+ "enum": [
740
+ "マグニチュード"
741
+ ]
742
+ },
743
+ "unit": {
744
+ "enum": [
745
+ "M",
746
+ "Mj"
747
+ ],
748
+ "type": "string"
749
+ }
750
+ },
751
+ "required": [
752
+ "type",
753
+ "unit"
754
+ ]
755
+ },
756
+ {
757
+ "type": "object",
758
+ "properties": {
759
+ "value": {
760
+ "type": "null"
761
+ },
762
+ "condition": {
763
+ "enum": [
764
+ "M不明",
765
+ "M8を超える巨大地震"
766
+ ],
767
+ "type": "string"
768
+ }
769
+ },
770
+ "required": [
771
+ "condition",
772
+ "value"
773
+ ]
774
+ }
775
+ ]
776
+ },
777
+ {
778
+ "allOf": [
779
+ {
780
+ "type": "object",
781
+ "properties": {
782
+ "type": {
783
+ "type": "string",
784
+ "enum": [
785
+ "マグニチュード"
786
+ ]
787
+ },
788
+ "unit": {
789
+ "enum": [
790
+ "M",
791
+ "Mj"
792
+ ],
793
+ "type": "string"
794
+ }
795
+ },
796
+ "required": [
797
+ "type",
798
+ "unit"
799
+ ]
800
+ },
801
+ {
802
+ "type": "object",
803
+ "properties": {
804
+ "value": {
805
+ "type": "string"
806
+ }
807
+ },
808
+ "required": [
809
+ "value"
810
+ ]
811
+ }
812
+ ]
813
+ }
814
+ ]
815
+ }
816
+ },
817
+ "required": [
818
+ "arrivalTime",
819
+ "hypocenter",
820
+ "magnitude",
821
+ "originTime"
822
+ ]
823
+ },
824
+ "Omit<UnitValueNotNull<never,\"km\",never>,\"type\"|\"condition\">": {
825
+ "type": "object",
826
+ "properties": {
827
+ "unit": {
828
+ "type": "string",
829
+ "enum": [
830
+ "km"
831
+ ]
832
+ },
833
+ "value": {
834
+ "type": "string"
835
+ }
836
+ },
837
+ "required": [
838
+ "unit",
839
+ "value"
840
+ ]
841
+ },
842
+ "EarthquakeInformation.PublicVXSE53": {
843
+ "type": "object",
844
+ "properties": {
845
+ "_schema": {
846
+ "$ref": "#/definitions/EarthquakeInformation.Schema"
847
+ },
848
+ "type": {
849
+ "type": "string",
850
+ "enum": [
851
+ "震源・震度に関する情報"
852
+ ]
853
+ },
854
+ "title": {
855
+ "enum": [
856
+ "遠地地震に関する情報",
857
+ "震源・震度情報"
858
+ ],
859
+ "type": "string"
860
+ },
861
+ "infoKind": {
862
+ "type": "string",
863
+ "enum": [
864
+ "地震情報"
865
+ ]
866
+ },
867
+ "eventId": {
868
+ "type": "string"
869
+ },
870
+ "serialNo": {
871
+ "type": "string"
872
+ },
873
+ "infoType": {
874
+ "enum": [
875
+ "発表",
876
+ "訂正"
877
+ ],
878
+ "type": "string"
879
+ },
880
+ "body": {
881
+ "$ref": "#/definitions/EarthquakeInformation.PublicBodyVXSE53"
882
+ },
883
+ "_originalId": {
884
+ "type": "string"
885
+ },
886
+ "status": {
887
+ "enum": [
888
+ "訓練",
889
+ "試験",
890
+ "通常"
891
+ ],
892
+ "type": "string"
893
+ },
894
+ "editorialOffice": {
895
+ "type": "string"
896
+ },
897
+ "publishingOffice": {
898
+ "type": "array",
899
+ "items": {
900
+ "type": "string"
901
+ }
902
+ },
903
+ "pressDateTime": {
904
+ "type": "string"
905
+ },
906
+ "reportDateTime": {
907
+ "type": "string"
908
+ },
909
+ "targetDateTime": {
910
+ "type": "string"
911
+ },
912
+ "targetDateTimeDubious": {
913
+ "type": "string"
914
+ },
915
+ "targetDuration": {
916
+ "type": "string"
917
+ },
918
+ "validDateTime": {
919
+ "type": "string"
920
+ },
921
+ "infoKindVersion": {
922
+ "type": "string"
923
+ },
924
+ "headline": {
925
+ "type": [
926
+ "null",
927
+ "string"
928
+ ]
929
+ }
930
+ },
931
+ "required": [
932
+ "_originalId",
933
+ "_schema",
934
+ "body",
935
+ "editorialOffice",
936
+ "eventId",
937
+ "headline",
938
+ "infoKind",
939
+ "infoKindVersion",
940
+ "infoType",
941
+ "pressDateTime",
942
+ "publishingOffice",
943
+ "reportDateTime",
944
+ "serialNo",
945
+ "status",
946
+ "targetDateTime",
947
+ "title",
948
+ "type"
949
+ ]
950
+ },
951
+ "EarthquakeInformation.PublicBodyVXSE53": {
952
+ "type": "object",
953
+ "properties": {
954
+ "earthquake": {
955
+ "$ref": "#/definitions/Earthquake"
956
+ },
957
+ "intensity": {
958
+ "type": "object",
959
+ "properties": {
960
+ "maxInt": {
961
+ "$ref": "#/definitions/EarthquakeInformation.IntensityClass"
962
+ },
963
+ "prefectures": {
964
+ "type": "array",
965
+ "items": {
966
+ "type": "object",
967
+ "properties": {
968
+ "name": {
969
+ "type": "string"
970
+ },
971
+ "code": {
972
+ "type": "string"
973
+ },
974
+ "maxInt": {
975
+ "enum": [
976
+ "1",
977
+ "2",
978
+ "3",
979
+ "4",
980
+ "5+",
981
+ "5-",
982
+ "6+",
983
+ "6-",
984
+ "7"
985
+ ],
986
+ "type": "string"
987
+ },
988
+ "revise": {
989
+ "enum": [
990
+ "上方修正",
991
+ "追加"
992
+ ],
993
+ "type": "string"
994
+ }
995
+ },
996
+ "required": [
997
+ "code",
998
+ "name"
999
+ ]
1000
+ }
1001
+ },
1002
+ "regions": {
1003
+ "type": "array",
1004
+ "items": {
1005
+ "type": "object",
1006
+ "properties": {
1007
+ "name": {
1008
+ "type": "string"
1009
+ },
1010
+ "code": {
1011
+ "type": "string"
1012
+ },
1013
+ "maxInt": {
1014
+ "enum": [
1015
+ "1",
1016
+ "2",
1017
+ "3",
1018
+ "4",
1019
+ "5+",
1020
+ "5-",
1021
+ "6+",
1022
+ "6-",
1023
+ "7"
1024
+ ],
1025
+ "type": "string"
1026
+ },
1027
+ "revise": {
1028
+ "enum": [
1029
+ "上方修正",
1030
+ "追加"
1031
+ ],
1032
+ "type": "string"
1033
+ }
1034
+ },
1035
+ "required": [
1036
+ "code",
1037
+ "name"
1038
+ ]
1039
+ }
1040
+ },
1041
+ "cities": {
1042
+ "type": "array",
1043
+ "items": {
1044
+ "type": "object",
1045
+ "properties": {
1046
+ "name": {
1047
+ "type": "string"
1048
+ },
1049
+ "code": {
1050
+ "type": "string"
1051
+ },
1052
+ "maxInt": {
1053
+ "enum": [
1054
+ "1",
1055
+ "2",
1056
+ "3",
1057
+ "4",
1058
+ "5+",
1059
+ "5-",
1060
+ "6+",
1061
+ "6-",
1062
+ "7"
1063
+ ],
1064
+ "type": "string"
1065
+ },
1066
+ "revise": {
1067
+ "enum": [
1068
+ "上方修正",
1069
+ "追加"
1070
+ ],
1071
+ "type": "string"
1072
+ },
1073
+ "condition": {
1074
+ "enum": [
1075
+ "震度5弱以上未入電"
1076
+ ],
1077
+ "type": "string"
1078
+ }
1079
+ },
1080
+ "required": [
1081
+ "code",
1082
+ "name"
1083
+ ]
1084
+ }
1085
+ },
1086
+ "stations": {
1087
+ "type": "array",
1088
+ "items": {
1089
+ "type": "object",
1090
+ "properties": {
1091
+ "name": {
1092
+ "type": "string"
1093
+ },
1094
+ "code": {
1095
+ "type": "string"
1096
+ },
1097
+ "int": {
1098
+ "enum": [
1099
+ "!5-",
1100
+ "1",
1101
+ "2",
1102
+ "3",
1103
+ "4",
1104
+ "5+",
1105
+ "5-",
1106
+ "6+",
1107
+ "6-",
1108
+ "7"
1109
+ ],
1110
+ "type": "string"
1111
+ },
1112
+ "revise": {
1113
+ "enum": [
1114
+ "上方修正",
1115
+ "追加"
1116
+ ],
1117
+ "type": "string"
1118
+ },
1119
+ "condition": {
1120
+ "enum": [
1121
+ "震度5弱以上未入電"
1122
+ ],
1123
+ "type": "string"
1124
+ }
1125
+ },
1126
+ "required": [
1127
+ "code",
1128
+ "int",
1129
+ "name"
1130
+ ]
1131
+ }
1132
+ }
1133
+ },
1134
+ "required": [
1135
+ "cities",
1136
+ "maxInt",
1137
+ "prefectures",
1138
+ "regions",
1139
+ "stations"
1140
+ ]
1141
+ },
1142
+ "text": {
1143
+ "type": "string"
1144
+ },
1145
+ "comments": {
1146
+ "type": "object",
1147
+ "properties": {
1148
+ "free": {
1149
+ "type": "string"
1150
+ },
1151
+ "forecast": {
1152
+ "type": "object",
1153
+ "properties": {
1154
+ "text": {
1155
+ "type": "string"
1156
+ },
1157
+ "codes": {
1158
+ "type": "array",
1159
+ "items": {
1160
+ "type": "string"
1161
+ }
1162
+ }
1163
+ },
1164
+ "required": [
1165
+ "codes",
1166
+ "text"
1167
+ ]
1168
+ },
1169
+ "var": {
1170
+ "type": "object",
1171
+ "properties": {
1172
+ "text": {
1173
+ "type": "string"
1174
+ },
1175
+ "codes": {
1176
+ "type": "array",
1177
+ "items": {
1178
+ "type": "string"
1179
+ }
1180
+ }
1181
+ },
1182
+ "required": [
1183
+ "codes",
1184
+ "text"
1185
+ ]
1186
+ }
1187
+ }
1188
+ }
1189
+ },
1190
+ "required": [
1191
+ "comments",
1192
+ "earthquake"
1193
+ ]
1194
+ },
1195
+ "EarthquakeInformation.PublicVXSE62": {
1196
+ "type": "object",
1197
+ "properties": {
1198
+ "_schema": {
1199
+ "$ref": "#/definitions/EarthquakeInformation.Schema"
1200
+ },
1201
+ "type": {
1202
+ "type": "string",
1203
+ "enum": [
1204
+ "長周期地震動に関する観測情報"
1205
+ ]
1206
+ },
1207
+ "title": {
1208
+ "type": "string",
1209
+ "enum": [
1210
+ "長周期地震動に関する観測情報"
1211
+ ]
1212
+ },
1213
+ "infoKind": {
1214
+ "type": "string",
1215
+ "enum": [
1216
+ "長周期地震動に関する観測情報"
1217
+ ]
1218
+ },
1219
+ "eventId": {
1220
+ "type": "string"
1221
+ },
1222
+ "serialNo": {
1223
+ "type": "string"
1224
+ },
1225
+ "infoType": {
1226
+ "enum": [
1227
+ "発表",
1228
+ "訂正"
1229
+ ],
1230
+ "type": "string"
1231
+ },
1232
+ "body": {
1233
+ "$ref": "#/definitions/EarthquakeInformation.PublicBodyVXSE62"
1234
+ },
1235
+ "_originalId": {
1236
+ "type": "string"
1237
+ },
1238
+ "status": {
1239
+ "enum": [
1240
+ "訓練",
1241
+ "試験",
1242
+ "通常"
1243
+ ],
1244
+ "type": "string"
1245
+ },
1246
+ "editorialOffice": {
1247
+ "type": "string"
1248
+ },
1249
+ "publishingOffice": {
1250
+ "type": "array",
1251
+ "items": {
1252
+ "type": "string"
1253
+ }
1254
+ },
1255
+ "pressDateTime": {
1256
+ "type": "string"
1257
+ },
1258
+ "reportDateTime": {
1259
+ "type": "string"
1260
+ },
1261
+ "targetDateTime": {
1262
+ "type": "string"
1263
+ },
1264
+ "targetDateTimeDubious": {
1265
+ "type": "string"
1266
+ },
1267
+ "targetDuration": {
1268
+ "type": "string"
1269
+ },
1270
+ "validDateTime": {
1271
+ "type": "string"
1272
+ },
1273
+ "infoKindVersion": {
1274
+ "type": "string"
1275
+ },
1276
+ "headline": {
1277
+ "type": [
1278
+ "null",
1279
+ "string"
1280
+ ]
1281
+ }
1282
+ },
1283
+ "required": [
1284
+ "_originalId",
1285
+ "_schema",
1286
+ "body",
1287
+ "editorialOffice",
1288
+ "eventId",
1289
+ "headline",
1290
+ "infoKind",
1291
+ "infoKindVersion",
1292
+ "infoType",
1293
+ "pressDateTime",
1294
+ "publishingOffice",
1295
+ "reportDateTime",
1296
+ "serialNo",
1297
+ "status",
1298
+ "targetDateTime",
1299
+ "title",
1300
+ "type"
1301
+ ]
1302
+ },
1303
+ "EarthquakeInformation.PublicBodyVXSE62": {
1304
+ "type": "object",
1305
+ "properties": {
1306
+ "earthquake": {
1307
+ "$ref": "#/definitions/Earthquake"
1308
+ },
1309
+ "intensity": {
1310
+ "type": "object",
1311
+ "properties": {
1312
+ "maxInt": {
1313
+ "$ref": "#/definitions/EarthquakeInformation.IntensityClass"
1314
+ },
1315
+ "maxLpgmInt": {
1316
+ "$ref": "#/definitions/EarthquakeInformation.LpgmIntensityClass"
1317
+ },
1318
+ "lpgmCategory": {
1319
+ "$ref": "#/definitions/EarthquakeInformation.LpgmCategory"
1320
+ },
1321
+ "prefectures": {
1322
+ "type": "array",
1323
+ "items": {
1324
+ "allOf": [
1325
+ {
1326
+ "type": "object",
1327
+ "properties": {
1328
+ "name": {
1329
+ "type": "string"
1330
+ },
1331
+ "code": {
1332
+ "type": "string"
1333
+ },
1334
+ "maxInt": {
1335
+ "enum": [
1336
+ "1",
1337
+ "2",
1338
+ "3",
1339
+ "4",
1340
+ "5+",
1341
+ "5-",
1342
+ "6+",
1343
+ "6-",
1344
+ "7"
1345
+ ],
1346
+ "type": "string"
1347
+ },
1348
+ "revise": {
1349
+ "enum": [
1350
+ "上方修正",
1351
+ "追加"
1352
+ ],
1353
+ "type": "string"
1354
+ }
1355
+ },
1356
+ "required": [
1357
+ "code",
1358
+ "name"
1359
+ ]
1360
+ },
1361
+ {
1362
+ "type": "object",
1363
+ "properties": {
1364
+ "maxLpgmInt": {
1365
+ "$ref": "#/definitions/EarthquakeInformation.LpgmIntensityClass"
1366
+ }
1367
+ },
1368
+ "required": [
1369
+ "maxLpgmInt"
1370
+ ]
1371
+ }
1372
+ ]
1373
+ }
1374
+ },
1375
+ "regions": {
1376
+ "type": "array",
1377
+ "items": {
1378
+ "allOf": [
1379
+ {
1380
+ "type": "object",
1381
+ "properties": {
1382
+ "name": {
1383
+ "type": "string"
1384
+ },
1385
+ "code": {
1386
+ "type": "string"
1387
+ },
1388
+ "maxInt": {
1389
+ "enum": [
1390
+ "1",
1391
+ "2",
1392
+ "3",
1393
+ "4",
1394
+ "5+",
1395
+ "5-",
1396
+ "6+",
1397
+ "6-",
1398
+ "7"
1399
+ ],
1400
+ "type": "string"
1401
+ },
1402
+ "revise": {
1403
+ "enum": [
1404
+ "上方修正",
1405
+ "追加"
1406
+ ],
1407
+ "type": "string"
1408
+ }
1409
+ },
1410
+ "required": [
1411
+ "code",
1412
+ "name"
1413
+ ]
1414
+ },
1415
+ {
1416
+ "type": "object",
1417
+ "properties": {
1418
+ "maxLpgmInt": {
1419
+ "$ref": "#/definitions/EarthquakeInformation.LpgmIntensityClass"
1420
+ }
1421
+ },
1422
+ "required": [
1423
+ "maxLpgmInt"
1424
+ ]
1425
+ }
1426
+ ]
1427
+ }
1428
+ },
1429
+ "stations": {
1430
+ "type": "array",
1431
+ "items": {
1432
+ "allOf": [
1433
+ {
1434
+ "type": "object",
1435
+ "properties": {
1436
+ "name": {
1437
+ "type": "string"
1438
+ },
1439
+ "code": {
1440
+ "type": "string"
1441
+ },
1442
+ "int": {
1443
+ "enum": [
1444
+ "!5-",
1445
+ "1",
1446
+ "2",
1447
+ "3",
1448
+ "4",
1449
+ "5+",
1450
+ "5-",
1451
+ "6+",
1452
+ "6-",
1453
+ "7"
1454
+ ],
1455
+ "type": "string"
1456
+ },
1457
+ "revise": {
1458
+ "enum": [
1459
+ "上方修正",
1460
+ "追加"
1461
+ ],
1462
+ "type": "string"
1463
+ },
1464
+ "condition": {
1465
+ "enum": [
1466
+ "震度5弱以上未入電"
1467
+ ],
1468
+ "type": "string"
1469
+ }
1470
+ },
1471
+ "required": [
1472
+ "code",
1473
+ "int",
1474
+ "name"
1475
+ ]
1476
+ },
1477
+ {
1478
+ "type": "object",
1479
+ "properties": {
1480
+ "lpgmInt": {
1481
+ "$ref": "#/definitions/EarthquakeInformation.LpgmIntensityClass"
1482
+ },
1483
+ "sva": {
1484
+ "type": "object",
1485
+ "properties": {
1486
+ "unit": {
1487
+ "type": "string",
1488
+ "enum": [
1489
+ "cm/s"
1490
+ ]
1491
+ },
1492
+ "value": {
1493
+ "type": "string"
1494
+ }
1495
+ },
1496
+ "required": [
1497
+ "unit",
1498
+ "value"
1499
+ ]
1500
+ },
1501
+ "prePeriods": {
1502
+ "type": "array",
1503
+ "items": {
1504
+ "type": "object",
1505
+ "properties": {
1506
+ "periodicBand": {
1507
+ "type": "object",
1508
+ "properties": {
1509
+ "unit": {
1510
+ "type": "string",
1511
+ "enum": [
1512
+ "秒台"
1513
+ ]
1514
+ },
1515
+ "value": {
1516
+ "type": "string"
1517
+ }
1518
+ },
1519
+ "required": [
1520
+ "unit",
1521
+ "value"
1522
+ ]
1523
+ },
1524
+ "lpgmInt": {
1525
+ "$ref": "#/definitions/EarthquakeInformation.LpgmIntensityClass"
1526
+ },
1527
+ "sva": {
1528
+ "type": "object",
1529
+ "properties": {
1530
+ "unit": {
1531
+ "type": "string",
1532
+ "enum": [
1533
+ "cm/s"
1534
+ ]
1535
+ },
1536
+ "value": {
1537
+ "type": "string"
1538
+ }
1539
+ },
1540
+ "required": [
1541
+ "unit",
1542
+ "value"
1543
+ ]
1544
+ }
1545
+ },
1546
+ "required": [
1547
+ "lpgmInt",
1548
+ "periodicBand",
1549
+ "sva"
1550
+ ]
1551
+ }
1552
+ }
1553
+ },
1554
+ "required": [
1555
+ "lpgmInt",
1556
+ "prePeriods",
1557
+ "sva"
1558
+ ]
1559
+ }
1560
+ ]
1561
+ }
1562
+ }
1563
+ },
1564
+ "required": [
1565
+ "lpgmCategory",
1566
+ "maxInt",
1567
+ "maxLpgmInt",
1568
+ "prefectures",
1569
+ "regions",
1570
+ "stations"
1571
+ ]
1572
+ },
1573
+ "text": {
1574
+ "type": "string"
1575
+ },
1576
+ "comments": {
1577
+ "type": "object",
1578
+ "properties": {
1579
+ "free": {
1580
+ "type": "string"
1581
+ },
1582
+ "forecast": {
1583
+ "type": "object",
1584
+ "properties": {
1585
+ "text": {
1586
+ "type": "string"
1587
+ },
1588
+ "codes": {
1589
+ "type": "array",
1590
+ "items": {
1591
+ "type": "string"
1592
+ }
1593
+ }
1594
+ },
1595
+ "required": [
1596
+ "codes",
1597
+ "text"
1598
+ ]
1599
+ },
1600
+ "var": {
1601
+ "type": "object",
1602
+ "properties": {
1603
+ "text": {
1604
+ "type": "string"
1605
+ },
1606
+ "codes": {
1607
+ "type": "array",
1608
+ "items": {
1609
+ "type": "string"
1610
+ }
1611
+ }
1612
+ },
1613
+ "required": [
1614
+ "codes",
1615
+ "text"
1616
+ ]
1617
+ }
1618
+ }
1619
+ }
1620
+ },
1621
+ "required": [
1622
+ "comments",
1623
+ "earthquake"
1624
+ ]
1625
+ },
1626
+ "EarthquakeInformation.LpgmIntensityClass": {
1627
+ "enum": [
1628
+ "0",
1629
+ "1",
1630
+ "2",
1631
+ "3",
1632
+ "4"
1633
+ ],
1634
+ "type": "string"
1635
+ },
1636
+ "EarthquakeInformation.LpgmCategory": {
1637
+ "enum": [
1638
+ "1",
1639
+ "2",
1640
+ "3",
1641
+ "4"
1642
+ ],
1643
+ "type": "string"
1644
+ },
1645
+ "EarthquakeInformation.Channel": {
1646
+ "type": "object",
1647
+ "properties": {
1648
+ "_schema": {
1649
+ "$ref": "#/definitions/EarthquakeInformation.Schema"
1650
+ },
1651
+ "type": {
1652
+ "enum": [
1653
+ "長周期地震動に関する観測情報",
1654
+ "震度速報",
1655
+ "震源に関する情報",
1656
+ "震源・震度に関する情報"
1657
+ ],
1658
+ "type": "string"
1659
+ },
1660
+ "title": {
1661
+ "enum": [
1662
+ "遠地地震に関する情報",
1663
+ "長周期地震動に関する観測情報",
1664
+ "震度速報",
1665
+ "震源に関する情報",
1666
+ "震源・震度情報"
1667
+ ],
1668
+ "type": "string"
1669
+ },
1670
+ "infoKind": {
1671
+ "type": "string",
1672
+ "enum": [
1673
+ "震度速報"
1674
+ ]
1675
+ },
1676
+ "eventId": {
1677
+ "type": "string"
1678
+ },
1679
+ "infoType": {
1680
+ "type": "string",
1681
+ "enum": [
1682
+ "取消"
1683
+ ]
1684
+ },
1685
+ "body": {
1686
+ "$ref": "#/definitions/EarthquakeInformation.ChancelBody"
1687
+ },
1688
+ "_originalId": {
1689
+ "type": "string"
1690
+ },
1691
+ "status": {
1692
+ "enum": [
1693
+ "訓練",
1694
+ "試験",
1695
+ "通常"
1696
+ ],
1697
+ "type": "string"
1698
+ },
1699
+ "editorialOffice": {
1700
+ "type": "string"
1701
+ },
1702
+ "publishingOffice": {
1703
+ "type": "array",
1704
+ "items": {
1705
+ "type": "string"
1706
+ }
1707
+ },
1708
+ "pressDateTime": {
1709
+ "type": "string"
1710
+ },
1711
+ "reportDateTime": {
1712
+ "type": "string"
1713
+ },
1714
+ "targetDateTime": {
1715
+ "type": "string"
1716
+ },
1717
+ "targetDateTimeDubious": {
1718
+ "type": "string"
1719
+ },
1720
+ "targetDuration": {
1721
+ "type": "string"
1722
+ },
1723
+ "validDateTime": {
1724
+ "type": "string"
1725
+ },
1726
+ "serialNo": {
1727
+ "type": [
1728
+ "null",
1729
+ "string"
1730
+ ]
1731
+ },
1732
+ "infoKindVersion": {
1733
+ "type": "string"
1734
+ },
1735
+ "headline": {
1736
+ "type": [
1737
+ "null",
1738
+ "string"
1739
+ ]
1740
+ }
1741
+ },
1742
+ "required": [
1743
+ "_originalId",
1744
+ "_schema",
1745
+ "body",
1746
+ "editorialOffice",
1747
+ "eventId",
1748
+ "headline",
1749
+ "infoKind",
1750
+ "infoKindVersion",
1751
+ "infoType",
1752
+ "pressDateTime",
1753
+ "publishingOffice",
1754
+ "reportDateTime",
1755
+ "serialNo",
1756
+ "status",
1757
+ "targetDateTime",
1758
+ "title",
1759
+ "type"
1760
+ ]
1761
+ },
1762
+ "EarthquakeInformation.ChancelBody": {
1763
+ "type": "object",
1764
+ "properties": {
1765
+ "text": {
1766
+ "type": "string"
1767
+ }
1768
+ },
1769
+ "required": [
1770
+ "text"
1771
+ ]
1772
+ },
1773
+ "EewInformation.PublicTesting": {
1774
+ "type": "object",
1775
+ "properties": {
1776
+ "isLastInfo": {
1777
+ "type": "boolean",
1778
+ "enum": [
1779
+ false
1780
+ ]
1781
+ },
1782
+ "text": {
1783
+ "type": "string"
1784
+ },
1785
+ "_schema": {
1786
+ "$ref": "#/definitions/EewInformation.Schema"
1787
+ },
1788
+ "type": {
1789
+ "type": "string",
1790
+ "enum": [
1791
+ "緊急地震速報テスト"
1792
+ ]
1793
+ },
1794
+ "title": {
1795
+ "type": "string",
1796
+ "enum": [
1797
+ "緊急地震速報テスト"
1798
+ ]
1799
+ },
1800
+ "infoKind": {
1801
+ "type": "string",
1802
+ "enum": [
1803
+ "緊急地震速報"
1804
+ ]
1805
+ },
1806
+ "eventId": {
1807
+ "type": "string"
1808
+ },
1809
+ "serialNo": {
1810
+ "type": "string"
1811
+ },
1812
+ "infoType": {
1813
+ "enum": [
1814
+ "発表",
1815
+ "訂正"
1816
+ ],
1817
+ "type": "string"
1818
+ },
1819
+ "body": {
1820
+ "$ref": "#/definitions/EewInformation.PublicTesting"
1821
+ },
1822
+ "_originalId": {
1823
+ "type": "string"
1824
+ },
1825
+ "status": {
1826
+ "enum": [
1827
+ "訓練",
1828
+ "試験",
1829
+ "通常"
1830
+ ],
1831
+ "type": "string"
1832
+ },
1833
+ "editorialOffice": {
1834
+ "type": "string"
1835
+ },
1836
+ "publishingOffice": {
1837
+ "type": "array",
1838
+ "items": {
1839
+ "type": "string"
1840
+ }
1841
+ },
1842
+ "pressDateTime": {
1843
+ "type": "string"
1844
+ },
1845
+ "reportDateTime": {
1846
+ "type": "string"
1847
+ },
1848
+ "targetDateTime": {
1849
+ "type": "string"
1850
+ },
1851
+ "targetDateTimeDubious": {
1852
+ "type": "string"
1853
+ },
1854
+ "targetDuration": {
1855
+ "type": "string"
1856
+ },
1857
+ "validDateTime": {
1858
+ "type": "string"
1859
+ },
1860
+ "infoKindVersion": {
1861
+ "type": "string"
1862
+ },
1863
+ "headline": {
1864
+ "type": [
1865
+ "null",
1866
+ "string"
1867
+ ]
1868
+ }
1869
+ },
1870
+ "required": [
1871
+ "_originalId",
1872
+ "_schema",
1873
+ "body",
1874
+ "editorialOffice",
1875
+ "eventId",
1876
+ "headline",
1877
+ "infoKind",
1878
+ "infoKindVersion",
1879
+ "infoType",
1880
+ "isLastInfo",
1881
+ "pressDateTime",
1882
+ "publishingOffice",
1883
+ "reportDateTime",
1884
+ "serialNo",
1885
+ "status",
1886
+ "targetDateTime",
1887
+ "text",
1888
+ "title",
1889
+ "type"
1890
+ ]
1891
+ },
1892
+ "EewInformation.Schema": {
1893
+ "type": "object",
1894
+ "properties": {
1895
+ "type": {
1896
+ "type": "string",
1897
+ "enum": [
1898
+ "eew-information"
1899
+ ]
1900
+ },
1901
+ "version": {
1902
+ "type": "string",
1903
+ "enum": [
1904
+ "1.0.0"
1905
+ ]
1906
+ }
1907
+ },
1908
+ "required": [
1909
+ "type",
1910
+ "version"
1911
+ ]
1912
+ },
1913
+ "EewInformation.PublicCommon": {
1914
+ "type": "object",
1915
+ "properties": {
1916
+ "_schema": {
1917
+ "$ref": "#/definitions/EewInformation.Schema"
1918
+ },
1919
+ "type": {
1920
+ "enum": [
1921
+ "緊急地震速報(予報)",
1922
+ "緊急地震速報(地震動予報)",
1923
+ "緊急地震速報(警報)"
1924
+ ],
1925
+ "type": "string"
1926
+ },
1927
+ "title": {
1928
+ "enum": [
1929
+ "緊急地震速報(予報)",
1930
+ "緊急地震速報(地震動予報)",
1931
+ "緊急地震速報(警報)"
1932
+ ],
1933
+ "type": "string"
1934
+ },
1935
+ "infoKind": {
1936
+ "type": "string",
1937
+ "enum": [
1938
+ "緊急地震速報"
1939
+ ]
1940
+ },
1941
+ "eventId": {
1942
+ "type": "string"
1943
+ },
1944
+ "serialNo": {
1945
+ "type": "string"
1946
+ },
1947
+ "infoType": {
1948
+ "enum": [
1949
+ "発表",
1950
+ "訂正"
1951
+ ],
1952
+ "type": "string"
1953
+ },
1954
+ "body": {
1955
+ "$ref": "#/definitions/EewInformation.PublicCommonBody"
1956
+ },
1957
+ "_originalId": {
1958
+ "type": "string"
1959
+ },
1960
+ "status": {
1961
+ "enum": [
1962
+ "訓練",
1963
+ "試験",
1964
+ "通常"
1965
+ ],
1966
+ "type": "string"
1967
+ },
1968
+ "editorialOffice": {
1969
+ "type": "string"
1970
+ },
1971
+ "publishingOffice": {
1972
+ "type": "array",
1973
+ "items": {
1974
+ "type": "string"
1975
+ }
1976
+ },
1977
+ "pressDateTime": {
1978
+ "type": "string"
1979
+ },
1980
+ "reportDateTime": {
1981
+ "type": "string"
1982
+ },
1983
+ "targetDateTime": {
1984
+ "type": "string"
1985
+ },
1986
+ "targetDateTimeDubious": {
1987
+ "type": "string"
1988
+ },
1989
+ "targetDuration": {
1990
+ "type": "string"
1991
+ },
1992
+ "validDateTime": {
1993
+ "type": "string"
1994
+ },
1995
+ "infoKindVersion": {
1996
+ "type": "string"
1997
+ },
1998
+ "headline": {
1999
+ "type": [
2000
+ "null",
2001
+ "string"
2002
+ ]
2003
+ }
2004
+ },
2005
+ "required": [
2006
+ "_originalId",
2007
+ "_schema",
2008
+ "body",
2009
+ "editorialOffice",
2010
+ "eventId",
2011
+ "headline",
2012
+ "infoKind",
2013
+ "infoKindVersion",
2014
+ "infoType",
2015
+ "pressDateTime",
2016
+ "publishingOffice",
2017
+ "reportDateTime",
2018
+ "serialNo",
2019
+ "status",
2020
+ "targetDateTime",
2021
+ "title",
2022
+ "type"
2023
+ ]
2024
+ },
2025
+ "EewInformation.PublicCommonBody": {
2026
+ "type": "object",
2027
+ "properties": {
2028
+ "isLastInfo": {
2029
+ "type": "boolean"
2030
+ },
2031
+ "zones": {
2032
+ "type": "array",
2033
+ "items": {
2034
+ "$ref": "#/definitions/EewInformation.WarningArea"
2035
+ }
2036
+ },
2037
+ "prefectures": {
2038
+ "type": "array",
2039
+ "items": {
2040
+ "$ref": "#/definitions/EewInformation.WarningArea"
2041
+ }
2042
+ },
2043
+ "regions": {
2044
+ "type": "array",
2045
+ "items": {
2046
+ "$ref": "#/definitions/EewInformation.WarningArea"
2047
+ }
2048
+ },
2049
+ "earthquake": {
2050
+ "$ref": "#/definitions/EewInformation.Earthquake"
2051
+ },
2052
+ "intensity": {
2053
+ "$ref": "#/definitions/EewInformation.Intensity"
2054
+ },
2055
+ "text": {
2056
+ "type": "string"
2057
+ },
2058
+ "comments": {
2059
+ "type": "object",
2060
+ "properties": {
2061
+ "free": {
2062
+ "type": "string"
2063
+ },
2064
+ "warning": {
2065
+ "type": "object",
2066
+ "properties": {
2067
+ "text": {
2068
+ "type": "string"
2069
+ },
2070
+ "codes": {
2071
+ "type": "array",
2072
+ "items": {
2073
+ "type": "string"
2074
+ }
2075
+ }
2076
+ },
2077
+ "required": [
2078
+ "codes",
2079
+ "text"
2080
+ ]
2081
+ }
2082
+ }
2083
+ }
2084
+ },
2085
+ "required": [
2086
+ "comments",
2087
+ "earthquake",
2088
+ "isLastInfo"
2089
+ ]
2090
+ },
2091
+ "EewInformation.WarningArea": {
2092
+ "type": "object",
2093
+ "properties": {
2094
+ "code": {
2095
+ "type": "string"
2096
+ },
2097
+ "name": {
2098
+ "type": "string"
2099
+ },
2100
+ "kind": {
2101
+ "$ref": "#/definitions/EewInformation.WarningAreaKind"
2102
+ }
2103
+ },
2104
+ "required": [
2105
+ "code",
2106
+ "kind",
2107
+ "name"
2108
+ ]
2109
+ },
2110
+ "EewInformation.WarningAreaKind": {
2111
+ "type": "object",
2112
+ "properties": {
2113
+ "code": {
2114
+ "type": "string"
2115
+ },
2116
+ "name": {
2117
+ "type": "string"
2118
+ },
2119
+ "lastKind": {
2120
+ "type": "object",
2121
+ "properties": {
2122
+ "code": {
2123
+ "type": "string"
2124
+ },
2125
+ "name": {
2126
+ "type": "string"
2127
+ }
2128
+ },
2129
+ "required": [
2130
+ "code",
2131
+ "name"
2132
+ ]
2133
+ }
2134
+ },
2135
+ "required": [
2136
+ "code",
2137
+ "lastKind",
2138
+ "name"
2139
+ ]
2140
+ },
2141
+ "EewInformation.Earthquake": {
2142
+ "type": "object",
2143
+ "properties": {
2144
+ "originTime": {
2145
+ "type": "string"
2146
+ },
2147
+ "arrivalTime": {
2148
+ "type": "string"
2149
+ },
2150
+ "condition": {
2151
+ "enum": [
2152
+ "仮定震源要素"
2153
+ ],
2154
+ "type": "string"
2155
+ },
2156
+ "hypocenter": {
2157
+ "$ref": "#/definitions/EewInformation.EarthquakeHypocenter"
2158
+ },
2159
+ "magnitude": {
2160
+ "$ref": "#/definitions/EewInformation.EarthquakeMagnitude"
2161
+ }
2162
+ },
2163
+ "required": [
2164
+ "arrivalTime",
2165
+ "hypocenter",
2166
+ "magnitude"
2167
+ ]
2168
+ },
2169
+ "EewInformation.EarthquakeHypocenter": {
2170
+ "type": "object",
2171
+ "properties": {
2172
+ "code": {
2173
+ "type": "string"
2174
+ },
2175
+ "name": {
2176
+ "type": "string"
2177
+ },
2178
+ "coordinate": {
2179
+ "anyOf": [
2180
+ {
2181
+ "type": "object",
2182
+ "properties": {
2183
+ "condition": {
2184
+ "type": "string",
2185
+ "enum": [
2186
+ "不明"
2187
+ ]
2188
+ }
2189
+ },
2190
+ "required": [
2191
+ "condition"
2192
+ ]
2193
+ },
2194
+ {
2195
+ "type": "object",
2196
+ "properties": {
2197
+ "latitude": {
2198
+ "type": "object",
2199
+ "properties": {
2200
+ "text": {
2201
+ "type": "string"
2202
+ },
2203
+ "value": {
2204
+ "type": "string"
2205
+ }
2206
+ },
2207
+ "required": [
2208
+ "text",
2209
+ "value"
2210
+ ]
2211
+ },
2212
+ "longitude": {
2213
+ "type": "object",
2214
+ "properties": {
2215
+ "text": {
2216
+ "type": "string"
2217
+ },
2218
+ "value": {
2219
+ "type": "string"
2220
+ }
2221
+ },
2222
+ "required": [
2223
+ "text",
2224
+ "value"
2225
+ ]
2226
+ },
2227
+ "height": {
2228
+ "type": "object",
2229
+ "properties": {
2230
+ "type": {
2231
+ "type": "string",
2232
+ "enum": [
2233
+ "深さ"
2234
+ ]
2235
+ },
2236
+ "unit": {
2237
+ "type": "string",
2238
+ "enum": [
2239
+ "km"
2240
+ ]
2241
+ },
2242
+ "value": {
2243
+ "type": [
2244
+ "null",
2245
+ "string"
2246
+ ]
2247
+ }
2248
+ },
2249
+ "required": [
2250
+ "type",
2251
+ "unit",
2252
+ "value"
2253
+ ]
2254
+ },
2255
+ "condition": {
2256
+ "type": "undefined"
2257
+ },
2258
+ "geodeticSystem": {
2259
+ "type": "string",
2260
+ "enum": [
2261
+ "日本測地系"
2262
+ ]
2263
+ }
2264
+ },
2265
+ "required": [
2266
+ "condition",
2267
+ "geodeticSystem",
2268
+ "latitude",
2269
+ "longitude"
2270
+ ]
2271
+ }
2272
+ ]
2273
+ },
2274
+ "depth": {
2275
+ "type": "object",
2276
+ "properties": {
2277
+ "type": {
2278
+ "type": "string",
2279
+ "enum": [
2280
+ "深さ"
2281
+ ]
2282
+ },
2283
+ "unit": {
2284
+ "type": "string",
2285
+ "enum": [
2286
+ "km"
2287
+ ]
2288
+ },
2289
+ "value": {
2290
+ "type": "string"
2291
+ }
2292
+ },
2293
+ "required": [
2294
+ "type",
2295
+ "unit",
2296
+ "value"
2297
+ ]
2298
+ },
2299
+ "reduce": {
2300
+ "$ref": "#/definitions/EewInformation.EarthquakeHypocenterReduce"
2301
+ },
2302
+ "landOrSea": {
2303
+ "enum": [
2304
+ "内陸",
2305
+ "海域"
2306
+ ],
2307
+ "type": "string"
2308
+ },
2309
+ "accuracy": {
2310
+ "$ref": "#/definitions/EewInformation.EarthquakeHypocenterAccuracy"
2311
+ }
2312
+ },
2313
+ "required": [
2314
+ "accuracy",
2315
+ "code",
2316
+ "coordinate",
2317
+ "depth",
2318
+ "name",
2319
+ "reduce"
2320
+ ]
2321
+ },
2322
+ "EewInformation.EarthquakeHypocenterReduce": {
2323
+ "type": "object",
2324
+ "properties": {
2325
+ "code": {
2326
+ "type": "string"
2327
+ },
2328
+ "name": {
2329
+ "type": "string"
2330
+ }
2331
+ },
2332
+ "required": [
2333
+ "code",
2334
+ "name"
2335
+ ]
2336
+ },
2337
+ "EewInformation.EarthquakeHypocenterAccuracy": {
2338
+ "type": "object",
2339
+ "properties": {
2340
+ "epicenters": {
2341
+ "type": "array",
2342
+ "items": [
2343
+ {
2344
+ "enum": [
2345
+ "0",
2346
+ "1",
2347
+ "2",
2348
+ "3",
2349
+ "4",
2350
+ "5",
2351
+ "6",
2352
+ "7",
2353
+ "8"
2354
+ ],
2355
+ "type": "string"
2356
+ },
2357
+ {
2358
+ "enum": [
2359
+ "0",
2360
+ "1",
2361
+ "2",
2362
+ "3",
2363
+ "4",
2364
+ "9"
2365
+ ],
2366
+ "type": "string"
2367
+ }
2368
+ ],
2369
+ "minItems": 2,
2370
+ "maxItems": 2
2371
+ },
2372
+ "depth": {
2373
+ "enum": [
2374
+ "0",
2375
+ "1",
2376
+ "2",
2377
+ "3",
2378
+ "4",
2379
+ "5",
2380
+ "6",
2381
+ "7",
2382
+ "8"
2383
+ ],
2384
+ "type": "string"
2385
+ },
2386
+ "magnitudeCalculation": {
2387
+ "enum": [
2388
+ "0",
2389
+ "2",
2390
+ "3",
2391
+ "4",
2392
+ "5",
2393
+ "6",
2394
+ "8"
2395
+ ],
2396
+ "type": "string"
2397
+ },
2398
+ "numberOfMagnitudeCalculation": {
2399
+ "enum": [
2400
+ "0",
2401
+ "1",
2402
+ "2",
2403
+ "3",
2404
+ "4",
2405
+ "5"
2406
+ ],
2407
+ "type": "string"
2408
+ }
2409
+ },
2410
+ "required": [
2411
+ "depth",
2412
+ "epicenters",
2413
+ "magnitudeCalculation",
2414
+ "numberOfMagnitudeCalculation"
2415
+ ]
2416
+ },
2417
+ "EewInformation.EarthquakeMagnitude": {
2418
+ "type": "object",
2419
+ "properties": {
2420
+ "type": {
2421
+ "type": "string",
2422
+ "enum": [
2423
+ "マグニチュード"
2424
+ ]
2425
+ },
2426
+ "unit": {
2427
+ "enum": [
2428
+ "M",
2429
+ "Mj"
2430
+ ],
2431
+ "type": "string"
2432
+ },
2433
+ "value": {
2434
+ "type": [
2435
+ "null",
2436
+ "string"
2437
+ ]
2438
+ },
2439
+ "condition": {
2440
+ "enum": [
2441
+ "M不明"
2442
+ ],
2443
+ "type": "string"
2444
+ }
2445
+ },
2446
+ "required": [
2447
+ "type",
2448
+ "unit",
2449
+ "value"
2450
+ ]
2451
+ },
2452
+ "EewInformation.Intensity": {
2453
+ "type": "object",
2454
+ "properties": {
2455
+ "forecastMaxInt": {
2456
+ "$ref": "#/definitions/EewInformation.IntensityForecastMaxInt"
2457
+ },
2458
+ "forecastLpgmMaxInt": {
2459
+ "$ref": "#/definitions/EewInformation.IntensityForecastLpgmMaxInt"
2460
+ },
2461
+ "appendix": {
2462
+ "$ref": "#/definitions/EewInformation.IntensityAppendix"
2463
+ },
2464
+ "regions": {
2465
+ "type": "array",
2466
+ "items": {
2467
+ "$ref": "#/definitions/EewInformation.IntensityRegion"
2468
+ }
2469
+ }
2470
+ },
2471
+ "required": [
2472
+ "forecastMaxInt",
2473
+ "regions"
2474
+ ]
2475
+ },
2476
+ "EewInformation.IntensityForecastMaxInt": {
2477
+ "type": "object",
2478
+ "properties": {
2479
+ "from": {
2480
+ "enum": [
2481
+ "0",
2482
+ "1",
2483
+ "2",
2484
+ "3",
2485
+ "4",
2486
+ "5+",
2487
+ "5-",
2488
+ "6+",
2489
+ "6-",
2490
+ "7",
2491
+ "不明"
2492
+ ],
2493
+ "type": "string"
2494
+ },
2495
+ "to": {
2496
+ "enum": [
2497
+ "0",
2498
+ "1",
2499
+ "2",
2500
+ "3",
2501
+ "4",
2502
+ "5+",
2503
+ "5-",
2504
+ "6+",
2505
+ "6-",
2506
+ "7",
2507
+ "over",
2508
+ "不明"
2509
+ ],
2510
+ "type": "string"
2511
+ }
2512
+ },
2513
+ "required": [
2514
+ "from",
2515
+ "to"
2516
+ ]
2517
+ },
2518
+ "EewInformation.IntensityForecastLpgmMaxInt": {
2519
+ "type": "object",
2520
+ "properties": {
2521
+ "from": {
2522
+ "enum": [
2523
+ "0",
2524
+ "1",
2525
+ "2",
2526
+ "3",
2527
+ "4",
2528
+ "不明"
2529
+ ],
2530
+ "type": "string"
2531
+ },
2532
+ "to": {
2533
+ "enum": [
2534
+ "0",
2535
+ "1",
2536
+ "2",
2537
+ "3",
2538
+ "4",
2539
+ "over",
2540
+ "不明"
2541
+ ],
2542
+ "type": "string"
2543
+ }
2544
+ },
2545
+ "required": [
2546
+ "from",
2547
+ "to"
2548
+ ]
2549
+ },
2550
+ "EewInformation.IntensityAppendix": {
2551
+ "type": "object",
2552
+ "properties": {
2553
+ "maxIntChange": {
2554
+ "enum": [
2555
+ "0",
2556
+ "1",
2557
+ "2"
2558
+ ],
2559
+ "type": "string"
2560
+ },
2561
+ "maxLpgmIntChange": {
2562
+ "enum": [
2563
+ "0",
2564
+ "1",
2565
+ "2"
2566
+ ],
2567
+ "type": "string"
2568
+ },
2569
+ "maxIntChangeReason": {
2570
+ "enum": [
2571
+ "0",
2572
+ "1",
2573
+ "2",
2574
+ "3",
2575
+ "4",
2576
+ "9"
2577
+ ],
2578
+ "type": "string"
2579
+ }
2580
+ },
2581
+ "required": [
2582
+ "maxIntChange",
2583
+ "maxIntChangeReason"
2584
+ ]
2585
+ },
2586
+ "EewInformation.IntensityRegion": {
2587
+ "type": "object",
2588
+ "properties": {
2589
+ "code": {
2590
+ "type": "string"
2591
+ },
2592
+ "name": {
2593
+ "type": "string"
2594
+ },
2595
+ "forecastMaxInt": {
2596
+ "$ref": "#/definitions/EewInformation.IntensityForecastMaxInt"
2597
+ },
2598
+ "forecastLpgmMaxInt": {
2599
+ "$ref": "#/definitions/EewInformation.IntensityForecastLpgmMaxInt"
2600
+ },
2601
+ "kind": {
2602
+ "$ref": "#/definitions/EewInformation.WarningAreaKind"
2603
+ }
2604
+ },
2605
+ "required": [
2606
+ "code",
2607
+ "forecastMaxInt",
2608
+ "kind",
2609
+ "name"
2610
+ ]
2611
+ },
2612
+ "EewInformation.Channel": {
2613
+ "type": "object",
2614
+ "properties": {
2615
+ "_schema": {
2616
+ "$ref": "#/definitions/EewInformation.Schema"
2617
+ },
2618
+ "type": {
2619
+ "enum": [
2620
+ "緊急地震速報テスト",
2621
+ "緊急地震速報(予報)",
2622
+ "緊急地震速報(地震動予報)",
2623
+ "緊急地震速報(警報)"
2624
+ ],
2625
+ "type": "string"
2626
+ },
2627
+ "title": {
2628
+ "enum": [
2629
+ "緊急地震速報テスト",
2630
+ "緊急地震速報(予報)",
2631
+ "緊急地震速報(地震動予報)",
2632
+ "緊急地震速報(警報)"
2633
+ ],
2634
+ "type": "string"
2635
+ },
2636
+ "infoKind": {
2637
+ "type": "string",
2638
+ "enum": [
2639
+ "緊急地震速報"
2640
+ ]
2641
+ },
2642
+ "eventId": {
2643
+ "type": "string"
2644
+ },
2645
+ "serialNo": {
2646
+ "type": "string"
2647
+ },
2648
+ "infoType": {
2649
+ "type": "string",
2650
+ "enum": [
2651
+ "取消"
2652
+ ]
2653
+ },
2654
+ "body": {
2655
+ "$ref": "#/definitions/EewInformation.ChancelBody"
2656
+ },
2657
+ "_originalId": {
2658
+ "type": "string"
2659
+ },
2660
+ "status": {
2661
+ "enum": [
2662
+ "訓練",
2663
+ "試験",
2664
+ "通常"
2665
+ ],
2666
+ "type": "string"
2667
+ },
2668
+ "editorialOffice": {
2669
+ "type": "string"
2670
+ },
2671
+ "publishingOffice": {
2672
+ "type": "array",
2673
+ "items": {
2674
+ "type": "string"
2675
+ }
2676
+ },
2677
+ "pressDateTime": {
2678
+ "type": "string"
2679
+ },
2680
+ "reportDateTime": {
2681
+ "type": "string"
2682
+ },
2683
+ "targetDateTime": {
2684
+ "type": "string"
2685
+ },
2686
+ "targetDateTimeDubious": {
2687
+ "type": "string"
2688
+ },
2689
+ "targetDuration": {
2690
+ "type": "string"
2691
+ },
2692
+ "validDateTime": {
2693
+ "type": "string"
2694
+ },
2695
+ "infoKindVersion": {
2696
+ "type": "string"
2697
+ },
2698
+ "headline": {
2699
+ "type": [
2700
+ "null",
2701
+ "string"
2702
+ ]
2703
+ }
2704
+ },
2705
+ "required": [
2706
+ "_originalId",
2707
+ "_schema",
2708
+ "body",
2709
+ "editorialOffice",
2710
+ "eventId",
2711
+ "headline",
2712
+ "infoKind",
2713
+ "infoKindVersion",
2714
+ "infoType",
2715
+ "pressDateTime",
2716
+ "publishingOffice",
2717
+ "reportDateTime",
2718
+ "serialNo",
2719
+ "status",
2720
+ "targetDateTime",
2721
+ "title",
2722
+ "type"
2723
+ ]
2724
+ },
2725
+ "EewInformation.ChancelBody": {
2726
+ "type": "object",
2727
+ "properties": {
2728
+ "isLastInfo": {
2729
+ "type": "boolean",
2730
+ "enum": [
2731
+ true
2732
+ ]
2733
+ },
2734
+ "text": {
2735
+ "type": "string"
2736
+ }
2737
+ },
2738
+ "required": [
2739
+ "isLastInfo",
2740
+ "text"
2741
+ ]
2742
+ },
2743
+ "TsunamiInformation.PublicVTSE41": {
2744
+ "type": "object",
2745
+ "properties": {
2746
+ "_schema": {
2747
+ "$ref": "#/definitions/TsunamiInformation.Schema"
2748
+ },
2749
+ "type": {
2750
+ "type": "string",
2751
+ "enum": [
2752
+ "津波警報・注意報・予報a"
2753
+ ]
2754
+ },
2755
+ "title": {
2756
+ "type": "string"
2757
+ },
2758
+ "infoKind": {
2759
+ "type": "string",
2760
+ "enum": [
2761
+ "津波警報・注意報・予報"
2762
+ ]
2763
+ },
2764
+ "eventId": {
2765
+ "type": "string"
2766
+ },
2767
+ "serialNo": {
2768
+ "type": "null"
2769
+ },
2770
+ "infoType": {
2771
+ "enum": [
2772
+ "発表",
2773
+ "訂正"
2774
+ ],
2775
+ "type": "string"
2776
+ },
2777
+ "body": {
2778
+ "$ref": "#/definitions/TsunamiInformation.PublicBodyVTSE41"
2779
+ },
2780
+ "_originalId": {
2781
+ "type": "string"
2782
+ },
2783
+ "status": {
2784
+ "enum": [
2785
+ "訓練",
2786
+ "試験",
2787
+ "通常"
2788
+ ],
2789
+ "type": "string"
2790
+ },
2791
+ "editorialOffice": {
2792
+ "type": "string"
2793
+ },
2794
+ "publishingOffice": {
2795
+ "type": "array",
2796
+ "items": {
2797
+ "type": "string"
2798
+ }
2799
+ },
2800
+ "pressDateTime": {
2801
+ "type": "string"
2802
+ },
2803
+ "reportDateTime": {
2804
+ "type": "string"
2805
+ },
2806
+ "targetDateTime": {
2807
+ "type": "string"
2808
+ },
2809
+ "targetDateTimeDubious": {
2810
+ "type": "string"
2811
+ },
2812
+ "targetDuration": {
2813
+ "type": "string"
2814
+ },
2815
+ "validDateTime": {
2816
+ "type": "string"
2817
+ },
2818
+ "infoKindVersion": {
2819
+ "type": "string"
2820
+ },
2821
+ "headline": {
2822
+ "type": [
2823
+ "null",
2824
+ "string"
2825
+ ]
2826
+ }
2827
+ },
2828
+ "required": [
2829
+ "_originalId",
2830
+ "_schema",
2831
+ "body",
2832
+ "editorialOffice",
2833
+ "eventId",
2834
+ "headline",
2835
+ "infoKind",
2836
+ "infoKindVersion",
2837
+ "infoType",
2838
+ "pressDateTime",
2839
+ "publishingOffice",
2840
+ "reportDateTime",
2841
+ "serialNo",
2842
+ "status",
2843
+ "targetDateTime",
2844
+ "title",
2845
+ "type"
2846
+ ]
2847
+ },
2848
+ "TsunamiInformation.Schema": {
2849
+ "type": "object",
2850
+ "properties": {
2851
+ "type": {
2852
+ "type": "string",
2853
+ "enum": [
2854
+ "tsunami-information"
2855
+ ]
2856
+ },
2857
+ "version": {
2858
+ "type": "string",
2859
+ "enum": [
2860
+ "1.0.0"
2861
+ ]
2862
+ }
2863
+ },
2864
+ "required": [
2865
+ "type",
2866
+ "version"
2867
+ ]
2868
+ },
2869
+ "TsunamiInformation.PublicBodyVTSE41": {
2870
+ "type": "object",
2871
+ "properties": {
2872
+ "tsunami": {
2873
+ "$ref": "#/definitions/TsunamiInformation.PublicBodyVTSE41Tsunami"
2874
+ },
2875
+ "earthquakes": {
2876
+ "type": "array",
2877
+ "items": {
2878
+ "$ref": "#/definitions/Earthquake"
2879
+ }
2880
+ },
2881
+ "text": {
2882
+ "type": "string"
2883
+ },
2884
+ "comments": {
2885
+ "type": "object",
2886
+ "properties": {
2887
+ "free": {
2888
+ "type": "string"
2889
+ },
2890
+ "warning": {
2891
+ "type": "object",
2892
+ "properties": {
2893
+ "text": {
2894
+ "type": "string"
2895
+ },
2896
+ "codes": {
2897
+ "type": "array",
2898
+ "items": {
2899
+ "type": "string"
2900
+ }
2901
+ }
2902
+ },
2903
+ "required": [
2904
+ "codes",
2905
+ "text"
2906
+ ]
2907
+ }
2908
+ }
2909
+ }
2910
+ },
2911
+ "required": [
2912
+ "earthquakes",
2913
+ "tsunami"
2914
+ ]
2915
+ },
2916
+ "TsunamiInformation.PublicBodyVTSE41Tsunami": {
2917
+ "type": "object",
2918
+ "properties": {
2919
+ "forecasts": {
2920
+ "type": "array",
2921
+ "items": {
2922
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastVXSE41"
2923
+ }
2924
+ }
2925
+ },
2926
+ "required": [
2927
+ "forecasts"
2928
+ ]
2929
+ },
2930
+ "TsunamiInformation.TsunamiForecastVXSE41": {
2931
+ "type": "object",
2932
+ "properties": {
2933
+ "code": {
2934
+ "type": "string"
2935
+ },
2936
+ "name": {
2937
+ "type": "string"
2938
+ },
2939
+ "kind": {
2940
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastKind"
2941
+ },
2942
+ "firstHeight": {
2943
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastFirstHeight"
2944
+ },
2945
+ "maxHeight": {
2946
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastMaxHeight"
2947
+ }
2948
+ },
2949
+ "required": [
2950
+ "code",
2951
+ "firstHeight",
2952
+ "kind",
2953
+ "maxHeight",
2954
+ "name"
2955
+ ]
2956
+ },
2957
+ "TsunamiInformation.TsunamiForecastKind": {
2958
+ "type": "object",
2959
+ "properties": {
2960
+ "code": {
2961
+ "type": "string"
2962
+ },
2963
+ "name": {
2964
+ "type": "string"
2965
+ },
2966
+ "lastKind": {
2967
+ "type": "object",
2968
+ "properties": {
2969
+ "code": {
2970
+ "type": "string"
2971
+ },
2972
+ "name": {
2973
+ "type": "string"
2974
+ }
2975
+ },
2976
+ "required": [
2977
+ "code",
2978
+ "name"
2979
+ ]
2980
+ }
2981
+ },
2982
+ "required": [
2983
+ "code",
2984
+ "lastKind",
2985
+ "name"
2986
+ ]
2987
+ },
2988
+ "TsunamiInformation.TsunamiForecastFirstHeight": {
2989
+ "type": "object",
2990
+ "properties": {
2991
+ "arrivalTime": {
2992
+ "type": "string"
2993
+ },
2994
+ "condition": {
2995
+ "enum": [
2996
+ "ただちに津波来襲と予測",
2997
+ "津波到達中と推測",
2998
+ "第1波の到達を確認"
2999
+ ],
3000
+ "type": "string"
3001
+ },
3002
+ "revise": {
3003
+ "enum": [
3004
+ "更新",
3005
+ "追加"
3006
+ ],
3007
+ "type": "string"
3008
+ }
3009
+ }
3010
+ },
3011
+ "TsunamiInformation.TsunamiForecastMaxHeight": {
3012
+ "type": "object",
3013
+ "properties": {
3014
+ "height": {
3015
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastMaxHeightValue"
3016
+ },
3017
+ "condition": {
3018
+ "enum": [
3019
+ "重要"
3020
+ ],
3021
+ "type": "string"
3022
+ },
3023
+ "revise": {
3024
+ "enum": [
3025
+ "更新",
3026
+ "追加"
3027
+ ],
3028
+ "type": "string"
3029
+ }
3030
+ },
3031
+ "required": [
3032
+ "height"
3033
+ ]
3034
+ },
3035
+ "TsunamiInformation.TsunamiForecastMaxHeightValue": {
3036
+ "type": "object",
3037
+ "properties": {
3038
+ "type": {
3039
+ "type": "string",
3040
+ "enum": [
3041
+ "津波の高さ"
3042
+ ]
3043
+ },
3044
+ "unit": {
3045
+ "type": "string",
3046
+ "enum": [
3047
+ "m"
3048
+ ]
3049
+ },
3050
+ "value": {
3051
+ "type": [
3052
+ "null",
3053
+ "string"
3054
+ ]
3055
+ },
3056
+ "over": {
3057
+ "enum": [
3058
+ true
3059
+ ],
3060
+ "type": "boolean"
3061
+ },
3062
+ "condition": {
3063
+ "enum": [
3064
+ "巨大",
3065
+ "高い"
3066
+ ],
3067
+ "type": "string"
3068
+ }
3069
+ },
3070
+ "required": [
3071
+ "type",
3072
+ "unit",
3073
+ "value"
3074
+ ]
3075
+ },
3076
+ "TsunamiInformation.PublicVTSE51": {
3077
+ "type": "object",
3078
+ "properties": {
3079
+ "_schema": {
3080
+ "$ref": "#/definitions/TsunamiInformation.Schema"
3081
+ },
3082
+ "type": {
3083
+ "type": "string",
3084
+ "enum": [
3085
+ "津波情報a"
3086
+ ]
3087
+ },
3088
+ "title": {
3089
+ "enum": [
3090
+ "各地の満潮時刻・津波到達予想時刻に関する情報",
3091
+ "津波観測に関する情報"
3092
+ ],
3093
+ "type": "string"
3094
+ },
3095
+ "infoKind": {
3096
+ "type": "string",
3097
+ "enum": [
3098
+ "津波情報"
3099
+ ]
3100
+ },
3101
+ "eventId": {
3102
+ "type": "string"
3103
+ },
3104
+ "serialNo": {
3105
+ "type": "string"
3106
+ },
3107
+ "infoType": {
3108
+ "enum": [
3109
+ "発表",
3110
+ "訂正"
3111
+ ],
3112
+ "type": "string"
3113
+ },
3114
+ "body": {
3115
+ "$ref": "#/definitions/TsunamiInformation.PublicBodyVTSE51"
3116
+ },
3117
+ "_originalId": {
3118
+ "type": "string"
3119
+ },
3120
+ "status": {
3121
+ "enum": [
3122
+ "訓練",
3123
+ "試験",
3124
+ "通常"
3125
+ ],
3126
+ "type": "string"
3127
+ },
3128
+ "editorialOffice": {
3129
+ "type": "string"
3130
+ },
3131
+ "publishingOffice": {
3132
+ "type": "array",
3133
+ "items": {
3134
+ "type": "string"
3135
+ }
3136
+ },
3137
+ "pressDateTime": {
3138
+ "type": "string"
3139
+ },
3140
+ "reportDateTime": {
3141
+ "type": "string"
3142
+ },
3143
+ "targetDateTime": {
3144
+ "type": "string"
3145
+ },
3146
+ "targetDateTimeDubious": {
3147
+ "type": "string"
3148
+ },
3149
+ "targetDuration": {
3150
+ "type": "string"
3151
+ },
3152
+ "validDateTime": {
3153
+ "type": "string"
3154
+ },
3155
+ "infoKindVersion": {
3156
+ "type": "string"
3157
+ },
3158
+ "headline": {
3159
+ "type": [
3160
+ "null",
3161
+ "string"
3162
+ ]
3163
+ }
3164
+ },
3165
+ "required": [
3166
+ "_originalId",
3167
+ "_schema",
3168
+ "body",
3169
+ "editorialOffice",
3170
+ "eventId",
3171
+ "headline",
3172
+ "infoKind",
3173
+ "infoKindVersion",
3174
+ "infoType",
3175
+ "pressDateTime",
3176
+ "publishingOffice",
3177
+ "reportDateTime",
3178
+ "serialNo",
3179
+ "status",
3180
+ "targetDateTime",
3181
+ "title",
3182
+ "type"
3183
+ ]
3184
+ },
3185
+ "TsunamiInformation.PublicBodyVTSE51": {
3186
+ "type": "object",
3187
+ "properties": {
3188
+ "tsunami": {
3189
+ "$ref": "#/definitions/TsunamiInformation.PublicBodyVTSE51Tsunami"
3190
+ },
3191
+ "earthquakes": {
3192
+ "type": "array",
3193
+ "items": {
3194
+ "$ref": "#/definitions/Earthquake"
3195
+ }
3196
+ },
3197
+ "text": {
3198
+ "type": "string"
3199
+ },
3200
+ "comments": {
3201
+ "type": "object",
3202
+ "properties": {
3203
+ "free": {
3204
+ "type": "string"
3205
+ },
3206
+ "warning": {
3207
+ "type": "object",
3208
+ "properties": {
3209
+ "text": {
3210
+ "type": "string"
3211
+ },
3212
+ "codes": {
3213
+ "type": "array",
3214
+ "items": {
3215
+ "type": "string"
3216
+ }
3217
+ }
3218
+ },
3219
+ "required": [
3220
+ "codes",
3221
+ "text"
3222
+ ]
3223
+ }
3224
+ }
3225
+ }
3226
+ },
3227
+ "required": [
3228
+ "earthquakes",
3229
+ "tsunami"
3230
+ ]
3231
+ },
3232
+ "TsunamiInformation.PublicBodyVTSE51Tsunami": {
3233
+ "type": "object",
3234
+ "properties": {
3235
+ "forecasts": {
3236
+ "type": "array",
3237
+ "items": {
3238
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastVXSE51"
3239
+ }
3240
+ },
3241
+ "observations": {
3242
+ "type": "array",
3243
+ "items": {
3244
+ "$ref": "#/definitions/TsunamiInformation.TsunamiObservationVXSE51"
3245
+ }
3246
+ }
3247
+ },
3248
+ "required": [
3249
+ "forecasts",
3250
+ "observations"
3251
+ ]
3252
+ },
3253
+ "TsunamiInformation.TsunamiForecastVXSE51": {
3254
+ "type": "object",
3255
+ "properties": {
3256
+ "stations": {
3257
+ "type": "array",
3258
+ "items": {
3259
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastStation"
3260
+ }
3261
+ },
3262
+ "code": {
3263
+ "type": "string"
3264
+ },
3265
+ "name": {
3266
+ "type": "string"
3267
+ },
3268
+ "kind": {
3269
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastKind"
3270
+ },
3271
+ "firstHeight": {
3272
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastFirstHeight"
3273
+ },
3274
+ "maxHeight": {
3275
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastMaxHeight"
3276
+ }
3277
+ },
3278
+ "required": [
3279
+ "code",
3280
+ "firstHeight",
3281
+ "kind",
3282
+ "maxHeight",
3283
+ "name"
3284
+ ]
3285
+ },
3286
+ "TsunamiInformation.TsunamiForecastStation": {
3287
+ "type": "object",
3288
+ "properties": {
3289
+ "code": {
3290
+ "type": "string"
3291
+ },
3292
+ "name": {
3293
+ "type": "string"
3294
+ },
3295
+ "highTideDateTime": {
3296
+ "type": "string"
3297
+ },
3298
+ "firstHeight": {
3299
+ "$ref": "#/definitions/TsunamiInformation.TsunamiForecastFirstHeight"
3300
+ }
3301
+ },
3302
+ "required": [
3303
+ "code",
3304
+ "firstHeight",
3305
+ "highTideDateTime",
3306
+ "name"
3307
+ ]
3308
+ },
3309
+ "TsunamiInformation.TsunamiObservationVXSE51": {
3310
+ "type": "object",
3311
+ "properties": {
3312
+ "code": {
3313
+ "type": "string"
3314
+ },
3315
+ "name": {
3316
+ "type": "string"
3317
+ },
3318
+ "stations": {
3319
+ "type": "array",
3320
+ "items": {
3321
+ "$ref": "#/definitions/TsunamiInformation.TsunamiObservationStation"
3322
+ }
3323
+ }
3324
+ },
3325
+ "required": [
3326
+ "code",
3327
+ "name",
3328
+ "stations"
3329
+ ]
3330
+ },
3331
+ "TsunamiInformation.TsunamiObservationStation": {
3332
+ "type": "object",
3333
+ "properties": {
3334
+ "code": {
3335
+ "type": "string"
3336
+ },
3337
+ "name": {
3338
+ "type": "string"
3339
+ },
3340
+ "sensor": {
3341
+ "type": "string"
3342
+ },
3343
+ "firstHeight": {
3344
+ "$ref": "#/definitions/TsunamiInformation.TsunamiObservationStationFirstHeight"
3345
+ },
3346
+ "maxHeight": {
3347
+ "$ref": "#/definitions/TsunamiInformation.TsunamiObservationStationMaxHeight"
3348
+ }
3349
+ },
3350
+ "required": [
3351
+ "code",
3352
+ "firstHeight",
3353
+ "maxHeight",
3354
+ "name"
3355
+ ]
3356
+ },
3357
+ "TsunamiInformation.TsunamiObservationStationFirstHeight": {
3358
+ "type": "object",
3359
+ "properties": {
3360
+ "arrivalTime": {
3361
+ "type": "string"
3362
+ },
3363
+ "initial": {
3364
+ "enum": [
3365
+ "引き",
3366
+ "押し"
3367
+ ],
3368
+ "type": "string"
3369
+ },
3370
+ "condition": {
3371
+ "enum": [
3372
+ "第1波識別不能"
3373
+ ],
3374
+ "type": "string"
3375
+ },
3376
+ "revise": {
3377
+ "enum": [
3378
+ "更新",
3379
+ "追加"
3380
+ ],
3381
+ "type": "string"
3382
+ }
3383
+ },
3384
+ "required": [
3385
+ "arrivalTime"
3386
+ ]
3387
+ },
3388
+ "TsunamiInformation.TsunamiObservationStationMaxHeight": {
3389
+ "type": "object",
3390
+ "properties": {
3391
+ "dateTime": {
3392
+ "type": "string"
3393
+ },
3394
+ "height": {
3395
+ "$ref": "#/definitions/TsunamiInformation.TsunamiObservationStationMaxHeightValue"
3396
+ },
3397
+ "condition": {
3398
+ "enum": [
3399
+ "微弱",
3400
+ "観測中",
3401
+ "重要"
3402
+ ],
3403
+ "type": "string"
3404
+ },
3405
+ "revise": {
3406
+ "enum": [
3407
+ "更新",
3408
+ "追加"
3409
+ ],
3410
+ "type": "string"
3411
+ }
3412
+ }
3413
+ },
3414
+ "TsunamiInformation.TsunamiObservationStationMaxHeightValue": {
3415
+ "type": "object",
3416
+ "properties": {
3417
+ "type": {
3418
+ "type": "string",
3419
+ "enum": [
3420
+ "これまでの最大波の高さ"
3421
+ ]
3422
+ },
3423
+ "unit": {
3424
+ "type": "string",
3425
+ "enum": [
3426
+ "m"
3427
+ ]
3428
+ },
3429
+ "value": {
3430
+ "type": [
3431
+ "null",
3432
+ "string"
3433
+ ]
3434
+ },
3435
+ "over": {
3436
+ "enum": [
3437
+ true
3438
+ ],
3439
+ "type": "boolean"
3440
+ },
3441
+ "condition": {
3442
+ "enum": [
3443
+ "上昇中"
3444
+ ],
3445
+ "type": "string"
3446
+ }
3447
+ },
3448
+ "required": [
3449
+ "type",
3450
+ "unit",
3451
+ "value"
3452
+ ]
3453
+ },
3454
+ "TsunamiInformation.PublicVTSE52": {
3455
+ "type": "object",
3456
+ "properties": {
3457
+ "_schema": {
3458
+ "$ref": "#/definitions/TsunamiInformation.Schema"
3459
+ },
3460
+ "type": {
3461
+ "type": "string",
3462
+ "enum": [
3463
+ "沖合の津波観測に関する情報"
3464
+ ]
3465
+ },
3466
+ "title": {
3467
+ "type": "string",
3468
+ "enum": [
3469
+ "沖合の津波観測に関する情報"
3470
+ ]
3471
+ },
3472
+ "infoKind": {
3473
+ "type": "string",
3474
+ "enum": [
3475
+ "津波情報"
3476
+ ]
3477
+ },
3478
+ "eventId": {
3479
+ "type": "string"
3480
+ },
3481
+ "serialNo": {
3482
+ "type": "string"
3483
+ },
3484
+ "infoType": {
3485
+ "enum": [
3486
+ "発表",
3487
+ "訂正"
3488
+ ],
3489
+ "type": "string"
3490
+ },
3491
+ "body": {
3492
+ "$ref": "#/definitions/TsunamiInformation.PublicBodyVTSE52"
3493
+ },
3494
+ "_originalId": {
3495
+ "type": "string"
3496
+ },
3497
+ "status": {
3498
+ "enum": [
3499
+ "訓練",
3500
+ "試験",
3501
+ "通常"
3502
+ ],
3503
+ "type": "string"
3504
+ },
3505
+ "editorialOffice": {
3506
+ "type": "string"
3507
+ },
3508
+ "publishingOffice": {
3509
+ "type": "array",
3510
+ "items": {
3511
+ "type": "string"
3512
+ }
3513
+ },
3514
+ "pressDateTime": {
3515
+ "type": "string"
3516
+ },
3517
+ "reportDateTime": {
3518
+ "type": "string"
3519
+ },
3520
+ "targetDateTime": {
3521
+ "type": "string"
3522
+ },
3523
+ "targetDateTimeDubious": {
3524
+ "type": "string"
3525
+ },
3526
+ "targetDuration": {
3527
+ "type": "string"
3528
+ },
3529
+ "validDateTime": {
3530
+ "type": "string"
3531
+ },
3532
+ "infoKindVersion": {
3533
+ "type": "string"
3534
+ },
3535
+ "headline": {
3536
+ "type": [
3537
+ "null",
3538
+ "string"
3539
+ ]
3540
+ }
3541
+ },
3542
+ "required": [
3543
+ "_originalId",
3544
+ "_schema",
3545
+ "body",
3546
+ "editorialOffice",
3547
+ "eventId",
3548
+ "headline",
3549
+ "infoKind",
3550
+ "infoKindVersion",
3551
+ "infoType",
3552
+ "pressDateTime",
3553
+ "publishingOffice",
3554
+ "reportDateTime",
3555
+ "serialNo",
3556
+ "status",
3557
+ "targetDateTime",
3558
+ "title",
3559
+ "type"
3560
+ ]
3561
+ },
3562
+ "TsunamiInformation.PublicBodyVTSE52": {
3563
+ "type": "object",
3564
+ "properties": {
3565
+ "tsunami": {
3566
+ "$ref": "#/definitions/TsunamiInformation.PublicBodyVTSE52Tsunami"
3567
+ },
3568
+ "earthquakes": {
3569
+ "type": "array",
3570
+ "items": {
3571
+ "$ref": "#/definitions/Earthquake"
3572
+ }
3573
+ },
3574
+ "text": {
3575
+ "type": "string"
3576
+ },
3577
+ "comments": {
3578
+ "type": "object",
3579
+ "properties": {
3580
+ "free": {
3581
+ "type": "string"
3582
+ },
3583
+ "warning": {
3584
+ "type": "object",
3585
+ "properties": {
3586
+ "text": {
3587
+ "type": "string"
3588
+ },
3589
+ "codes": {
3590
+ "type": "array",
3591
+ "items": {
3592
+ "type": "string"
3593
+ }
3594
+ }
3595
+ },
3596
+ "required": [
3597
+ "codes",
3598
+ "text"
3599
+ ]
3600
+ }
3601
+ }
3602
+ }
3603
+ },
3604
+ "required": [
3605
+ "earthquakes",
3606
+ "tsunami"
3607
+ ]
3608
+ },
3609
+ "TsunamiInformation.PublicBodyVTSE52Tsunami": {
3610
+ "type": "object",
3611
+ "properties": {
3612
+ "observations": {
3613
+ "type": "array",
3614
+ "items": {
3615
+ "$ref": "#/definitions/TsunamiInformation.TsunamiObservationVXSE52"
3616
+ }
3617
+ },
3618
+ "estimations": {
3619
+ "type": "array",
3620
+ "items": {
3621
+ "$ref": "#/definitions/TsunamiInformation.TsunamiEstimation"
3622
+ }
3623
+ }
3624
+ },
3625
+ "required": [
3626
+ "estimations",
3627
+ "observations"
3628
+ ]
3629
+ },
3630
+ "TsunamiInformation.TsunamiObservationVXSE52": {
3631
+ "type": "object",
3632
+ "properties": {
3633
+ "code": {
3634
+ "type": "null"
3635
+ },
3636
+ "name": {
3637
+ "type": "null"
3638
+ },
3639
+ "stations": {
3640
+ "type": "array",
3641
+ "items": {
3642
+ "$ref": "#/definitions/TsunamiInformation.TsunamiObservationStation"
3643
+ }
3644
+ }
3645
+ },
3646
+ "required": [
3647
+ "code",
3648
+ "name",
3649
+ "stations"
3650
+ ]
3651
+ },
3652
+ "TsunamiInformation.TsunamiEstimation": {
3653
+ "type": "object",
3654
+ "properties": {
3655
+ "code": {
3656
+ "type": "string"
3657
+ },
3658
+ "name": {
3659
+ "type": "string"
3660
+ },
3661
+ "firstHeight": {
3662
+ "$ref": "#/definitions/TsunamiInformation.TsunamiEstimationFirstHeight"
3663
+ },
3664
+ "maxHeight": {
3665
+ "$ref": "#/definitions/TsunamiInformation.TsunamiEstimationMaxHeight"
3666
+ }
3667
+ },
3668
+ "required": [
3669
+ "code",
3670
+ "firstHeight",
3671
+ "maxHeight",
3672
+ "name"
3673
+ ]
3674
+ },
3675
+ "TsunamiInformation.TsunamiEstimationFirstHeight": {
3676
+ "type": "object",
3677
+ "properties": {
3678
+ "arrivalTime": {
3679
+ "type": "string"
3680
+ },
3681
+ "condition": {
3682
+ "enum": [
3683
+ "早いところでは既に津波到達と推定"
3684
+ ],
3685
+ "type": "string"
3686
+ },
3687
+ "revise": {
3688
+ "enum": [
3689
+ "更新",
3690
+ "追加"
3691
+ ],
3692
+ "type": "string"
3693
+ }
3694
+ },
3695
+ "required": [
3696
+ "arrivalTime"
3697
+ ]
3698
+ },
3699
+ "TsunamiInformation.TsunamiEstimationMaxHeight": {
3700
+ "type": "object",
3701
+ "properties": {
3702
+ "dateTime": {
3703
+ "type": "string"
3704
+ },
3705
+ "height": {
3706
+ "$ref": "#/definitions/TsunamiInformation.TsunamiEstimationMaxHeightValue"
3707
+ },
3708
+ "condition": {
3709
+ "enum": [
3710
+ "微弱",
3711
+ "観測中",
3712
+ "重要"
3713
+ ],
3714
+ "type": "string"
3715
+ },
3716
+ "revise": {
3717
+ "enum": [
3718
+ "更新",
3719
+ "追加"
3720
+ ],
3721
+ "type": "string"
3722
+ }
3723
+ }
3724
+ },
3725
+ "TsunamiInformation.TsunamiEstimationMaxHeightValue": {
3726
+ "type": "object",
3727
+ "properties": {
3728
+ "type": {
3729
+ "type": "string",
3730
+ "enum": [
3731
+ "津波の高さ"
3732
+ ]
3733
+ },
3734
+ "unit": {
3735
+ "type": "string",
3736
+ "enum": [
3737
+ "m"
3738
+ ]
3739
+ },
3740
+ "value": {
3741
+ "type": [
3742
+ "null",
3743
+ "string"
3744
+ ]
3745
+ },
3746
+ "over": {
3747
+ "enum": [
3748
+ true
3749
+ ],
3750
+ "type": "boolean"
3751
+ }
3752
+ },
3753
+ "required": [
3754
+ "type",
3755
+ "unit",
3756
+ "value"
3757
+ ]
3758
+ },
3759
+ "TsunamiInformation.Channel": {
3760
+ "type": "object",
3761
+ "properties": {
3762
+ "type": {
3763
+ "enum": [
3764
+ "各地の満潮時刻・津波到達予想時刻に関する情報",
3765
+ "大津波警報・津波警報・津波予報a",
3766
+ "津波情報a",
3767
+ "津波観測に関する情報"
3768
+ ],
3769
+ "type": "string"
3770
+ },
3771
+ "infoType": {
3772
+ "type": "string",
3773
+ "enum": [
3774
+ "取消"
3775
+ ]
3776
+ },
3777
+ "eventId": {
3778
+ "type": "string"
3779
+ },
3780
+ "body": {
3781
+ "$ref": "#/definitions/TsunamiInformation.ChancelBody"
3782
+ },
3783
+ "_originalId": {
3784
+ "type": "string"
3785
+ },
3786
+ "_schema": {
3787
+ "type": "object",
3788
+ "properties": {
3789
+ "type": {
3790
+ "type": "string"
3791
+ },
3792
+ "version": {
3793
+ "type": "string"
3794
+ }
3795
+ },
3796
+ "required": [
3797
+ "type",
3798
+ "version"
3799
+ ]
3800
+ },
3801
+ "title": {
3802
+ "type": "string"
3803
+ },
3804
+ "status": {
3805
+ "enum": [
3806
+ "訓練",
3807
+ "試験",
3808
+ "通常"
3809
+ ],
3810
+ "type": "string"
3811
+ },
3812
+ "editorialOffice": {
3813
+ "type": "string"
3814
+ },
3815
+ "publishingOffice": {
3816
+ "type": "array",
3817
+ "items": {
3818
+ "type": "string"
3819
+ }
3820
+ },
3821
+ "pressDateTime": {
3822
+ "type": "string"
3823
+ },
3824
+ "reportDateTime": {
3825
+ "type": "string"
3826
+ },
3827
+ "targetDateTime": {
3828
+ "type": "string"
3829
+ },
3830
+ "targetDateTimeDubious": {
3831
+ "type": "string"
3832
+ },
3833
+ "targetDuration": {
3834
+ "type": "string"
3835
+ },
3836
+ "validDateTime": {
3837
+ "type": "string"
3838
+ },
3839
+ "serialNo": {
3840
+ "type": [
3841
+ "null",
3842
+ "string"
3843
+ ]
3844
+ },
3845
+ "infoKind": {
3846
+ "type": "string"
3847
+ },
3848
+ "infoKindVersion": {
3849
+ "type": "string"
3850
+ },
3851
+ "headline": {
3852
+ "type": [
3853
+ "null",
3854
+ "string"
3855
+ ]
3856
+ }
3857
+ },
3858
+ "required": [
3859
+ "_originalId",
3860
+ "_schema",
3861
+ "body",
3862
+ "editorialOffice",
3863
+ "eventId",
3864
+ "headline",
3865
+ "infoKind",
3866
+ "infoKindVersion",
3867
+ "infoType",
3868
+ "pressDateTime",
3869
+ "publishingOffice",
3870
+ "reportDateTime",
3871
+ "serialNo",
3872
+ "status",
3873
+ "targetDateTime",
3874
+ "title",
3875
+ "type"
3876
+ ]
3877
+ },
3878
+ "TsunamiInformation.ChancelBody": {
3879
+ "type": "object",
3880
+ "properties": {
3881
+ "text": {
3882
+ "type": "string"
3883
+ }
3884
+ },
3885
+ "required": [
3886
+ "text"
3887
+ ]
3888
+ }
3889
+ },
3890
+ "$schema": "http://json-schema.org/draft-07/schema#"
3891
+ }