Skip to content

Commit d31839a

Browse files
authored
json: Fix type specifications (dataType -> type) (#24)
The json schema previously specified the type of some attributes using the dataType attribute, which is invalid and inconsistent to the other type specifications. This commit fixes this by renaming these dataType attributes to type.
1 parent 15b6d24 commit d31839a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

schemas/json/aas.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -690,10 +690,10 @@
690690
{
691691
"properties": {
692692
"key": {
693-
"dataType": "string"
693+
"type": "string"
694694
},
695695
"value": {
696-
"dataType": "string"
696+
"type": "string"
697697
},
698698
"subjectId": {
699699
"$ref": "#/definitions/Reference"
@@ -861,7 +861,7 @@
861861
"$ref": "#/definitions/ModelingKind"
862862
},
863863
"idShort": {
864-
"dataType": "string"
864+
"type": "string"
865865
}
866866
},
867867
"required": [

0 commit comments

Comments
 (0)