|
| 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