-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,7 @@ | |
"description": "Name, affiliation, and email address of the person who submitted the Circular, in the form `A. E. Einstein at IAS <[email protected]>`" | ||
}, | ||
"submittedHow": { | ||
"enum": [ | ||
"web", | ||
"email", | ||
"email-legacy", | ||
"api" | ||
], | ||
"enum": ["web", "email", "email-legacy", "api"], | ||
"description": "Specifies the method by which the user submitted the Circular" | ||
}, | ||
"subject": { | ||
|
@@ -31,10 +26,7 @@ | |
"description": "Circular ID assigned to the Circular in the GCN Circulars archive. This value is unique to each published Circular and increments by 1" | ||
}, | ||
"format": { | ||
"enum": [ | ||
"text/plain", | ||
"text/markdown" | ||
], | ||
"enum": ["text/plain", "text/markdown"], | ||
"description": "Format of the body text as a MIME type. See https://gcn.nasa.gov/docs/circulars/markdown for documentation on using Markdown in Circulars" | ||
}, | ||
"body": { | ||
|
@@ -46,11 +38,5 @@ | |
"description": "Date and time the Circular is accepted and published onto the GCN Circulars archive, formatted as a UNIX timestamp (milliseconds since the UNIX epoch)" | ||
} | ||
}, | ||
"required": [ | ||
"submitter", | ||
"subject", | ||
"circularId", | ||
"body", | ||
"createdOn" | ||
] | ||
} | ||
"required": ["submitter", "subject", "circularId", "body", "createdOn"] | ||
} |