Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HEASARC archive notices #141

Merged
merged 11 commits into from
May 21, 2024
12 changes: 12 additions & 0 deletions gcn/notices/heasarc/archive_alert.example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/heasarc/archive_alert.schema.json",
"mission": "IXPE",
"alert_datetime": "2022-05-04T00:00:00Z",
"alert_tense": "archival",
"alert_type": "initial",
"data_archive_page": "https://heasarc.gsfc.nasa.gov/FTP/ixpe/data/obs/01/01001099/",
"observation_id": "01001099",
"target_name": "Crab",
"observation_datetime": "2022-02-21T16:12:23.000",
"mission_page": "https://heasarc.gsfc.nasa.gov/docs/ixpe/"
}
37 changes: 37 additions & 0 deletions gcn/notices/heasarc/archive_alert.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"$id": "https://gcn.nasa.gov/schema/main/gcn/notices/heasarc/archive_alert.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"unevaluatedProperties": false,
"title": "HEASARC - Data in Archive",
"description": "Data Archived at HEASARC",
"allOf": [
{
"$ref": "../core/Reporter.schema.json"
},
{
"$ref": "../core/Alert.schema.json"
},
{
"$ref": "../core/Event.schema.json"
}
],
"properties": {
"observation_id": {
"type": "string",
"description": "The observation ID of the sequence"
},
"target_name": {
"type": "string",
"description": "Name of the target object for the observation"
},
"observation_datetime": {
"type": "string",
"description": "Start time of observation"
},
lpsinger marked this conversation as resolved.
Show resolved Hide resolved
"mission_page": {
"type": "string",
"description": "Webpage of mission at HEASARC"
}
}
}
Loading