Add 'description' field to SLA properties in JSON schema and update README

This commit is contained in:
Simon Harrer
2025-04-15 11:14:14 +02:00
parent acddac5a2b
commit 83ccb0e584
2 changed files with 6 additions and 0 deletions

View File

@@ -738,6 +738,7 @@ slaProperties:
value: 08:00-08:00
element: tab1.txn_ref_dt
driver: analytics
description: We are 24/7 available
```
### Definitions
@@ -752,6 +753,7 @@ slaProperties:
| slaProperties.unit | Unit | No - unless needed by property | **d**, day, days for days; **y**, yr, years for years, etc. Units use the ISO standard. |
| slaProperties.element | Element(s) | No | Element(s) to check on. Multiple elements should be extremely rare and, if so, separated by commas. |
| slaProperties.driver | Driver | No | Describes the importance of the SLA from the list of: `regulatory`, `analytics`, or `operational`. |
| slaProperties.description | Description | No | The description of the SLA |
## Infrastructure and Servers

View File

@@ -2310,6 +2310,10 @@
"type": "string",
"description": "Describes the importance of the SLA from the list of: `regulatory`, `analytics`, or `operational`.",
"examples": ["regulatory", "analytics", "operational"]
},
"description": {
"type": "string",
"description": "Description of the SLA property."
}
},
"required": ["property", "value"]