Skip to content

Commit

Permalink
Schema: Implement #110 (stdoutStderr)
Browse files Browse the repository at this point in the history
  • Loading branch information
Larry Golding committed Mar 23, 2018
1 parent 4c66ac2 commit 2d2252c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Schemata/sarif-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@
"attachments": {
"description": "A set of files relevant to the invocation of the tool.",
"type": "array",
"minItems": 1,
"minItems": 1,
"uniqueItems": true,
"items": {
"$ref": "#/definitions/attachment"
Expand Down Expand Up @@ -531,7 +531,7 @@
"description": "The environment variables associated with the analysis tool process, expressed as key/value pairs.",
"type": "object",
"additionalProperties": true,
"default": { }
"default": {}
},

"stdin": {
Expand All @@ -549,6 +549,11 @@
"$ref": "#/definitions/physicalLocation"
},

"stdoutStderr": {
"description": "A file or portion of a file containing the interleaved standard output and standard error stream from the process that was invoked.",
"$ref": "#/definitions/physicalLocation"
},

"properties": {
"description": "Key/value pairs that provide additional information about the run.",
"type": "object",
Expand All @@ -559,7 +564,7 @@
"description": "A set of distinct strings that provide additional information.",
"type": "array",
"uniqueItems": true,
"default": [ ],
"default": [],
"items": {
"type": "string"
}
Expand Down

0 comments on commit 2d2252c

Please sign in to comment.