-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from NIEHS/2-make-dummy-json-doc-and-starter-sc…
…hema 2 make dummy json doc and starter schema
- Loading branch information
Showing
4 changed files
with
60 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Jsonlint-CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- feature/** | ||
- 2-make-dummy-json-doc-and-starter-schema | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ixxel/unit-tests-alpine:latest | ||
steps: | ||
- name: Git clone repo | ||
uses: actions/checkout@v2 | ||
- name: Jsonlint scan | ||
uses: ixxeL-actions/jsonlint@main | ||
with: | ||
extensions: '"json,JSON"' | ||
environment: '""' | ||
fix: 'true' | ||
working-dir: ./schema/accel.json |
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 |
---|---|---|
|
@@ -169,3 +169,6 @@ cython_debug/ | |
|
||
# PyPI configuration file | ||
.pypirc | ||
|
||
.idea | ||
.DS_Store |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Accelerator Data Model | ||
## Version: 0.0.1-alpha | ||
|
||
## Description | ||
|
||
This accel.json file, and the accompanying JSON schema, represent the core data model for Accelerator. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"submission": { | ||
"submitter_name": null, | ||
"submitter_email": null, | ||
"submitter_comment": null | ||
}, | ||
"data": { | ||
|
||
}, | ||
"technical_metadata": { | ||
"created": null, | ||
"modified": null, | ||
"original_source": null, | ||
"original_source_link": null, | ||
"history": [ | ||
{ | ||
"timestamp": null, | ||
"msg": null | ||
} | ||
] | ||
|
||
} | ||
} |