Skip to content

Commit

Permalink
Create a resiliency domain, README to coordinate contributions, and a…
Browse files Browse the repository at this point in the history
… core schema for shared types in finos#349
  • Loading branch information
jpgough-ms committed Sep 3, 2024
1 parent abded4d commit ab34df7
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions domains/resiliency/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Resiliency Domain
42 changes: 42 additions & 0 deletions domains/resiliency/schemas/resiliency-core.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/finos/architecture-as-code/main/domains/resiliency/schemas/resiliency-core.json",
"title": "Core definitions for use in the resiliency domain",
"defs": {
"resiliency-requirement-type": {
"enum" : [
"Policy",
"Business",
"Implementation"
]
},
"criticality-rating": {
"enum": [
"tier1",
"tier2",
"tier3"
]
},
"application-mode": {
"enum": [
"mandatory",
"optional"
]
},
"criticality-definition": {
"type": "object",
"properties" : {
"application-mode": {
"$ref": "#/defs/application-mode"
},
"criticality-rating": {
"$ref": "#/defs/criticality-rating"
}
},
"required": [
"application-mode",
"criticality-rating"
]
}
}
}

0 comments on commit ab34df7

Please sign in to comment.