Skip to content

Instantly share code, notes, and snippets.

@ankitjaggi
Last active April 20, 2017 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitjaggi/e1677fd463df2d2142f138a0d44d630d to your computer and use it in GitHub Desktop.
Save ankitjaggi/e1677fd463df2d2142f138a0d44d630d to your computer and use it in GitHub Desktop.
Monitor Run Results Schema for the Microsoft Flow Integration
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {},
"id": "http://example.com/example.json",
"properties": {
"collection_name": {
"id": "/properties/collection_name",
"type": "string"
},
"collection_uid": {
"id": "/properties/collection_uid",
"type": "string"
},
"environment_name": {
"id": "/properties/environment_name",
"type": "string"
},
"environment_uid": {
"id": "/properties/environment_uid",
"type": "string"
},
"metrics": {
"id": "/properties/metrics",
"properties": {
"errors": {
"id": "/properties/metrics/properties/errors",
"type": "integer"
},
"failed_tests": {
"id": "/properties/metrics/properties/failed_tests",
"type": "integer"
},
"passed_tests": {
"id": "/properties/metrics/properties/passed_tests",
"type": "integer"
},
"request_count": {
"id": "/properties/metrics/properties/request_count",
"type": "integer"
},
"total_latency": {
"id": "/properties/metrics/properties/total_latency",
"type": "integer"
},
"warnings": {
"id": "/properties/metrics/properties/warnings",
"type": "integer"
}
},
"type": "object"
},
"monitor_name": {
"id": "/properties/monitor_name",
"type": "string"
},
"monitor_uid": {
"id": "/properties/monitor_uid",
"type": "string"
},
"user_id": {
"id": "/properties/user_id",
"type": "string"
},
"user_name": {
"id": "/properties/user_name",
"type": "string"
}
},
"type": "object"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment