Skip to content

Commit fd62a0a

Browse files
authored
Merge pull request #49 from aorzelskiGH/aorzelski/issue41
as approved by security task force on 20.01.2026
2 parents 985abd3 + f84dd06 commit fd62a0a

File tree

2 files changed

+38
-4
lines changed

2 files changed

+38
-4
lines changed

documentation/IDTA-01004/modules/ROOT/partials/json/aas-queries-and-access-rules-schema.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -820,11 +820,28 @@
820820
"items": {
821821
"$ref": "#/definitions/attributeItem"
822822
}
823+
},
824+
"USEATTRIBUTES": {
825+
"type": "array",
826+
"items": {
827+
"type": "string"
828+
}
823829
}
824830
},
825831
"required": [
826-
"name",
827-
"attributes"
832+
"name"
833+
],
834+
"oneOf": [
835+
{
836+
"required": [
837+
"attributes"
838+
]
839+
},
840+
{
841+
"required": [
842+
"USEATTRIBUTES"
843+
]
844+
}
828845
],
829846
"additionalProperties": false
830847
}

documentation/IDTA-01004/modules/ROOT/partials/json/access-rule-model.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,28 @@
251251
"items": {
252252
"$ref": "#/definitions/attributeItem"
253253
}
254+
},
255+
"USEATTRIBUTES": {
256+
"type": "array",
257+
"items": {
258+
"type": "string"
259+
}
254260
}
255261
},
256262
"required": [
257-
"name",
258-
"attributes"
263+
"name"
264+
],
265+
"oneOf": [
266+
{
267+
"required": [
268+
"attributes"
269+
]
270+
},
271+
{
272+
"required": [
273+
"USEATTRIBUTES"
274+
]
275+
}
259276
],
260277
"additionalProperties": false
261278
}

0 commit comments

Comments
 (0)