Skip to content

Commit 254e986

Browse files
committed
fixed cue policy
1 parent b06fefd commit 254e986

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

data-product-specification.cue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,9 @@ fullyQualifiedName?: string | null
183183
description: string
184184
kind: string & =~"(?i)^(dataproduct)$"
185185
domain: string
186+
country?: string & =~"^[A-Z]{2,3}$" | null // ISO 3166-1 alpha-2/alpha-3 (e.g., IT, DE, USA)
187+
legalEntity?: string | null // Owning legal entity identifier/name
188+
brand?: string | null
186189
version: #Version
187190
let majorVersion = strings.Split(version, ".")[0]
188191
environment: string
@@ -210,6 +213,16 @@ businessInfo: {
210213
pricingInfo: {...} | null
211214
...
212215
}
216+
217+
regulations?: {
218+
doraClassification?: string & =~"(?i)^(critical|important|non-critical)$" | null
219+
aiActRelevance?: string & =~"(?i)^(minimal|limited|high-risk|prohibited|none)$" | null
220+
soxRelevance?: string & =~"(?i)^(Yes|No)$" | null
221+
esgDisclosure?: string & =~"(?i)^(Yes|No)$" | null
222+
baselApplicability?: string & =~"(?i)^(none|credit-risk|market-risk|operational-risk)$" | null
223+
...
224+
}
225+
213226
securityInfo: {
214227
confidentiality: string & =~"(?i)^(Public|Internal|Confidential|Restricted|Secret)$"| null
215228
visibility: string & =~"(?i)^(Global|Department)$" | null

0 commit comments

Comments
 (0)