Skip to content

Commit 3ea1658

Browse files
author
Athish Thiruvengadam
committed
LVK schema json
LVK example json
1 parent 700167a commit 3ea1658

File tree

2 files changed

+119
-0
lines changed

2 files changed

+119
-0
lines changed

gcn/notices/lvk/alert.example.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/lvk/alert.schema.json",
3+
"alert_type": "update",
4+
"alert_datetime": "2018-11-01T22:36:25Z",
5+
"id": ["MS181101ab"],
6+
"trigger_time": "2018-11-01T22:22:46.654Z",
7+
"far": 9.11069936486e-14,
8+
"significant": true,
9+
"detector_status": {
10+
"H1": "triggered",
11+
"L1": "triggered",
12+
"V1": "triggered"
13+
},
14+
"healpix_file": "U0lNUExFICA9ICAgICAgICAgICAgICAgICAgICBUIC8gY29uZm...",
15+
"healpix_url": "https://gracedb.ligo.org/api/superevents/MS181101ab/files/bayestar.multiorder.fits,0",
16+
"search": "MDC",
17+
"group": "CBC",
18+
"pipeline": "gstlal",
19+
"duration": null,
20+
"central_frequency": null,
21+
"properties": { "HasNS": 0.95, "HasRemnant": 0.91, "HasMassGap": 0.01 },
22+
"classification": {
23+
"BNS": 0.95,
24+
"NSBH": 0.01,
25+
"BBH": 0.03,
26+
"Terrestrial": 0.01
27+
},
28+
"external_coincidence": {
29+
"gcn_notice_id": 524666471,
30+
"ivorn": "ivo://nasa.gsfc.gcn/Fermi#GBM_Fin_Pos2017-08-17T12:41:06.47_524666471_0-389",
31+
"observatory": "Fermi",
32+
"search": "GRB",
33+
"time_difference": 2.02,
34+
"time_coincidence_far": 2.14387838137e-14,
35+
"time_sky_position_coincidence_far": 6.410749524018777e-16,
36+
"combined_skymap": "U0lNUExFICA9ICAgICAgICAgICAgICAgICAgICBUIC8gY29uZm..."
37+
}
38+
}

gcn/notices/lvk/alert.schema.json

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"$id": "https://gcn.nasa.gov/schema/main/gcn/notices/lvk/alert.schema.json",
3+
"$schema": "https://json-schema.org/draft/2020-12/schema",
4+
"type": "object",
5+
"unevaluatedProperties": false,
6+
"title": "Alert",
7+
"description": "LIGO-Virgo Collaboration Gravitational Wave Alert",
8+
"allOf": [
9+
{ "$ref": "../core/Alert.schema.json" },
10+
{ "$ref": "../core/DateTime.schema.json" },
11+
{ "$ref": "../core/Event.schema.json" },
12+
{ "$ref": "../core/Reporter.schema.json" },
13+
{ "$ref": "../core/Statistics.schema.json" }
14+
],
15+
"properties": {
16+
"duration": {
17+
"type": ["number", "null"],
18+
"description": "Duration of GW signal. Defined only for the burst class of events."
19+
},
20+
"central_frequency": {
21+
"type": ["number", "null"],
22+
"description": "Peak frequency of GW signal in Hz. Defined only for the burst class of events."
23+
},
24+
"pipeline": {
25+
"type": "string",
26+
"description": "The pipeline used to process the triggers."
27+
},
28+
"search": {
29+
"type": "string",
30+
"description": "The search method used for the GW event."
31+
},
32+
"group": {
33+
"type": "string",
34+
"description": "The class of GW trigger: CBC or Burst."
35+
},
36+
"significant": {
37+
"type": "boolean",
38+
"description": "Whether the far is above a certain threshold."
39+
},
40+
"external_coincidence": {
41+
"type": "object",
42+
"description": "Coincidence with a non-GW event sent through GCN.",
43+
"properties": {
44+
"gcn_id": {
45+
"type": "number",
46+
"description": "ID used by GCN to identify external event."
47+
},
48+
"ivorn": {
49+
"type": "string",
50+
"description": "External IVORN identification field."
51+
},
52+
"observatory": {
53+
"type": "string",
54+
"description": "The mission which detected the external event."
55+
},
56+
"search": {
57+
"type": "string",
58+
"description": "The search method used to find the external event."
59+
},
60+
"time_difference": {
61+
"type": "number",
62+
"description": "Time between GW source and external event [secs]"
63+
},
64+
"time_coincidence_far": {
65+
"type": "number",
66+
"description": "Estimated coincidence false alarm rate using just timing [Hz]"
67+
},
68+
"time_sky_position_coincidence_far": {
69+
"type": "number",
70+
"description": "Estimated coincidence false alarm rate using timing and sky position [Hz]"
71+
},
72+
"combined_healpix_map": {
73+
"type": "string",
74+
"contentEncoding": "base64",
75+
"contentMediaType": "image/fits",
76+
"description": "The GW skymap and the external coincidence skymap combined in a multi-order FITS file as a Base64-encoded string."
77+
}
78+
}
79+
}
80+
}
81+
}

0 commit comments

Comments
 (0)