Skip to content

Commit

Permalink
update: redefine CChecks as one object
Browse files Browse the repository at this point in the history
  • Loading branch information
VsevolodX committed Sep 5, 2023
1 parent 9224c05 commit e3f8f6c
Showing 1 changed file with 14 additions and 22 deletions.
36 changes: 14 additions & 22 deletions schema/system/consistency_checks.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
{
"$id": "system/consistency-checks",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "consistency checks schema",
"properties": {
"consistency_checks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": "consistency checks",
"properties": {
"keys": {
"type": "array",
"items": {
Expand All @@ -32,21 +27,18 @@
"message": {
"type": "string"
}
}
},
"required": [
"key",
"checkName",
"severity",
"message"
]
},
"required": [
"key",
"checkName",
"severity",
"message"
]
}
}
},
"required": [
"keys",
"messages"
]
}
"required": [
"keys",
"messages"
]
}
}
}

0 comments on commit e3f8f6c

Please sign in to comment.