-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix jsonization confusing
dict
for array
We fix the JSON de-serialization so that it explicitly check that a property is an array-like value instead of simply checking for inheritance from ``collections.abc.Iterable``, as mappings are also iterables in Python. This corresponds to [aas-core-codegen bcab1a9c]. [aas-core-codegen bcab1a9c]: aas-core-works/aas-core-codegen@bcab1a9c Fixes #31.
- Loading branch information
Showing
127 changed files
with
829 additions
and
621 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ected/Unserializable/NullViolation/DataSpecificationIec61360/preferredName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.preferredName: Expected an iterable, but got: <class 'NoneType'> | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.preferredName: Expected something array-like, but got: <class 'NoneType'> |
2 changes: 1 addition & 1 deletion
2
...tainedInEnvironment/Unexpected/Unserializable/NullViolation/Reference/keys.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].derivedFrom.keys: Expected an iterable, but got: <class 'NoneType'> | ||
assetAdministrationShells[0].derivedFrom.keys: Expected something array-like, but got: <class 'NoneType'> |
2 changes: 1 addition & 1 deletion
2
...ment/Unexpected/Unserializable/NullViolation/ValueList/valueReferencePairs.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.valueList.valueReferencePairs: Expected an iterable, but got: <class 'NoneType'> | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.valueList.valueReferencePairs: Expected something array-like, but got: <class 'NoneType'> |
2 changes: 1 addition & 1 deletion
2
...lizable/TypeViolation/AdministrativeInformation/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].administration.embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].administration.embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...cted/Unserializable/TypeViolation/AnnotatedRelationshipElement/annotations.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].annotations[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].annotations: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...cted/Unserializable/TypeViolation/AnnotatedRelationshipElement/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...cted/Unserializable/TypeViolation/AnnotatedRelationshipElement/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...able/TypeViolation/AnnotatedRelationshipElement/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ected/Unserializable/TypeViolation/AnnotatedRelationshipElement/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ected/Unserializable/TypeViolation/AnnotatedRelationshipElement/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...lizable/TypeViolation/AnnotatedRelationshipElement/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...expected/Unserializable/TypeViolation/AssetAdministrationShell/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...expected/Unserializable/TypeViolation/AssetAdministrationShell/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...alizable/TypeViolation/AssetAdministrationShell/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nexpected/Unserializable/TypeViolation/AssetAdministrationShell/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...Unexpected/Unserializable/TypeViolation/AssetAdministrationShell/submodels.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].submodels[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].submodels: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ment/Unexpected/Unserializable/TypeViolation/BasicEventElement/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ment/Unexpected/Unserializable/TypeViolation/BasicEventElement/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
.../Unserializable/TypeViolation/BasicEventElement/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nment/Unexpected/Unserializable/TypeViolation/BasicEventElement/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nment/Unexpected/Unserializable/TypeViolation/BasicEventElement/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ted/Unserializable/TypeViolation/BasicEventElement/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...inedInEnvironment/Unexpected/Unserializable/TypeViolation/Blob/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...inedInEnvironment/Unexpected/Unserializable/TypeViolation/Blob/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nt/Unexpected/Unserializable/TypeViolation/Blob/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ainedInEnvironment/Unexpected/Unserializable/TypeViolation/Blob/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ainedInEnvironment/Unexpected/Unserializable/TypeViolation/Blob/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nment/Unexpected/Unserializable/TypeViolation/Blob/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...Environment/Unexpected/Unserializable/TypeViolation/Capability/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...Environment/Unexpected/Unserializable/TypeViolation/Capability/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...xpected/Unserializable/TypeViolation/Capability/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nEnvironment/Unexpected/Unserializable/TypeViolation/Capability/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nEnvironment/Unexpected/Unserializable/TypeViolation/Capability/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...Unexpected/Unserializable/TypeViolation/Capability/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ent/Unexpected/Unserializable/TypeViolation/ConceptDescription/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
conceptDescriptions[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
conceptDescriptions[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ent/Unexpected/Unserializable/TypeViolation/ConceptDescription/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
conceptDescriptions[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
conceptDescriptions[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...Unserializable/TypeViolation/ConceptDescription/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
conceptDescriptions[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
conceptDescriptions[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ment/Unexpected/Unserializable/TypeViolation/ConceptDescription/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
conceptDescriptions[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
conceptDescriptions[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...onment/Unexpected/Unserializable/TypeViolation/ConceptDescription/isCaseOf.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
conceptDescriptions[0].isCaseOf[0]: Expected a mapping, but got: <class 'str'> | ||
conceptDescriptions[0].isCaseOf: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...expected/Unserializable/TypeViolation/DataSpecificationIec61360/definition.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.definition[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.definition: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ected/Unserializable/TypeViolation/DataSpecificationIec61360/preferredName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.preferredName[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.preferredName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nexpected/Unserializable/TypeViolation/DataSpecificationIec61360/shortName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.shortName[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].embeddedDataSpecifications[0].dataSpecificationContent.shortName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...edInEnvironment/Unexpected/Unserializable/TypeViolation/Entity/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...edInEnvironment/Unexpected/Unserializable/TypeViolation/Entity/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
.../Unexpected/Unserializable/TypeViolation/Entity/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nedInEnvironment/Unexpected/Unserializable/TypeViolation/Entity/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nedInEnvironment/Unexpected/Unserializable/TypeViolation/Entity/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nedInEnvironment/Unexpected/Unserializable/TypeViolation/Entity/statements.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].statements[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].statements: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ent/Unexpected/Unserializable/TypeViolation/Entity/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...edInEnvironment/Unexpected/Unserializable/TypeViolation/Extension/refersTo.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].extensions[0].refersTo[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].extensions[0].refersTo: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
.../Unexpected/Unserializable/TypeViolation/Extension/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
assetAdministrationShells[0].extensions[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
assetAdministrationShells[0].extensions[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...inedInEnvironment/Unexpected/Unserializable/TypeViolation/File/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...inedInEnvironment/Unexpected/Unserializable/TypeViolation/File/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nt/Unexpected/Unserializable/TypeViolation/File/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ainedInEnvironment/Unexpected/Unserializable/TypeViolation/File/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ainedInEnvironment/Unexpected/Unserializable/TypeViolation/File/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nment/Unexpected/Unserializable/TypeViolation/File/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
.../Unexpected/Unserializable/TypeViolation/MultiLanguageProperty/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
.../Unexpected/Unserializable/TypeViolation/MultiLanguageProperty/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...erializable/TypeViolation/MultiLanguageProperty/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...t/Unexpected/Unserializable/TypeViolation/MultiLanguageProperty/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...t/Unexpected/Unserializable/TypeViolation/MultiLanguageProperty/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...Unserializable/TypeViolation/MultiLanguageProperty/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...onment/Unexpected/Unserializable/TypeViolation/MultiLanguageProperty/value.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].value[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].value: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nEnvironment/Unexpected/Unserializable/TypeViolation/Operation/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...nEnvironment/Unexpected/Unserializable/TypeViolation/Operation/displayName.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].displayName[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].displayName: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...expected/Unserializable/TypeViolation/Operation/embeddedDataSpecifications.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].embeddedDataSpecifications[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].embeddedDataSpecifications: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...InEnvironment/Unexpected/Unserializable/TypeViolation/Operation/extensions.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].extensions[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].extensions: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...onment/Unexpected/Unserializable/TypeViolation/Operation/inoutputVariables.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].inoutputVariables[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].inoutputVariables: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...vironment/Unexpected/Unserializable/TypeViolation/Operation/inputVariables.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].inputVariables[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].inputVariables: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...ironment/Unexpected/Unserializable/TypeViolation/Operation/outputVariables.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].outputVariables[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].outputVariables: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...InEnvironment/Unexpected/Unserializable/TypeViolation/Operation/qualifiers.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].qualifiers[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].qualifiers: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
.../Unexpected/Unserializable/TypeViolation/Operation/supplementalSemanticIds.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].supplementalSemanticIds[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].supplementalSemanticIds: Expected something array-like, but got: <class 'str'> |
2 changes: 1 addition & 1 deletion
2
...InEnvironment/Unexpected/Unserializable/TypeViolation/Property/description.json.exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
submodels[0].submodelElements[0].description[0]: Expected a mapping, but got: <class 'str'> | ||
submodels[0].submodelElements[0].description: Expected something array-like, but got: <class 'str'> |
Oops, something went wrong.