Skip to content

Commit

Permalink
Merge pull request #30 from agile-lab/main
Browse files Browse the repository at this point in the history
end of support
  • Loading branch information
agile-lab authored Nov 7, 2024
2 parents dbc7443 + 904d7e5 commit ac628fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
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

0 comments on commit ac628fa

Please sign in to comment.