Skip to content

Instantly share code, notes, and snippets.

@rdpanek
Last active December 16, 2015 10:19
Show Gist options
  • Save rdpanek/5418909 to your computer and use it in GitHub Desktop.
Save rdpanek/5418909 to your computer and use it in GitHub Desktop.
test review
{
"title": "input schema",
"type": "object",
"required": "true",
"properties": {
"product_name": {
"type": "string",
"required": true
},
"type": {
"type": [
"behat",
"e2e"
],
"required": true
},
"status": {
"type": [
"passed",
"failed"
],
"required": true
},
"date": {
"type": "string",
"required": true
},
"time": {
"type": "string",
"required": true
},
"feature": {
"type": "string",
"required": true
},
"report_link": {
"type": "string",
"required": true
},
"screenshot_link": {
"type": "string"
},
"dom_link": {
"type": "string"
},
"page_link": {
"type": "string"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment