This repository contains the schemas for crafting new GCN notices. It also includes mission-specific schemas and illustrative examples, which are distributed by GCN Kafka. The formulation of mission schemas is one step in the process for setting up New Notice Producers.
The alert format for new Notices over GCN Kafka is JavaScript Object Notation (JSON), a widely adopted Internet data format. We have designed a set of core schema which serve as the building blocks for new GCN Notices. Instrument-specific schema can also be created, but we request that you utilize the core schema as much as possible.
Please add your schema to this repository under gcn/notices/mission/
and submit a pull request for the GCN Team to review. The GCN team is happy to iterate with the producers on their schema contents and format. Your pipeline will generate JSON files following these schema and send alerts to GCN as described in New Notice Producers.
To get started, fork the nasa-gcn/gcn-schema repository on GitHub and clone it on your computer. If you are new to GitHub, refer to our GitHub primer.
After you have forked and cloned the repository, make sure that Node.js and NPM are installed on your computer. There are several options to install Node.js and NPM. Pick one of the following:
- Download and run the Node.js installer for your operating system.
- Install and use the Node Version Manager, nvm.
- Install using a package manager.
Finally, run the following command inside the repository working directory to install the pre-commit hooks for code formatting and syntax checking:
npm install
-
Clone the parent repo (nasa-gcn/gcn-schema).
git clone git@github.com:nasa-gcn/gcn-schema.git cd gcn-schema
-
Install necessary npm packages
npm install
-
Tag a new version by running the following command:
npm version [ major | minor | patch ]
. Choosemajor
,minor
, orpatch
depending on the kind of update according to Semantic Versioning rules.This command will handle the intermediate steps of updating and committing the path changes in each file as defined in the
version
andpostversion
npm scripts -
Review the changes with
git log -p
to make sure that each file is appropriately updated. -
Finally, push both the commit and the tag:
git push && git push origin <tag name>
This will make the release available for use. For subsequent releases:
-
Pull the latest state of the main branch
git pull
-
Follow the above steps from Step 3 on.