Skip to content

Commit 904d7e5

Browse files
committed
end of support
1 parent 2a021b6 commit 904d7e5

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ The fixed structure must be technology-agnostic. The first fields of teh fixed s
4545
* `ResponseTime: [Option[String]]` define the amount of time needed to take care of an incoming feature
4646
* `ResolutionTime: [Option[String]]` define the amount of time needed to fix the date
4747
* `InformationTime: [Option[String]]` define the amount of time needed to answer clarification questions.
48+
* `EndOfSupport: [Option[String]]` When this data product will go out of support.
4849
* `Status: [Option[String]]` this is an enum representing the status of this version of the Data Product. Allowed values are: `[Draft|Published|Retired]`. This is a metadata that communicates the overall status of the Data Product but is not reflected to the actual deployment status.
4950
* `Maturity: [Option[String]]` this is an enum to let the consumer understand if it is a tactical solution or not. It is really useful during migration from Data Warehouse or Data Lake. Allowed values are: `[Tactical|Strategic]`.
5051
* `Billing: [Option[Yaml]]` this is a free form key-value area where is possible to put information useful for resource tagging and billing.

data-product-specification.cue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ supportSLA: {
196196
responseTime: string | null
197197
resolutionTime: string | null
198198
informationTime: string | null
199+
endOfSupport: string | null
199200
}
200201
status?: string & =~"(?i)^(draft|published|retired)$" | null
201202
maturity?: string & =~"(?i)^(tactical|strategic)$" | null

example.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ supportSLA:
1818
responseTime: 1H
1919
resolutionTime: undefined
2020
informationTime: 2WD
21+
endOfSupport: 01/01/2026
2122
status: DRAFT
2223
maturity: Strategic
2324
billing: {}

0 commit comments

Comments
 (0)