-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds ActS 4.0.0, ActT 4.0.0, ArtP 3.1.0 and CD 3.1.0 from commit 951a594 of github.com/eiffel-community/eiffel. These schemas will probably be baselined in a new Agen-2 edition of Eiffel. Co-authored-by: Magnus Bäck <[email protected]>
- Loading branch information
1 parent
60e0031
commit decc889
Showing
8 changed files
with
768 additions
and
8 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
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
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
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
185 changes: 185 additions & 0 deletions
185
eiffellib/schemas/EiffelActivityStartedEvent/4.0.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,185 @@ | ||
{ | ||
"$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": ["EiffelActivityStartedEvent"] | ||
}, | ||
"version": { | ||
"type": "string", | ||
"enum": [ "4.0.0" ], | ||
"default": "4.0.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": { | ||
"executionUri": { | ||
"type": "string" | ||
}, | ||
"liveLogs": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"uri": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"uri" | ||
], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"customData": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"key": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
} | ||
}, | ||
"required": [ | ||
"key", | ||
"value" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"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}$" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"target" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"meta", | ||
"data", | ||
"links" | ||
], | ||
"additionalProperties": false | ||
} |
Oops, something went wrong.