Skip to content

Commit

Permalink
Update schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kshychko committed May 2, 2017
1 parent 529baa8 commit 92c99c4
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions docs/2.0/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
{
"cyphertext": "string",
"hash": "string",
"sender": "string",
"reference": "string"
"title": "The TAP message body model.",
"id": "http://swagger.io/v2/schema.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"cyphertext",
"hash",
"sender",
"reference"
],
"additionalProperties": false,
"properties": {
"cyphertext": {
"type": "string",
"description": "The TAP message cyphertext."
},
"hash": {
"type": "string",
"description": "The TAP message hash."
},
"sender": {
"type": "string",
"description": "The TAP message sender."
},
"reference": {
"type": "string",
"description": "The TAP message reference."
}
}
}

0 comments on commit 92c99c4

Please sign in to comment.