Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,10 @@ components:
description: Information for a given tag
example:
tag:
- date_time: '2022-04-01T04:58:21.319061+00:00'
- dataset_id: 1
date_time: '2022-04-01T04:58:21.319061+00:00'
filename: 'eTUFF-sailfish-117259_2.txt'
hash_sha256: 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b977'
metadata:
person_owner: John Do
owner_contect: john@do.net
Expand All @@ -385,8 +387,10 @@ components:
submission_id: 5
tag_id: 3
version: '1'
- date_time: '2022-06-01T05:39:46.896088+00:00'
- dataset_id: 1
date_time: '2022-06-01T05:39:46.896088+00:00'
filename: 'eTUFF-sailfish-117259_2.txt'
hash_sha256: 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'
metadata:
person_owner: Jane Do
owner_contect: jane@do.net
Expand Down Expand Up @@ -437,6 +441,10 @@ components:
TagSubmission:
type: object
properties:
dataset_id:
description: The primary key from the Dataset relation
example: 1
type: integer
date_time:
description: Local datetime stamp at the time of eTUFF tag data file ingestion
example: '2022-04-01T04:58:21.319061+00:00'
Expand All @@ -445,6 +453,10 @@ components:
type: string
filename:
$ref: '#/components/schemas/filename'
hash_sha256:
description: SHA256 hash representing the contents of the submission eTUFF file
example: 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'
type: string
metadata:
$ref: '#/components/schemas/Metadata'
notes:
Expand Down
Loading