-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f1d747
commit fda7e64
Showing
6 changed files
with
353 additions
and
308 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
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
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,27 @@ | ||
{ | ||
"properties": { | ||
"datum_kwarg_list": { | ||
"type": "array", | ||
"items": {"type": "object"}, | ||
"description": "Array of arguments to pass to the Handler to retrieve one quanta of data" | ||
}, | ||
"resource": { | ||
"type": "string", | ||
"description": "UID of the Resource to which all these Datum documents belong" | ||
}, | ||
"datum_ids": { | ||
"type": "array", | ||
"items": {"type": "string"}, | ||
"description": "Globally unique identifiers for each Datum (akin to 'uid' for other Document types), typically formatted as '<resource>/<integer>'" | ||
} | ||
}, | ||
"required": [ | ||
"datum_kwarg_list", | ||
"resource", | ||
"datum_ids" | ||
], | ||
"additionalProperties": false, | ||
"type": "object", | ||
"title": "bulk_datum", | ||
"description": "Document to reference a quanta of externally-stored data" | ||
} |
Oops, something went wrong.