From c00d800e7f9b4330aaee05509a11e944e23590e2 Mon Sep 17 00:00:00 2001 From: Judith Racusin Date: Thu, 30 Nov 2023 13:52:29 -0500 Subject: [PATCH] fixing verification errors --- gcn/notices/burstcube/Alert.example.json | 8 ++++---- gcn/notices/burstcube/Alert.schema.json | 15 +++++++-------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/gcn/notices/burstcube/Alert.example.json b/gcn/notices/burstcube/Alert.example.json index ffc7ab7a..040b6302 100644 --- a/gcn/notices/burstcube/Alert.example.json +++ b/gcn/notices/burstcube/Alert.example.json @@ -6,14 +6,14 @@ "mission": "BurstCube", "record_number": 1, "trigger_time": "2024-06-01T00:00:00.0Z", - "event_name": "GRB240601A", - "id": "b240601000", + "event_name": ["GRB240601A"], + "id": ["b240601000"], "ra": 232.0, "dec": -53.1, "uncertainty_shape": "circle", "ra_uncertainty": [-4.6, 6.1], "dec_uncertainty": [-3.4, 5.6], - "systematic_included": 0, + "systematic_included": false, "healpix_url": "https://heasarc.gsfc.nasa.gov/burstcube/trigger/b240601000/current/b240601000_locmap.fits", "healpix_file": "stuff", "rate_snr": 7.2, @@ -21,7 +21,7 @@ "rate_energy_range": [50, 300], "classification": { "GRB": 0.95, "SF": 0.03, "Local Particles": 0.02 }, "t90": 2.3, - "t90_error": 0.1, + "t90_error": [0.1, 0.1], "detector_status": { "CsI0": "triggered", "CsI1": "triggered", diff --git a/gcn/notices/burstcube/Alert.schema.json b/gcn/notices/burstcube/Alert.schema.json index a66fddf6..1c8d5d0d 100644 --- a/gcn/notices/burstcube/Alert.schema.json +++ b/gcn/notices/burstcube/Alert.schema.json @@ -9,26 +9,25 @@ "$ref": "../core/Alert.schema.json" }, { - "$ref": "../../core/Reporter.schema.json" + "$ref": "../core/Reporter.schema.json" }, { - "$ref": "../../core/DateTime.schema.json" + "$ref": "../core/DateTime.schema.json" }, { - "$ref": "../../core/Event.schema.json" + "$ref": "../core/Event.schema.json" }, { "$ref": "../core/Localization.schema.json" }, { - "$ref": "../../core/Statistics.schema.json" + "$ref": "../core/Statistics.schema.json" }, { - "$ref": "../../core/Duration.schema.json" + "$ref": "../core/Duration.schema.json" }, { - "$ref": "../../core/DetectorStatus.schema.json" + "$ref": "../core/DetectorStatus.schema.json" } - ], - "properties": {} + ] }