-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On branch 1.2.0 Your branch is up to date with 'origin/1.2.0'. Changes to be committed: modified: README.md modified: dataset/README.md modified: dataset/dataset_extension.json modified: fhir/README.md modified: fhir/fhir_extension.json modified: galaxy/README.md modified: galaxy/galaxy_extension.json modified: license/README.md modified: license/license_extension.json modified: scm/README.md modified: scm/scm_extension.json
- Loading branch information
1 parent
a61ab84
commit 1764153
Showing
11 changed files
with
252 additions
and
318 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# extension_schema | ||
|
||
extension schema for BCO |
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
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 |
---|---|---|
@@ -1,86 +1,78 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "http://www.w3id.org/biocompute/extension_domain/1.1.0/dataset/dataset_extension.json", | ||
"title": "dataset_extension", | ||
"type": "object", | ||
"description": "The external references extension to list additional licenses and dataset catagories for a dataset BCO (dsBCO).", | ||
"required": ["dataset_extension", "extension_schema"], | ||
"additionalProperties": false, | ||
"properties": { | ||
"dataset_extension": { | ||
"type": "object", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "http://www.w3id.org/biocompute/extension_domain/1.1.0/dataset/dataset_extension.json", | ||
"title": "dataset_extension", | ||
"type": "object", | ||
"description": "The external references extension to list additional licenses and dataset catagories for a dataset BCO (dsBCO).", | ||
"required": ["dataset_extension", "extension_schema"], | ||
"additionalProperties": false, | ||
"properties": { | ||
"dataset_extension": { | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": ["dataset_categories"], | ||
"properties": { | ||
"additional_license": { | ||
"type": "object", | ||
"description": "The additional license property contains the details about the licenses applied to the dataset and the script or tool/software used to process the given dataset.", | ||
"additionalProperties": false, | ||
"properties": { | ||
"data_license": { | ||
"title": "data_license", | ||
"type": "string", | ||
"description": "The license applied to the data or the dataset by the author", | ||
"examples": ["https://creativecommons.org/licenses/by/4.0/"] | ||
}, | ||
"script_license": { | ||
"title": "script_license", | ||
"type": "string", | ||
"description": "The license applied to the computational script or the tool/software developed to process (parse, QC, align) the input dataset for a final output dataset.", | ||
"examples": ["https://www.gnu.org/licenses/gpl-3.0.en.html"] | ||
} | ||
} | ||
}, | ||
"dataset_categories": { | ||
"title": "dataset_categories", | ||
"type": "array", | ||
"description": "Dataset categories describe and provide more information about the dataset which can be used to classify, group, sort and filter datasets.", | ||
"items": { | ||
"required": ["category_value", "category_name"], | ||
"additionalProperties": false, | ||
"required": ["dataset_categories"], | ||
"properties": { | ||
"additional_license": { | ||
"type": "object", | ||
"description": "The additional license property contains the details about the licenses applied to the dataset and the script or tool/software used to process the given dataset.", | ||
"additionalProperties": false, | ||
"properties": { | ||
"data_license": { | ||
"title": "data_license", | ||
"type": "string", | ||
"description": "The license applied to the data or the dataset by the author", | ||
"examples": [ | ||
"https://creativecommons.org/licenses/by/4.0/" | ||
] | ||
}, | ||
"script_license": { | ||
"title": "script_license", | ||
"type": "string", | ||
"description": "The license applied to the computational script or the tool/software developed to process (parse, QC, align) the input dataset for a final output dataset.", | ||
"examples": [ | ||
"https://www.gnu.org/licenses/gpl-3.0.en.html" | ||
] | ||
} | ||
} | ||
}, | ||
"dataset_categories": { | ||
"title": "dataset_categories", | ||
"type": "array", | ||
"description": "Dataset categories describe and provide more information about the dataset which can be used to classify, group, sort and filter datasets.", | ||
"items": { | ||
"required": [ | ||
"category_value", | ||
"category_name" | ||
], | ||
"additionalProperties": false, | ||
"properties": { | ||
"category_value": { | ||
"type": "string", | ||
"title": "category_value", | ||
"description": "An explanation about the purpose of this instance.", | ||
"examples": [ | ||
"Homo sapiens" | ||
] | ||
}, | ||
"category_name": { | ||
"type": "string", | ||
"title": "category_name", | ||
"description": "An explanation about the purpose of this instance.", | ||
"enum": [ | ||
"species", | ||
"molecule", | ||
"tag", | ||
"file_type", | ||
"status", | ||
"scope" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
"category_value": { | ||
"type": "string", | ||
"title": "category_value", | ||
"description": "An explanation about the purpose of this instance.", | ||
"examples": ["Homo sapiens"] | ||
}, | ||
"category_name": { | ||
"type": "string", | ||
"title": "category_name", | ||
"description": "An explanation about the purpose of this instance.", | ||
"enum": [ | ||
"species", | ||
"molecule", | ||
"tag", | ||
"tags", | ||
"priority", | ||
"file_type", | ||
"status", | ||
"scope" | ||
] | ||
} | ||
} | ||
}, | ||
"extension_schema": { | ||
"title": "extension_schema", | ||
"type": "string", | ||
"format": "uri", | ||
"description": "The schema applied to the extension object", | ||
"examples": [ | ||
"http://www.w3id.org/biocompute/extension_domain/example.json" | ||
] | ||
|
||
} | ||
} | ||
} | ||
} | ||
}, | ||
"extension_schema": { | ||
"title": "extension_schema", | ||
"type": "string", | ||
"format": "uri", | ||
"description": "The schema applied to the extension object", | ||
"examples": [ | ||
"http://www.w3id.org/biocompute/extension_domain/example.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
Oops, something went wrong.