Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ The fixed structure must be technology-agnostic. The first fields of teh fixed s
* `ResponseTime: [Option[String]]` define the amount of time needed to take care of an incoming feature
* `ResolutionTime: [Option[String]]` define the amount of time needed to fix the date
* `InformationTime: [Option[String]]` define the amount of time needed to answer clarification questions.
* `EndOfSupport: [Option[String]]` When this data product will go out of support.
* `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.
* `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]`.
* `Billing: [Option[Yaml]]` this is a free form key-value area where is possible to put information useful for resource tagging and billing.
Expand Down
1 change: 1 addition & 0 deletions data-product-specification.cue
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ supportSLA: {
responseTime: string | null
resolutionTime: string | null
informationTime: string | null
endOfSupport: string | null
}
status?: string & =~"(?i)^(draft|published|retired)$" | null
maturity?: string & =~"(?i)^(tactical|strategic)$" | null
Expand Down
1 change: 1 addition & 0 deletions example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ supportSLA:
responseTime: 1H
resolutionTime: undefined
informationTime: 2WD
endOfSupport: 01/01/2026
status: DRAFT
maturity: Strategic
billing: {}
Expand Down