Skip to content

Commit

Permalink
Use absolute paths and add missing string types (Sage-Bionetworks#851)
Browse files Browse the repository at this point in the history
* Use absolute paths in $id field

* Increment version numbers

* Increment and update bindingDensity, sourceCell

Co-authored-by: Kara Woo <[email protected]>
  • Loading branch information
Aryllen and karawoo authored Aug 11, 2021
1 parent ab66d5d commit a55281a
Show file tree
Hide file tree
Showing 273 changed files with 380 additions and 284 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ examples, but the general format for a new term should be like this:
```json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"description": "<DESCRIPTION OF THE KEY>",
"anyOf": [
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ that are valid JSON Schema, such as the following:
```
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-experimentalData.specimenID-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-experimentalData.specimenID-0.0.1",
"description": "Identifying string linked to a particular sample or specimen",
"type": "string"
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/testschema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id":"sage.annotations-testschema.json-0.0.2",
"$id":"https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-testschema.json-0.0.3",
"properties": {
"resourceType": {
"$ref": "sage.annotations-sageCommunity.resourceType-0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion term-templates/template-boolean.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"description": "<DESCRIPTION OF THE KEY>",
"type": "boolean"
}
2 changes: 1 addition & 1 deletion term-templates/template-enum.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"description": "<DESCRIPTION OF THE KEY>",
"anyOf": [
{
Expand Down
2 changes: 1 addition & 1 deletion term-templates/template-number.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"description": "<DESCRIPTION OF THE KEY>",
"type": "number"
}
2 changes: 1 addition & 1 deletion term-templates/template-string.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-<MODULENAME>.<KEY>-0.0.1",
"description": "<DESCRIPTION OF THE KEY>",
"type": "string",
"minLength": 1,
Expand Down
2 changes: 1 addition & 1 deletion terms/PsychENCODESpecific/grant.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id":"sage.annotations-PsychENCODESpecific.grant-0.0.1",
"$id":"https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-PsychENCODESpecific.grant-0.0.2",
"description": "Grant number including activity code, institute code, and serial number (e.g. U01MH103392)",
"type": "string",
"anyOf": [
Expand Down
2 changes: 1 addition & 1 deletion terms/PsychENCODESpecific/study.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id":"sage.annotations-PsychENCODESpecific.study-0.0.4",
"$id":"https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-PsychENCODESpecific.study-0.0.5",
"description": "Study",
"type": "string",
"anyOf": [
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/alignmentMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.alignmentMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.alignmentMethod-0.0.2",
"description": "DNA or RNA sequence alignment method",
"type": "string",
"anyOf": [
{
"const": "Burrows-Wheeler technique",
Expand Down
5 changes: 3 additions & 2 deletions terms/analysis/analysisType.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.analysisType-0.0.8",
"description": "",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.analysisType-0.0.9",
"description": "Type of analysis",
"type": "string",
"anyOf": [
{
"const": "ANOVA",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/assemblyMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.assemblyMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.assemblyMethod-0.0.2",
"description": "Algorithm used to build a reference genome from short read sequencing data.",
"type": "string",
"anyOf": [
{
"const": "Velvet",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/batchEffectCorrectionMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.batchEffectCorrectionMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.batchEffectCorrectionMethod-0.0.2",
"description": "Methods for identifying or correcting potential confounding variables in regression analyses.",
"type": "string",
"anyOf": [
{
"const": "COMBAT",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/clusteringMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.clusteringMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.clusteringMethod-0.0.2",
"description": "A method to identify groups of similar variables based on their data distribution.",
"type": "string",
"anyOf": [
{
"const": "hierarchical clustering",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/differentialExpressionMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.differentialExpressionMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.differentialExpressionMethod-0.0.2",
"description": "Method used to test for differentially expressed genes or isoforms.",
"type": "string",
"anyOf": [
{
"const": "limma",
Expand Down
5 changes: 3 additions & 2 deletions terms/analysis/enrichmentMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.enrichmentMethod-0.0.1",
"description": "",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.enrichmentMethod-0.0.2",
"description": "Enrichment method.",
"type": "string",
"anyOf": [
{
"const": "Fisher's exact test",
Expand Down
2 changes: 1 addition & 1 deletion terms/analysis/fdr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.fdr-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.fdr-0.0.2",
"type": "number",
"description": "False discovery rate"
}
3 changes: 2 additions & 1 deletion terms/analysis/multipleTestingAdjustmentMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.multipleTestingAdjustmentMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.multipleTestingAdjustmentMethod-0.0.2",
"description": "Method used to control either family wise error rate, false discovery rate, or other measures of burden of false positives and false negatives when performing multiple statistical tests.",
"type": "string",
"anyOf": [
{
"const": "Benjamini Hochberg",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/peakCallingMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.peakCallingMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.peakCallingMethod-0.0.2",
"description": "The algorithm used to identify protein-binding regions in a genome sequence from the data generated from a ChIP-sequencing or ChIP-chip experiment.",
"type": "string",
"anyOf": [
{
"const": "MACS",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/somaticMutationCallingMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.somaticMutationCallingMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.somaticMutationCallingMethod-0.0.2",
"description": "Algorithm to call somatic mutations.",
"type": "string",
"anyOf": [
{
"const": "VarDict",
Expand Down
5 changes: 3 additions & 2 deletions terms/analysis/statisticalNetworkReconstructionMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.statisticalNetworkReconstructionMethod-0.0.1",
"description": "",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.statisticalNetworkReconstructionMethod-0.0.2",
"description": "Statistical network reconstruction method.",
"type": "string",
"anyOf": [
{
"const": "Weighted correlation network analysis",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/supervisedLearningMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.supervisedLearningMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.supervisedLearningMethod-0.0.2",
"description": "An algorithm to fit a model to make predictions of future outcomes based past data.",
"type": "string",
"anyOf": [
{
"const": "penalized regression",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/transcriptQuantificationMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.transcriptQuantificationMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.transcriptQuantificationMethod-0.0.2",
"description": "Method for quantifying abundance of transcript expression.",
"type": "string",
"anyOf": [
{
"const": "kallisto",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/validationMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.validationMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.validationMethod-0.0.2",
"description": "Method to test targeted sequence level hypothesis.",
"type": "string",
"anyOf": [
{
"const": "CRISPR-Cas9",
Expand Down
3 changes: 2 additions & 1 deletion terms/analysis/visualizationMethod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-analysis.visualizationMethod-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-analysis.visualizationMethod-0.0.2",
"description": "The format in which data is visually displayed.",
"type": "string",
"anyOf": [
{
"const": "scatter plot",
Expand Down
3 changes: 2 additions & 1 deletion terms/array/channel.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-array.channel-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-array.channel-0.0.2",
"description": "Fluorescent color labeling for an array",
"type": "string",
"anyOf": [
{
"const": "Cy5",
Expand Down
2 changes: 1 addition & 1 deletion terms/batch/arrayBatch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.arrayBatch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.arrayBatch-0.0.2",
"type": "string",
"description": "The hybridization batch the sample was in"
}
2 changes: 1 addition & 1 deletion terms/batch/batch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-batch.batch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.batch-0.0.2",
"description": "Batch specimen was processed in",
"type": "string"
}
2 changes: 1 addition & 1 deletion terms/batch/batchChannel.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.batchChannel-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.batchChannel-0.0.2",
"type": "string",
"description": "TMT channel the sample is labeled with"
}
2 changes: 1 addition & 1 deletion terms/batch/dnaBatch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.dnaBatch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.dnaBatch-0.0.2",
"type": "string",
"description": "DNA isolation batch"
}
2 changes: 1 addition & 1 deletion terms/batch/libraryBatch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.libraryBatch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.libraryBatch-0.0.2",
"type": "string",
"description": "Batch library was prepared in"
}
2 changes: 1 addition & 1 deletion terms/batch/nanostringBatch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.nanostringBatch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.nanostringBatch-0.0.2",
"type": "string",
"description": "The batch of samples run on a nanostring panel. Twelve samples can be processed together at once on a machine."
}
2 changes: 1 addition & 1 deletion terms/batch/rnaBatch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.rnaBatch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.rnaBatch-0.0.2",
"type": "string",
"description": "Batch in which RNA sample was isolated"
}
2 changes: 1 addition & 1 deletion terms/batch/sequencingBatch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.sequencingBatch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.sequencingBatch-0.0.2",
"type": "string",
"description": "Batch library was sequenced in"
}
2 changes: 1 addition & 1 deletion terms/batch/transposaseBatch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "sage.annotations-batch.transposaseBatch-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-batch.transposaseBatch-0.0.2",
"type": "string",
"description": "Transposition reaction batch"
}
2 changes: 1 addition & 1 deletion terms/cancer/cellSubType.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.cellSubType-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.cellSubType-0.0.2",
"description": "This term is to be used when cell type is not specific enough, such as certain classes of T cells",
"type": "string"
}
Expand Down
2 changes: 1 addition & 1 deletion terms/cancer/experimentalCondition.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.experimentalCondition-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.experimentalCondition-0.0.2",
"description": "This describes the condition under which the data were collected, designed to be free form, extra things that do not fit in pre-defined terms",
"type": "string"
}
Expand Down
2 changes: 1 addition & 1 deletion terms/cancer/experimentalTimePoint.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.experimentalTimePoint-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.experimentalTimePoint-0.0.2",
"description": "Number describing time point at which data was collected",
"type": "string"
}
Expand Down
3 changes: 2 additions & 1 deletion terms/cancer/genePerturbationTechnology.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.genePerturbationTechnology-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.genePerturbationTechnology-0.0.2",
"description": "Technology used to perform gene perturbation",
"type": "string",
"anyOf": [
{
"const": "RNAi",
Expand Down
3 changes: 2 additions & 1 deletion terms/cancer/genePerturbationType.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.genePerturbationType-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.genePerturbationType-0.0.2",
"description": "Specific way in which a single gene was perturbed in a sample",
"type": "string",
"anyOf": [
{
"const": "overexpression",
Expand Down
2 changes: 1 addition & 1 deletion terms/cancer/genePerturbed.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.genePerturbed-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.genePerturbed-0.0.2",
"description": "In the case of gene modulation, this describes the gene or genes that were modulated",
"type": "string"
}
Expand Down
3 changes: 2 additions & 1 deletion terms/cancer/timePointUnit.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.timePointUnit-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.timePointUnit-0.0.2",
"description": "For timed experiments this represents the unit of time measured",
"type": "string",
"anyOf": [
{
"const": "hours",
Expand Down
2 changes: 1 addition & 1 deletion terms/cancer/transplantationDonorTissue.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.transplantationDonorTissue-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.transplantationDonorTissue-0.0.2",
"description": "",
"type": "string"
}
Expand Down
3 changes: 2 additions & 1 deletion terms/cancer/transplantationRecipientSpecies.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "sage.annotations-cancer.transplantationRecipientSpecies-0.0.1",
"$id": "https://repo-prod.prod.sagebase.org/repo/v1/schema/type/registered/sage.annotations-cancer.transplantationRecipientSpecies-0.0.2",
"description": "Species into which donor tissue was grown",
"type": "string",
"anyOf": [
{
"const": "Human",
Expand Down
Loading

0 comments on commit a55281a

Please sign in to comment.