Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflow design #5

Open
jagankumar-egov opened this issue Aug 8, 2023 · 1 comment
Open

Workflow design #5

jagankumar-egov opened this issue Aug 8, 2023 · 1 comment
Assignees

Comments

@jagankumar-egov
Copy link
Contributor

No description provided.

@jagankumar-egov jagankumar-egov self-assigned this Aug 8, 2023
@jagankumar-egov jagankumar-egov moved this to Todo in Workflow UI Aug 8, 2023
@jagankumar-egov jagankumar-egov moved this from Todo to In Progress in Workflow UI Aug 9, 2023
@jagankumar-egov jagankumar-egov moved this from In Progress to Dev Completed in Workflow UI Aug 9, 2023
@jagankumar-egov
Copy link
Contributor Author

Schema for workflow
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Generated schema for Root", "type": "object", "properties": { "tenantId": { "type": "string", "default": "pg" }, "businessService": { "type": "string" }, "business": { "type": "string" }, "businessServiceSla": { "type": "number" }, "states": { "type": "array", "items": { "type": "object", "properties": { "sla": { "type": "number" }, "state": { "type": "string" }, "applicationStatus": { "type": "string" }, "docUploadRequired": { "type": "boolean" }, "isStartState": { "type": "boolean" }, "isTerminateState": { "type": "boolean" }, "isStateUpdatable": { "type": "boolean" }, "actions": { "type": "array", "items": { "type": "object", "properties": { "action": { "type": "string" }, "nextState": { "type": "string" }, "roles": { "type": "array", "items": { "type": "string" } } }, "required": [ "action", "nextState", "roles" ] } } }, "required": [ "docUploadRequired", "isStartState", "isTerminateState", "isStateUpdatable", "actions" ] } } }, "required": [ "tenantId", "businessService", "business", "businessServiceSla", "states" ], "x-unique": [ "tenantId", "businessService" ], "x-ref-schema": [ { "fieldPath": "states.*.actions.*.roles", "schemaCode": "ACCESSCONTROL-ROLES.roles" } ], "x-ui-schema": { "ui:order": [ "businessService", "business", "businessServiceSla", "tenantId", "*" ] } }

@jagankumar-egov jagankumar-egov moved this from Dev Completed to Signed Off in Workflow UI Aug 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Signed Off
Development

No branches or pull requests

1 participant