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

Expanding Core Schema for FRB #226

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions gcn/notices/core/DateTime.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
"maxItems": 2,
"description": "Trigger time uncertainty [s, 1-sigma], with optional asymmetric uncertainty"
},
"time_resolution": {
"type": "number",
"description": "Time resolution used for the source search [ms]"
},
"observation_start": {
"type": "string",
"description": "Start time of the observation [ISO 8601]"
Expand Down
23 changes: 23 additions & 0 deletions gcn/notices/core/DispersionMeasure.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$id": "https://gcn.nasa.gov/schema/main/gcn/notices/core/DispersionMeasure.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "Schema for Radio Transients Observables",
"description": "Dispersion Measure schema used for radio transients",
"properties": {
"dm": {
"type": "number",
"description": "Dispersion measure (DM) of the burst [pc/cm^3], representing the integrated column density of free electrons along the line of sight."
},
"dm_error": {
"type": "array",
"items": { "type": "number" },
"maxItems": 2,
"description": "Uncertainity associated with the dispersion measure [pc/cm^3, 1-sigma], with optional asymmetric uncertainty."
},
"dm_gal_ne_2001_max": {
"type": "number",
"description": "Estimated contribution to the dispersion measure [pc/cm^3], from the Galaxy using the NE2001 model."
}
}
}
6 changes: 6 additions & 0 deletions gcn/notices/core/Reporter.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@
"type": "string",
"default": "energy"
},
"spectral_center": {
"enum": ["energy", "wavelength", "frequency"],
"description": "Central value of the observing band",
"type": "number",
"default": "energy"
},
"units": {
"enum": ["keV", "nm", "Hz"],
"description": "Units of band range, if not parsed, then default energy is keV",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading