Skip to content

Commit

Permalink
json: Fix type specifications (dataType -> type) (#24)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jkhsjdhjs authored Feb 2, 2021
1 parent 15b6d24 commit d31839a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schemas/json/aas.json
Original file line number Diff line number Diff line change
Expand Up @@ -690,10 +690,10 @@
{
"properties": {
"key": {
"dataType": "string"
"type": "string"
},
"value": {
"dataType": "string"
"type": "string"
},
"subjectId": {
"$ref": "#/definitions/Reference"
Expand Down Expand Up @@ -861,7 +861,7 @@
"$ref": "#/definitions/ModelingKind"
},
"idShort": {
"dataType": "string"
"type": "string"
}
},
"required": [
Expand Down

0 comments on commit d31839a

Please sign in to comment.