Skip to content

Commit

Permalink
Merge pull request #272 from k1LoW/update-json-schema
Browse files Browse the repository at this point in the history
Update JSON schema for custom metrics
  • Loading branch information
k1LoW authored Sep 24, 2023
2 parents dc0c53e + 5c28909 commit 7ff549e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions report/custom_metrics_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,30 @@
"type": "string",
"minLength": 1
},
"metadata": {
"type": "array",
"items":
{
"type": "object",
"properties": {
"key": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
]
}
},
"metrics": {
"type": "array",
"items":
Expand Down

0 comments on commit 7ff549e

Please sign in to comment.