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

Update model json schemas #10

Merged
merged 2 commits into from
Aug 19, 2024
Merged
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "snews-data-formats"
version = "1.0.0a"
version = "1.0.0"
description = "A unified collection of SNEWS data, models, and schema"
authors = ["SNEWS Collaboration <snews2.0@lists.bnl.gov>"]
maintainers = ["Justin Vasel <justin.vasel@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion snews/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
from single_version import get_version

__version__ = get_version("snews", Path(__file__).parent.parent)
schema_version = "0.1"
schema_version = "0.2"
4 changes: 2 additions & 2 deletions snews/schema/CoincidenceTierMessage.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"schema_author": "Supernova Early Warning System (SNEWS)",
"schema_version": "0.1",
"schema_version": "0.2",
"$defs": {
"Tier": {
"enum": [
Expand Down Expand Up @@ -131,7 +131,7 @@
"type": "null"
}
],
"default": "0.1",
"default": "0.2",
"description": "Schema version of the message",
"title": "Schema Version"
},
Expand Down
2 changes: 1 addition & 1 deletion snews/schema/Detector.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"schema_author": "Supernova Early Warning System (SNEWS)",
"schema_version": "0.1",
"schema_version": "0.2",
"$defs": {
"DetectorType": {
"enum": [
Expand Down
4 changes: 2 additions & 2 deletions snews/schema/HeartbeatMessage.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"schema_author": "Supernova Early Warning System (SNEWS)",
"schema_version": "0.1",
"schema_version": "0.2",
"$defs": {
"Tier": {
"enum": [
Expand Down Expand Up @@ -131,7 +131,7 @@
"type": "null"
}
],
"default": "0.1",
"default": "0.2",
"description": "Schema version of the message",
"title": "Schema Version"
},
Expand Down
4 changes: 2 additions & 2 deletions snews/schema/RetractionMessage.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"schema_author": "Supernova Early Warning System (SNEWS)",
"schema_version": "0.1",
"schema_version": "0.2",
"$defs": {
"Tier": {
"enum": [
Expand Down Expand Up @@ -131,7 +131,7 @@
"type": "null"
}
],
"default": "0.1",
"default": "0.2",
"description": "Schema version of the message",
"title": "Schema Version"
},
Expand Down
4 changes: 2 additions & 2 deletions snews/schema/SignificanceTierMessage.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"schema_author": "Supernova Early Warning System (SNEWS)",
"schema_version": "0.1",
"schema_version": "0.2",
"$defs": {
"Tier": {
"enum": [
Expand Down Expand Up @@ -131,7 +131,7 @@
"type": "null"
}
],
"default": "0.1",
"default": "0.2",
"description": "Schema version of the message",
"title": "Schema Version"
},
Expand Down
4 changes: 2 additions & 2 deletions snews/schema/TimingTierMessage.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"schema_author": "Supernova Early Warning System (SNEWS)",
"schema_version": "0.1",
"schema_version": "0.2",
"$defs": {
"Tier": {
"enum": [
Expand Down Expand Up @@ -131,7 +131,7 @@
"type": "null"
}
],
"default": "0.1",
"default": "0.2",
"description": "Schema version of the message",
"title": "Schema Version"
},
Expand Down
Loading