-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add testCase version to TERCC batches (#286)
* Add testCase version to TERCC batches * Update eiffel-vocabulary/EiffelTestExecutionRecipeCollectionCreatedEvent.md Co-authored-by: Mattias Linnér <[email protected]>
- Loading branch information
1 parent
45516ff
commit 41ede64
Showing
2 changed files
with
292 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
284 changes: 284 additions & 0 deletions
284
schemas/EiffelTestExecutionRecipeCollectionCreatedEvent/4.2.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,284 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"type": "object", | ||
"properties": { | ||
"meta": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ "EiffelTestExecutionRecipeCollectionCreatedEvent" ] | ||
}, | ||
"version": { | ||
"type": "string", | ||
"enum": [ "4.2.0" ], | ||
"default": "4.2.0" | ||
}, | ||
"time": { | ||
"type": "integer" | ||
}, | ||
"tags": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"source": { | ||
"type": "object", | ||
"properties": { | ||
"domainId": { | ||
"type": "string" | ||
}, | ||
"host": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"serializer": { | ||
"type": "string", | ||
"pattern": "^pkg:" | ||
}, | ||
"uri": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"security": { | ||
"type": "object", | ||
"properties": { | ||
"authorIdentity": { | ||
"type": "string" | ||
}, | ||
"integrityProtection": { | ||
"type": "object", | ||
"properties": { | ||
"signature": { | ||
"type": "string" | ||
}, | ||
"alg": { | ||
"type": "string", | ||
"enum": ["HS256", "HS384", "HS512", "RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "PS256", "PS384", "PS512"] | ||
}, | ||
"publicKey": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"signature", | ||
"alg" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"sequenceProtection": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"sequenceName": { | ||
"type": "string" | ||
}, | ||
"position": { | ||
"type": "integer" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"sequenceName", | ||
"position" | ||
] | ||
} | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"authorIdentity" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"type", | ||
"version", | ||
"time" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"data": { | ||
"type": "object", | ||
"properties": { | ||
"selectionStrategy": { | ||
"type": "object", | ||
"properties": { | ||
"tracker": { | ||
"type": "string" | ||
}, | ||
"id": { | ||
"type": "string" | ||
}, | ||
"uri": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"id" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"batchesUri": { | ||
"type": "string" | ||
}, | ||
"batches": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"priority": { | ||
"type": "integer" | ||
}, | ||
"recipes": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" | ||
}, | ||
"testCase": { | ||
"type": "object", | ||
"properties": { | ||
"tracker": { | ||
"type": "string" | ||
}, | ||
"id": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
}, | ||
"uri": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"id" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"constraints": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"key": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
} | ||
}, | ||
"required": [ | ||
"key", | ||
"value" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"testCase" | ||
], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"dependencies": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"dependent": { | ||
"type": "string" | ||
}, | ||
"dependency": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"dependent", | ||
"dependency" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"priority", | ||
"recipes" | ||
], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"customData": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"key": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
} | ||
}, | ||
"required": [ | ||
"key", | ||
"value" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"selectionStrategy" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"links": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string" | ||
}, | ||
"target": { | ||
"type": "string", | ||
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" | ||
}, | ||
"domainId": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"target" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"meta", | ||
"data", | ||
"links" | ||
], | ||
"additionalProperties": false | ||
} |