Skip to content

Commit b1e5a4a

Browse files
author
Athish Thiruvengadam
committed
GCN classic schema
ALEXIS schema and example jsons CALET GBM schema and example GECAM schema and example SK_SN schema and example SUAZKU schema and example BeppoSAX schema and example RXTE schema and conversion Updated BeppoSAX schema and example KONUS schema and example LVC schema and example NEAR schema and example SNEWS example and schema HETE schema and example MILAGRO schema and example updated MILAGRO example Counterpart schema and example MOA schema and example MAXI schema and examples AGILE schema and examples INTEGRAL schema and example AMON Text and Examples
1 parent 9997d3e commit b1e5a4a

47 files changed

Lines changed: 1454 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"alert_datetime": "2008-8-25T21:08:50Z",
3+
"id": [599],
4+
"trigger_time": "2008-08-25T17:46:40.00Z",
5+
"ra": 209.281,
6+
"dec": -68.943,
7+
"ra_dec_error": 3.0,
8+
"n_events_x": 1071.739,
9+
"snr_x": 17.51,
10+
"additional_info": "SuperAGILE GRB Coordinates. \nThis is a GRB. \nSuperAGILE ground GRB coordinates",
11+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/agile/alert.schema.json",
12+
"mission": "AGILE",
13+
"notice_type": "Ground",
14+
"systematic_included": true,
15+
"n_events_y": 919.802,
16+
"snr_y": 16.3
17+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"alert_datetime": "2022-9-16T14:36:53Z",
3+
"id": [590418347],
4+
"trigger_time": "2022-09-16T13:05:47.55Z",
5+
"n_events": 234,
6+
"events_snr": 16.6,
7+
"peak_events": 30,
8+
"peak_snr": 8.19,
9+
"bkg_events": 7,
10+
"triggering_interval": 0.032,
11+
"duration": 0.349,
12+
"lightcurve_url": "http://www.agilescienceapp.it/notices/080080_GRB_590418347.550575.png",
13+
"additional_info": "AGILE MCAL TRIGGER.",
14+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/agile/alert.schema.json",
15+
"mission": "AGILE",
16+
"notice_type": "MCAL",
17+
"longitude": 175.6,
18+
"latitude": 1.62,
19+
"events_energy_range": [400, 100000],
20+
"trigger_logic": {
21+
"sub-ms": false,
22+
"1ms": false,
23+
"16ms": false,
24+
"64ms": false,
25+
"256ms": false,
26+
"1024ms": false,
27+
"8192ms": false
28+
}
29+
}
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"$id": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/agile/alert.schema.json",
3+
"$schema": "https://json-schema.org/draft/2020-12/schema",
4+
"type": "object",
5+
"unevaluatedProperties": false,
6+
"title": "Alert",
7+
"description": "AGILE GRB Trigger Alert",
8+
"allOf": [
9+
{ "$ref": "../../core/AdditionalInfo.schema.json" },
10+
{ "$ref": "../../core/Alert.schema.json" },
11+
{ "$ref": "../../core/DateTime.schema.json" },
12+
{ "$ref": "../../core/Event.schema.json" },
13+
{ "$ref": "../../core/GeoLocBase.schema.json" },
14+
{ "$ref": "../../core/Localization.schema.json" },
15+
{ "$ref": "../../core/Reporter.schema.json" }
16+
],
17+
"properties": {
18+
"$schema": true,
19+
"notice_type": { "type": "string", "enum": ["Ground", "MCAL"] },
20+
"duration": {
21+
"type": "number",
22+
"description": "The duration of the lightcurve. For MCAL notices only."
23+
},
24+
"triggering_interval": {
25+
"type": "number",
26+
"description": "The binning size of the the bins in the lightcurve. For MCAL notices only."
27+
},
28+
"n_events": {
29+
"type": "number",
30+
"description": "The total number of counts in the duration of the burst. For MCAL notices only."
31+
},
32+
"n_events_x": {
33+
"type": "number",
34+
"description": "The number of events in the X 1-D localization. For Ground notices only."
35+
},
36+
"n_events_y": {
37+
"type": "number",
38+
"description": "The number of events in the Y 1-D localization. For Ground notices only."
39+
},
40+
"events_snr": {
41+
"type": "number",
42+
"description": "The significance of peak countrate. For MCAL notices only."
43+
},
44+
"snr_x": {
45+
"type": "number",
46+
"description": "The X-drection significance. For Ground notices only."
47+
},
48+
"snr_y": {
49+
"type": "number",
50+
"description": "The Y-drection significance. For Ground notices only."
51+
},
52+
"lightcurve_url": {
53+
"type": "string",
54+
"description": "URL to the Lightcurve image. For MCAL notices only."
55+
},
56+
"peak_events": {
57+
"type": "number",
58+
"description": "The total number of counts at the peak of the burst. For MCAL notices only."
59+
},
60+
"peak_snr": {
61+
"type": "number",
62+
"description": "The significance of the peak countrate. For MCAL notices only."
63+
},
64+
"bkg_events": {
65+
"type": "number",
66+
"description": "The total number of background counts in the 32 msec window. For MCAL notices only."
67+
},
68+
"events_energy_range": {
69+
"type": "array",
70+
"minItems": 2,
71+
"maxItems": 2,
72+
"description": "The energy windown of the event [keV]. For MCAL notices only."
73+
},
74+
"trigger_logic": {
75+
"type": "object",
76+
"description": "If the trigger time interval participated in the trigger logic. For MCAL notices only.",
77+
"properties": {
78+
"sub-ms": { "type": "boolean" },
79+
"1ms": { "type": "boolean" },
80+
"16ms": { "type": "boolean" },
81+
"64ms": { "type": "boolean" },
82+
"256ms": { "type": "boolean" },
83+
"1024ms": { "type": "boolean" },
84+
"8192ms": { "type": "boolean" }
85+
}
86+
}
87+
}
88+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/alexis/alert.schema.json",
3+
"mission": "ALEXIS",
4+
"end_datetime": "2099-12-30T11:40:11Z",
5+
"map_duration": 48,
6+
"notice_type": "Initial",
7+
"ra": 193.62,
8+
"dec": 23.41,
9+
"ra_dec_error": 0.66,
10+
"containment_probability": 0.9973002039367398,
11+
"systematic_included": true,
12+
"alpha": 10.8,
13+
"telescope_id": "1B",
14+
"energy_bandpass": 70
15+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"$id": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/alexis/alert.schema.json",
3+
"$schema": "https://json-schema.org/draft/2020-12/schema",
4+
"type": "object",
5+
"unevaluatedProperties": false,
6+
"title": "Alert",
7+
"description": "ALEXIS UV Transient Alert",
8+
"allOf": [
9+
{ "$ref": "../../core/Reporter.schema.json" },
10+
{ "$ref": "../../core/Localization.schema.json" }
11+
],
12+
"properties": {
13+
"$schema": true,
14+
"end_datetime": {
15+
"type": "string",
16+
"description": "The time at which the map integration ended [ISO 8601]"
17+
},
18+
"notice_type": {
19+
"type": "string",
20+
"description": "ALEXIS has two notice types: Initial and Final."
21+
},
22+
"map_duration": {
23+
"type": "number",
24+
"description": "The amount of time that went into accumalating the data where the transient was found [hrs]."
25+
},
26+
"alpha": {
27+
"type": "number",
28+
"description": "Parameterizes the statistical significance of the detection. alpha=-log10(probability_of_false_detection)."
29+
},
30+
"telescope_id": {
31+
"type": "string",
32+
"description": "The telescope in which the transient was identified."
33+
},
34+
"energy_bandpass": {
35+
"type": "number",
36+
"description": "The energy bandpass associated with the telescope [eV]"
37+
}
38+
}
39+
}
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"$id": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/amon/alert.schema.json",
3+
"$schema": "https://json-schema.org/draft/2020-12/schema",
4+
"type": "object",
5+
"unevaluatedProperties": false,
6+
"title": "Alert",
7+
"description": "AMON Neutrino Trigger Alert",
8+
"allOf": [
9+
{ "$ref": "../../core/AdditionalInfo.schema.json" },
10+
{ "$ref": "../../core/Alert.schema.json" },
11+
{ "$ref": "../../core/DateTime.schema.json" },
12+
{ "$ref": "../../core/Event.schema.json" },
13+
{ "$ref": "../../core/Localization.schema.json" },
14+
{ "$ref": "../../core/Pointing.schema.json" },
15+
{ "$ref": "../../core/Reporter.schema.json" },
16+
{ "$ref": "../../core/Statistics.schema.json" }
17+
],
18+
"properties": {
19+
"$schema": true,
20+
"notice_type": {
21+
"type": "string",
22+
"enum": [
23+
"Astrotrack Bronze",
24+
"Astrotrack Gold",
25+
"Cascade",
26+
"EHE",
27+
"HESE",
28+
"Neutrino-EM Coincidence",
29+
"Burst"
30+
]
31+
},
32+
"ra_dec_error_50": {
33+
"type": "number",
34+
"description": "The radies of circle that contains on average 50\\% t of the sources"
35+
},
36+
"energy": {
37+
"type": "number",
38+
"description": "The lower bound estimate of the neutrino."
39+
},
40+
"signalness": {
41+
"type": "number",
42+
"description": "The probability that the neutrino event was signal and track-like."
43+
},
44+
"delta_time": {
45+
"type": "number",
46+
"description": "Time window of the burst"
47+
},
48+
"sigma_time": {
49+
"type": "number",
50+
"description": "The uncertainity of the time window"
51+
},
52+
"p_value": {
53+
"type": "number",
54+
"description": "The chance that the alert is an atmospheric neutrino."
55+
},
56+
"event_date": {
57+
"type": "string",
58+
"description": "The date-based name for the event."
59+
},
60+
"n_events": {
61+
"type": "number",
62+
"description": "The number of events that occured during the deltaT window."
63+
},
64+
"charge": {
65+
"type": "number",
66+
"description": "The total neutrino event charge in photo-electrons"
67+
},
68+
"false_positive": {
69+
"type": "number",
70+
"description": "Specifies how often a trigger of this intensity would happend from just noise fluctuation."
71+
},
72+
"coincidence_with": {
73+
"type": "array",
74+
"minItems": 1,
75+
"maxItems": 9,
76+
"description": "The instruments with a coincident trigger."
77+
}
78+
}
79+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"alert_datetime": "2024-2-04T09:10:06Z",
3+
"trigger_time": "2024-02-04T09:09:00.44Z",
4+
"ra": 348.6482,
5+
"dec": 11.0595,
6+
"ra_dec_error": 30.8,
7+
"ra_dec_error_50": 12.0,
8+
"record_number": 1,
9+
"energy": 155920000000.0,
10+
"signalness": 0.41419,
11+
"far": 5.100202942668696e-8,
12+
"additional_info": "IceCube Bronze event. \nThe position error is statistical only, there is no systematic added.",
13+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/amon/alert.schema.json",
14+
"mission": "AMON",
15+
"notice_type": "Astrotrack Bronze",
16+
"id": ["138938_62272876"]
17+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"alert_datetime": "2021-5-12T20:03:55Z",
3+
"trigger_time": "2021-05-12T20:03:27.00Z",
4+
"ra": 76.7242,
5+
"dec": 28.143,
6+
"ra_dec_error": 35.99,
7+
"record_number": 1,
8+
"far": 2.4865233384069e-7,
9+
"delta_time": 1.0,
10+
"p_value": 0.0109,
11+
"additional_info": "HAWC burst monitor event. \nThe position error is statistical only, there is no systematic added.",
12+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/amon/alert.schema.json",
13+
"mission": "AMON",
14+
"notice_type": "Burst",
15+
"id": ["110081_574"]
16+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"alert_datetime": "2021-4-16T02:03:57Z",
3+
"trigger_time": "2021-04-16T01:58:00.70Z",
4+
"ra": 194.1867,
5+
"dec": -6.2888,
6+
"ra_dec_error": 19.85,
7+
"ra_dec_error_50": 10.89,
8+
"record_number": 1,
9+
"energy": 30.2,
10+
"signalness": 0.80427,
11+
"far": 2.973744292237443e-8,
12+
"additional_info": "IceCube Cascade event.\nThe position error is the combined statistical and the systematic.",
13+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/amon/alert.schema.json",
14+
"mission": "AMON",
15+
"notice_type": "Cascade",
16+
"id": ["135196_31863828"],
17+
"systematic_included": true,
18+
"event_name": ["IceCubeCascade-210416a"]
19+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"alert_datetime": "2023-1-25T13:25:38Z",
3+
"trigger_time": "2023-01-25T13:13:35.00Z",
4+
"ra": 198.2299,
5+
"dec": 59.5099,
6+
"ra_dec_error": 25.18,
7+
"ra_dec_error_50": 13.8,
8+
"record_number": 1,
9+
"far": 1.1096841704718416e-7,
10+
"event_date": "230125A",
11+
"additional_info": "AMON NEUTRINO-EM Coincidence.",
12+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/classic/amon/alert.schema.json",
13+
"mission": "AMON",
14+
"notice_type": "Neutrino-EM Coincidence",
15+
"id": ["0_127938"],
16+
"coincidence_with": ["IC-HAWC"]
17+
}

0 commit comments

Comments
 (0)