Skip to content

Commit db696a1

Browse files
authored
add uuid to json schema
1 parent d784535 commit db696a1

6 files changed

+30
-0
lines changed

src/assets/YAML/schemas/dsomm-implementations-schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
".*": {
1010
"type": "object",
1111
"properties": {
12+
"uuid": {
13+
"type": "string",
14+
"format": "uuid"
15+
},
1216
"name": {
1317
"type": "string",
1418
"default": ""
@@ -31,6 +35,7 @@
3135
}
3236
},
3337
"required": [
38+
"uuid",
3439
"name",
3540
"tags",
3641
"url",

src/assets/YAML/schemas/dsomm-schema-build-and-deployment.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"^.*$": {
1313
"type": "object",
1414
"properties": {
15+
"uuid": {
16+
"type": "string",
17+
"format": "uuid"
18+
},
1519
"description": {
1620
"type": "string"
1721
},
@@ -142,6 +146,7 @@
142146
}
143147
},
144148
"required": [
149+
"uuid",
145150
"description",
146151
"risk",
147152
"measure",

src/assets/YAML/schemas/dsomm-schema-culture-and-organization.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"^.*$": {
1313
"type": "object",
1414
"properties": {
15+
"uuid": {
16+
"type": "string",
17+
"format": "uuid"
18+
},
1519
"description": {
1620
"type": "string"
1721
},
@@ -142,6 +146,7 @@
142146
}
143147
},
144148
"required": [
149+
"uuid",
145150
"description",
146151
"risk",
147152
"measure",

src/assets/YAML/schemas/dsomm-schema-implementation.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"^.*$": {
1313
"type": "object",
1414
"properties": {
15+
"uuid": {
16+
"type": "string",
17+
"format": "uuid"
18+
},
1519
"description": {
1620
"type": "string"
1721
},
@@ -142,6 +146,7 @@
142146
}
143147
},
144148
"required": [
149+
"uuid",
145150
"description",
146151
"risk",
147152
"measure",

src/assets/YAML/schemas/dsomm-schema-information-gathering.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"^.*$": {
1313
"type": "object",
1414
"properties": {
15+
"uuid": {
16+
"type": "string",
17+
"format": "uuid"
18+
},
1519
"description": {
1620
"type": "string"
1721
},
@@ -142,6 +146,7 @@
142146
}
143147
},
144148
"required": [
149+
"uuid",
145150
"description",
146151
"risk",
147152
"measure",

src/assets/YAML/schemas/dsomm-schema-test-and-verification.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"^.*$": {
1313
"type": "object",
1414
"properties": {
15+
"uuid": {
16+
"type": "string",
17+
"format": "uuid"
18+
},
1519
"description": {
1620
"type": "string"
1721
},
@@ -142,6 +146,7 @@
142146
}
143147
},
144148
"required": [
149+
"uuid",
145150
"description",
146151
"risk",
147152
"measure",

0 commit comments

Comments
 (0)