diff --git a/gcn/notices/astrosat/alert.schema.example.json b/gcn/notices/astrosat/alert.schema.example.json new file mode 100644 index 00000000..f94755b4 --- /dev/null +++ b/gcn/notices/astrosat/alert.schema.example.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/astrosat/alert.schema.json", + "instrument": "CZTI", + "trigger_time": "2024-03-01T21:46:05.13Z", + "ra": 120, + "dec": 40, + "ra_dec_error": 0.02, + "active_detectors": 3 +} diff --git a/gcn/notices/astrosat/alert.schema.json b/gcn/notices/astrosat/alert.schema.json new file mode 100644 index 00000000..d834642b --- /dev/null +++ b/gcn/notices/astrosat/alert.schema.json @@ -0,0 +1,20 @@ +{ + "$id": "https://gcn.nasa.gov/schema/main/gcn/notices/astrosat/alert.schema.json", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "title": "AstroSat GRB Detection", + "description": "Detection of a GRB by AstroSat", + "type": "object", + "allOf": [ + { "$ref": "../core/DateTime.schema.json" }, + { "$ref": "../core/Localization.schema.json" }, + { "$ref": "../core/Reporter.schema.json" } + ], + "properties": { + "$schema": true, + "active_detectors": { + "type": "number", + "description": "Number of detectors that triggered." + } + }, + "unevaluatedProperties": false +}