Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion test-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
"type": "object",
"required": [ "description", "schema", "tests" ],
"properties": {
"id": {
"description": "A stable, unique identifier for this test case. Must be unique within the version. Should never change even if the description or other properties change.",
"type": "string"
},
"description": {
"description": "The test case description",
"type": "string"
Expand Down Expand Up @@ -102,6 +106,10 @@
"type": "object",
"required": [ "description", "data", "valid" ],
"properties": {
"id": {
"description": "A stable, unique identifier for this test. Must be unique within the test case. Should never change even if the description or other properties change.",
"type": "string"
},
"description": {
"description": "The test description, briefly explaining which behavior it exercises",
"type": "string"
Expand All @@ -121,4 +129,4 @@
"additionalProperties": false
}
}
}
}