|
| 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 | +} |
0 commit comments