Skip to content

Commit

Permalink
Adding provenance information for the DATS instances - #43
Browse files Browse the repository at this point in the history
  • Loading branch information
agbeltran committed Sep 5, 2016
1 parent dc6e42e commit 7eccddb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions json-schemas/provenance_schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Internal DATS provenance schema",
"description": "The provenance information kept in DataMed. This schema is for internal use in DataMed and not to be implemented by repositories.",
"type": "object",
"properties": {
"transformationFile": {
"description": "The DataMed transformation file describing the mapping between the original repository and DATS.",
"type": "string"
},
"ingestMethod": {
"description": "The method used to ingest the dataset from the repository into DataMed.",
"type": "string"
},
"ingestTarget": {
"description": "The location where the source files can be found, using the ingestMethod, to produce this DATS intance ingested in DataMed.",
"type": "string"
},
"filePattern": {
"description": "A regular expression indicating the pattern of files considered during the ingestion process.",
"type": "string"
},
"ingestTimestamp": {
"description": "A timestamp reporting when the ingestion occurred."
"type": "string"
},
"additionalProperties": false
}
}

0 comments on commit 7eccddb

Please sign in to comment.