diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index fd202246..84b97394 100644 --- a/ansys-grantami-serverapi-openapi/pyproject.toml +++ b/ansys-grantami-serverapi-openapi/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "ansys-grantami-serverapi-openapi" description = "Autogenerated client library for the Granta MI Server API." -version = "4.0.0.dev336" +version = "4.0.0.dev338" license = "MIT" authors = ["ANSYS, Inc. "] maintainers = ["ANSYS, Inc. "] diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_attribute.py index 4afd83d5..b1deeec8 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_attribute.py @@ -73,6 +73,7 @@ class GsaAttribute(ModelBase): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -87,6 +88,7 @@ class GsaAttribute(ModelBase): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -131,6 +133,7 @@ def __init__( type: "GsaAttributeType", about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaAttribute - a model defined in Swagger @@ -147,10 +150,12 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ self._default_threshold_type: GsaAttributeThresholdType self._axis_name: Union[str, None, Unset_Type] = Unset + self._axis_name_display_names: Union[dict[str, str], None, Unset_Type] = Unset self._help_path: Union[str, None, Unset_Type] = Unset self._info: GsaAttributeInfo self._type: GsaAttributeType @@ -164,6 +169,8 @@ def __init__( self.default_threshold_type = default_threshold_type if axis_name is not Unset: self.axis_name = axis_name + if axis_name_display_names is not Unset: + self.axis_name_display_names = axis_name_display_names if help_path is not Unset: self.help_path = help_path self.info = info @@ -226,6 +233,30 @@ def axis_name(self, axis_name: "Union[str, None, Unset_Type]") -> None: """ self._axis_name = axis_name + @property + def axis_name_display_names(self) -> "Union[dict[str, str], None, Unset_Type]": + """Gets the axis_name_display_names of this GsaAttribute. + + Returns + ------- + Union[dict[str, str], None, Unset_Type] + The axis_name_display_names of this GsaAttribute. + """ + return self._axis_name_display_names + + @axis_name_display_names.setter + def axis_name_display_names( + self, axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" + ) -> None: + """Sets the axis_name_display_names of this GsaAttribute. + + Parameters + ---------- + axis_name_display_names: Union[dict[str, str], None, Unset_Type] + The axis_name_display_names of this GsaAttribute. + """ + self._axis_name_display_names = axis_name_display_names + @property def help_path(self) -> "Union[str, None, Unset_Type]": """Gets the help_path of this GsaAttribute. diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_date_time_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_date_time_attribute.py index ebd916a2..3c794ac9 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_date_time_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_date_time_attribute.py @@ -74,6 +74,7 @@ class GsaDateTimeAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -88,6 +89,7 @@ class GsaDateTimeAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -108,6 +110,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.DATETIME, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaDateTimeAttribute - a model defined in Swagger @@ -124,6 +127,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -137,6 +141,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_attribute.py index f1f4f277..fa1ccb30 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_attribute.py @@ -76,6 +76,7 @@ class GsaDiscreteAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -92,6 +93,7 @@ class GsaDiscreteAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -116,6 +118,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.DISCRETE, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaDiscreteAttribute - a model defined in Swagger @@ -134,6 +137,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -147,6 +151,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._discrete_type: GsaSlimNamedEntity diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_functional_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_functional_attribute.py index 8d1138e9..78e88625 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_functional_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_discrete_functional_attribute.py @@ -76,6 +76,7 @@ class GsaDiscreteFunctionalAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -92,6 +93,7 @@ class GsaDiscreteFunctionalAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -117,6 +119,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.DISCRETEFUNCTIONAL, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaDiscreteFunctionalAttribute - a model defined in Swagger @@ -135,6 +138,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -148,6 +152,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._discrete_type: GsaSlimNamedEntity diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_file_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_file_attribute.py index 75b6b5cb..ba42ce9c 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_file_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_file_attribute.py @@ -74,6 +74,7 @@ class GsaFileAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -88,6 +89,7 @@ class GsaFileAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -108,6 +110,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.FILE, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaFileAttribute - a model defined in Swagger @@ -124,6 +127,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -137,6 +141,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_float_functional_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_float_functional_attribute.py index 090625a2..120a82b9 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_float_functional_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_float_functional_attribute.py @@ -76,6 +76,7 @@ class GsaFloatFunctionalAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", "unit": "GsaSlimUnit", } @@ -93,6 +94,7 @@ class GsaFloatFunctionalAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", "unit": "unit", } @@ -119,6 +121,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.FLOATFUNCTIONAL, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, unit: "Union[GsaSlimUnit, Unset_Type]" = Unset, ) -> None: @@ -138,6 +141,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional unit: GsaSlimUnit, optional """ @@ -152,6 +156,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._unit: Union[GsaSlimUnit, Unset_Type] = Unset diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_hyperlink_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_hyperlink_attribute.py index 41e75472..bf3b0acd 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_hyperlink_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_hyperlink_attribute.py @@ -74,6 +74,7 @@ class GsaHyperlinkAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -88,6 +89,7 @@ class GsaHyperlinkAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -108,6 +110,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.HYPERLINK, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaHyperlinkAttribute - a model defined in Swagger @@ -124,6 +127,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -137,6 +141,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_integer_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_integer_attribute.py index 57a8ecea..3ab7a957 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_integer_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_integer_attribute.py @@ -75,6 +75,7 @@ class GsaIntegerAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -90,6 +91,7 @@ class GsaIntegerAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -111,6 +113,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.INTEGER, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaIntegerAttribute - a model defined in Swagger @@ -128,6 +131,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -141,6 +145,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._is_unique: bool diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_logical_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_logical_attribute.py index aa0a864d..d55045cc 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_logical_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_logical_attribute.py @@ -74,6 +74,7 @@ class GsaLogicalAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -88,6 +89,7 @@ class GsaLogicalAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -108,6 +110,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.LOGICAL, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaLogicalAttribute - a model defined in Swagger @@ -124,6 +127,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -137,6 +141,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_long_text_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_long_text_attribute.py index 25470d42..ae1716b3 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_long_text_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_long_text_attribute.py @@ -74,6 +74,7 @@ class GsaLongTextAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -88,6 +89,7 @@ class GsaLongTextAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -108,6 +110,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.LONGTEXT, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaLongTextAttribute - a model defined in Swagger @@ -124,6 +127,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -137,6 +141,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_maths_functional_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_maths_functional_attribute.py index f91b4d1b..7f0f1311 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_maths_functional_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_maths_functional_attribute.py @@ -81,6 +81,7 @@ class GsaMathsFunctionalAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", "unit": "GsaSlimUnit", } @@ -103,6 +104,7 @@ class GsaMathsFunctionalAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", "unit": "unit", } @@ -136,6 +138,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.MATHSFUNCTIONAL, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, unit: "Union[GsaSlimUnit, Unset_Type]" = Unset, ) -> None: @@ -160,6 +163,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional unit: GsaSlimUnit, optional """ @@ -174,6 +178,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._unit: Union[GsaSlimUnit, Unset_Type] = Unset diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_picture_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_picture_attribute.py index f06832d1..48b648fd 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_picture_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_picture_attribute.py @@ -74,6 +74,7 @@ class GsaPictureAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", } @@ -88,6 +89,7 @@ class GsaPictureAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", } @@ -108,6 +110,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.PICTURE, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaPictureAttribute - a model defined in Swagger @@ -124,6 +127,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional """ super().__init__( @@ -137,6 +141,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_point_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_point_attribute.py index be0858cb..9ef1ccfe 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_point_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_point_attribute.py @@ -76,6 +76,7 @@ class GsaPointAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", "unit": "GsaSlimUnit", } @@ -93,6 +94,7 @@ class GsaPointAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", "unit": "unit", } @@ -119,6 +121,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.POINT, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, unit: "Union[GsaSlimUnit, Unset_Type]" = Unset, ) -> None: @@ -138,6 +141,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional unit: GsaSlimUnit, optional """ @@ -152,6 +156,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._unit: Union[GsaSlimUnit, Unset_Type] = Unset diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute.py index bb7c3282..6c5ebb54 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute.py @@ -62,9 +62,12 @@ class GsaQueryAttribute(ModelBase): """ swagger_types: dict[str, str] = { "attribute_parameters": "list[GsaQuerySlimNamedEntity]", + "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "data_rule": "GsaQueryDataRule", "default_threshold_type": "GsaAttributeThresholdType", "discrete_type": "GsaQuerySlimDiscreteType", + "display_names": "dict(str, str)", "expressions": "list[GsaQuerySlimNamedEntity]", "guid": "str", "info": "GsaQueryAttributeInfo", @@ -80,9 +83,12 @@ class GsaQueryAttribute(ModelBase): attribute_map: dict[str, str] = { "attribute_parameters": "attributeParameters", + "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "data_rule": "dataRule", "default_threshold_type": "defaultThresholdType", "discrete_type": "discreteType", + "display_names": "displayNames", "expressions": "expressions", "guid": "guid", "info": "info", @@ -115,9 +121,12 @@ def __init__( self, *, attribute_parameters: "Union[list[GsaQuerySlimNamedEntity], None, Unset_Type]" = Unset, + axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, data_rule: "Union[GsaQueryDataRule, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, discrete_type: "Union[GsaQuerySlimDiscreteType, Unset_Type]" = Unset, + display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, expressions: "Union[list[GsaQuerySlimNamedEntity], None, Unset_Type]" = Unset, guid: "Union[str, None, Unset_Type]" = Unset, info: "Union[GsaQueryAttributeInfo, Unset_Type]" = Unset, @@ -135,9 +144,12 @@ def __init__( Parameters ---------- attribute_parameters: list[GsaQuerySlimNamedEntity], optional + axis_name: str, optional + axis_name_display_names: dict[str, str], optional data_rule: GsaQueryDataRule, optional default_threshold_type: GsaAttributeThresholdType, optional discrete_type: GsaQuerySlimDiscreteType, optional + display_names: dict[str, str], optional expressions: list[GsaQuerySlimNamedEntity], optional guid: str, optional info: GsaQueryAttributeInfo, optional @@ -155,6 +167,8 @@ def __init__( self._is_hidden_from_search_criteria: Union[bool, None, Unset_Type] = Unset self._is_multi_valued: Union[bool, None, Unset_Type] = Unset self._is_functional_range: Union[bool, None, Unset_Type] = Unset + self._axis_name: Union[str, None, Unset_Type] = Unset + self._axis_name_display_names: Union[dict[str, str], None, Unset_Type] = Unset self._info: Union[GsaQueryAttributeInfo, Unset_Type] = Unset self._unit: Union[GsaQueryUnit, Unset_Type] = Unset self._discrete_type: Union[GsaQuerySlimDiscreteType, Unset_Type] = Unset @@ -163,6 +177,7 @@ def __init__( self._tabular_columns: Union[list[GsaQuerySlimNamedEntity], None, Unset_Type] = Unset self._attribute_parameters: Union[list[GsaQuerySlimNamedEntity], None, Unset_Type] = Unset self._expressions: Union[list[GsaQuerySlimNamedEntity], None, Unset_Type] = Unset + self._display_names: Union[dict[str, str], None, Unset_Type] = Unset self._name: Union[str, None, Unset_Type] = Unset self._guid: Union[str, None, Unset_Type] = Unset @@ -176,6 +191,10 @@ def __init__( self.is_multi_valued = is_multi_valued if is_functional_range is not Unset: self.is_functional_range = is_functional_range + if axis_name is not Unset: + self.axis_name = axis_name + if axis_name_display_names is not Unset: + self.axis_name_display_names = axis_name_display_names if info is not Unset: self.info = info if unit is not Unset: @@ -192,6 +211,8 @@ def __init__( self.attribute_parameters = attribute_parameters if expressions is not Unset: self.expressions = expressions + if display_names is not Unset: + self.display_names = display_names if name is not Unset: self.name = name if guid is not Unset: @@ -317,6 +338,52 @@ def is_functional_range(self, is_functional_range: "Union[bool, None, Unset_Type """ self._is_functional_range = is_functional_range + @property + def axis_name(self) -> "Union[str, None, Unset_Type]": + """Gets the axis_name of this GsaQueryAttribute. + + Returns + ------- + Union[str, None, Unset_Type] + The axis_name of this GsaQueryAttribute. + """ + return self._axis_name + + @axis_name.setter + def axis_name(self, axis_name: "Union[str, None, Unset_Type]") -> None: + """Sets the axis_name of this GsaQueryAttribute. + + Parameters + ---------- + axis_name: Union[str, None, Unset_Type] + The axis_name of this GsaQueryAttribute. + """ + self._axis_name = axis_name + + @property + def axis_name_display_names(self) -> "Union[dict[str, str], None, Unset_Type]": + """Gets the axis_name_display_names of this GsaQueryAttribute. + + Returns + ------- + Union[dict[str, str], None, Unset_Type] + The axis_name_display_names of this GsaQueryAttribute. + """ + return self._axis_name_display_names + + @axis_name_display_names.setter + def axis_name_display_names( + self, axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" + ) -> None: + """Sets the axis_name_display_names of this GsaQueryAttribute. + + Parameters + ---------- + axis_name_display_names: Union[dict[str, str], None, Unset_Type] + The axis_name_display_names of this GsaQueryAttribute. + """ + self._axis_name_display_names = axis_name_display_names + @property def info(self) -> "Union[GsaQueryAttributeInfo, Unset_Type]": """Gets the info of this GsaQueryAttribute. @@ -514,6 +581,28 @@ def expressions( """ self._expressions = expressions + @property + def display_names(self) -> "Union[dict[str, str], None, Unset_Type]": + """Gets the display_names of this GsaQueryAttribute. + + Returns + ------- + Union[dict[str, str], None, Unset_Type] + The display_names of this GsaQueryAttribute. + """ + return self._display_names + + @display_names.setter + def display_names(self, display_names: "Union[dict[str, str], None, Unset_Type]") -> None: + """Sets the display_names of this GsaQueryAttribute. + + Parameters + ---------- + display_names: Union[dict[str, str], None, Unset_Type] + The display_names of this GsaQueryAttribute. + """ + self._display_names = display_names + @property def name(self) -> "Union[str, None, Unset_Type]": """Gets the name of this GsaQueryAttribute. diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute_properties.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute_properties.py index e8b51a1d..eeba9e70 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute_properties.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_query_attribute_properties.py @@ -62,9 +62,12 @@ class GsaQueryAttributeProperties(ModelBase): """ swagger_types: dict[str, str] = { "attribute_parameters": "GsaQuerySlimNamedEntityProperties", + "axis_name": "bool", + "axis_name_display_names": "bool", "data_rule": "GsaQueryDataRuleProperties", "default_threshold_type": "bool", "discrete_type": "GsaQuerySlimDiscreteTypeProperties", + "display_names": "bool", "expressions": "GsaQuerySlimNamedEntityProperties", "guid": "bool", "info": "GsaQueryAttributeInfoProperties", @@ -80,9 +83,12 @@ class GsaQueryAttributeProperties(ModelBase): attribute_map: dict[str, str] = { "attribute_parameters": "attributeParameters", + "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "data_rule": "dataRule", "default_threshold_type": "defaultThresholdType", "discrete_type": "discreteType", + "display_names": "displayNames", "expressions": "expressions", "guid": "guid", "info": "info", @@ -113,9 +119,12 @@ def __init__( self, *, attribute_parameters: "Union[GsaQuerySlimNamedEntityProperties, Unset_Type]" = Unset, + axis_name: "Union[bool, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[bool, None, Unset_Type]" = Unset, data_rule: "Union[GsaQueryDataRuleProperties, Unset_Type]" = Unset, default_threshold_type: "Union[bool, None, Unset_Type]" = Unset, discrete_type: "Union[GsaQuerySlimDiscreteTypeProperties, Unset_Type]" = Unset, + display_names: "Union[bool, None, Unset_Type]" = Unset, expressions: "Union[GsaQuerySlimNamedEntityProperties, Unset_Type]" = Unset, guid: "Union[bool, None, Unset_Type]" = Unset, info: "Union[GsaQueryAttributeInfoProperties, Unset_Type]" = Unset, @@ -133,9 +142,12 @@ def __init__( Parameters ---------- attribute_parameters: GsaQuerySlimNamedEntityProperties, optional + axis_name: bool, optional + axis_name_display_names: bool, optional data_rule: GsaQueryDataRuleProperties, optional default_threshold_type: bool, optional discrete_type: GsaQuerySlimDiscreteTypeProperties, optional + display_names: bool, optional expressions: GsaQuerySlimNamedEntityProperties, optional guid: bool, optional info: GsaQueryAttributeInfoProperties, optional @@ -153,6 +165,8 @@ def __init__( self._is_hidden_from_search_criteria: Union[bool, None, Unset_Type] = Unset self._is_multi_valued: Union[bool, None, Unset_Type] = Unset self._is_functional_range: Union[bool, None, Unset_Type] = Unset + self._axis_name: Union[bool, None, Unset_Type] = Unset + self._axis_name_display_names: Union[bool, None, Unset_Type] = Unset self._info: Union[GsaQueryAttributeInfoProperties, Unset_Type] = Unset self._unit: Union[GsaQueryUnitProperties, Unset_Type] = Unset self._discrete_type: Union[GsaQuerySlimDiscreteTypeProperties, Unset_Type] = Unset @@ -161,6 +175,7 @@ def __init__( self._tabular_columns: Union[GsaQuerySlimNamedEntityProperties, Unset_Type] = Unset self._attribute_parameters: Union[GsaQuerySlimNamedEntityProperties, Unset_Type] = Unset self._expressions: Union[GsaQuerySlimNamedEntityProperties, Unset_Type] = Unset + self._display_names: Union[bool, None, Unset_Type] = Unset self._name: Union[bool, None, Unset_Type] = Unset self._guid: Union[bool, None, Unset_Type] = Unset @@ -174,6 +189,10 @@ def __init__( self.is_multi_valued = is_multi_valued if is_functional_range is not Unset: self.is_functional_range = is_functional_range + if axis_name is not Unset: + self.axis_name = axis_name + if axis_name_display_names is not Unset: + self.axis_name_display_names = axis_name_display_names if info is not Unset: self.info = info if unit is not Unset: @@ -190,6 +209,8 @@ def __init__( self.attribute_parameters = attribute_parameters if expressions is not Unset: self.expressions = expressions + if display_names is not Unset: + self.display_names = display_names if name is not Unset: self.name = name if guid is not Unset: @@ -311,6 +332,52 @@ def is_functional_range(self, is_functional_range: "Union[bool, None, Unset_Type """ self._is_functional_range = is_functional_range + @property + def axis_name(self) -> "Union[bool, None, Unset_Type]": + """Gets the axis_name of this GsaQueryAttributeProperties. + + Returns + ------- + Union[bool, None, Unset_Type] + The axis_name of this GsaQueryAttributeProperties. + """ + return self._axis_name + + @axis_name.setter + def axis_name(self, axis_name: "Union[bool, None, Unset_Type]") -> None: + """Sets the axis_name of this GsaQueryAttributeProperties. + + Parameters + ---------- + axis_name: Union[bool, None, Unset_Type] + The axis_name of this GsaQueryAttributeProperties. + """ + self._axis_name = axis_name + + @property + def axis_name_display_names(self) -> "Union[bool, None, Unset_Type]": + """Gets the axis_name_display_names of this GsaQueryAttributeProperties. + + Returns + ------- + Union[bool, None, Unset_Type] + The axis_name_display_names of this GsaQueryAttributeProperties. + """ + return self._axis_name_display_names + + @axis_name_display_names.setter + def axis_name_display_names( + self, axis_name_display_names: "Union[bool, None, Unset_Type]" + ) -> None: + """Sets the axis_name_display_names of this GsaQueryAttributeProperties. + + Parameters + ---------- + axis_name_display_names: Union[bool, None, Unset_Type] + The axis_name_display_names of this GsaQueryAttributeProperties. + """ + self._axis_name_display_names = axis_name_display_names + @property def info(self) -> "Union[GsaQueryAttributeInfoProperties, Unset_Type]": """Gets the info of this GsaQueryAttributeProperties. @@ -519,6 +586,28 @@ def expressions( raise ValueError("Invalid value for 'expressions', must not be 'None'") self._expressions = expressions + @property + def display_names(self) -> "Union[bool, None, Unset_Type]": + """Gets the display_names of this GsaQueryAttributeProperties. + + Returns + ------- + Union[bool, None, Unset_Type] + The display_names of this GsaQueryAttributeProperties. + """ + return self._display_names + + @display_names.setter + def display_names(self, display_names: "Union[bool, None, Unset_Type]") -> None: + """Sets the display_names of this GsaQueryAttributeProperties. + + Parameters + ---------- + display_names: Union[bool, None, Unset_Type] + The display_names of this GsaQueryAttributeProperties. + """ + self._display_names = display_names + @property def name(self) -> "Union[bool, None, Unset_Type]": """Gets the name of this GsaQueryAttributeProperties. diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_range_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_range_attribute.py index 33de8e96..10604e0d 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_range_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_range_attribute.py @@ -74,6 +74,7 @@ class GsaRangeAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", "unit": "GsaSlimUnit", } @@ -89,6 +90,7 @@ class GsaRangeAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", "unit": "unit", } @@ -112,6 +114,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.RANGE, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, unit: "Union[GsaSlimUnit, Unset_Type]" = Unset, ) -> None: @@ -129,6 +132,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional unit: GsaSlimUnit, optional """ @@ -143,6 +147,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._unit: Union[GsaSlimUnit, Unset_Type] = Unset diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_short_text_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_short_text_attribute.py index 46646c44..05fda774 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_short_text_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_short_text_attribute.py @@ -75,6 +75,7 @@ class GsaShortTextAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "data_rule": "GsaSlimNamedEntity", "help_path": "str", } @@ -91,6 +92,7 @@ class GsaShortTextAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "data_rule": "dataRule", "help_path": "helpPath", } @@ -115,6 +117,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.SHORTTEXT, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, data_rule: "Union[GsaSlimNamedEntity, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, ) -> None: @@ -133,6 +136,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional data_rule: GsaSlimNamedEntity, optional help_path: str, optional """ @@ -147,6 +151,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._is_unique: bool diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_tabular_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_tabular_attribute.py index 89962a2d..7830337a 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_tabular_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_tabular_attribute.py @@ -78,6 +78,7 @@ class GsaTabularAttribute(GsaAttribute): "type": "GsaAttributeType", "about_attribute": "GsaSlimTypedAttribute", "axis_name": "str", + "axis_name_display_names": "dict(str, str)", "help_path": "str", "target": "GsaTabularAttributeTarget", } @@ -97,6 +98,7 @@ class GsaTabularAttribute(GsaAttribute): "type": "type", "about_attribute": "aboutAttribute", "axis_name": "axisName", + "axis_name_display_names": "axisNameDisplayNames", "help_path": "helpPath", "target": "target", } @@ -125,6 +127,7 @@ def __init__( type: "GsaAttributeType" = GsaAttributeType.LINK, about_attribute: "Union[GsaSlimTypedAttribute, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, + axis_name_display_names: "Union[dict[str, str], None, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, target: "Union[GsaTabularAttributeTarget, Unset_Type]" = Unset, ) -> None: @@ -146,6 +149,7 @@ def __init__( type: GsaAttributeType about_attribute: GsaSlimTypedAttribute, optional axis_name: str, optional + axis_name_display_names: dict[str, str], optional help_path: str, optional target: GsaTabularAttributeTarget, optional """ @@ -160,6 +164,7 @@ def __init__( type=type, about_attribute=about_attribute, axis_name=axis_name, + axis_name_display_names=axis_name_display_names, help_path=help_path, ) self._display_full_table: bool diff --git a/yaml/server-api.json b/yaml/server-api.json index cbb7e9bc..71bbfcbd 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -170,7 +170,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "71a594a9-3985-4e47-b990-7604ea491ae8", + "criterionGuid": "8f885ff5-e013-4b96-8423-db402582d4c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -196,7 +196,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "07c5a40d-fbdd-4300-8462-4a5dc40e2f99", + "criterionGuid": "8f7b3bc6-2645-4f42-905a-b1ffea0416f8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -228,7 +228,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e20768a8-29ec-4795-b82c-a97d645c137c", + "criterionGuid": "4382dff6-d29e-476e-9f29-3288ca58a9a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -390,7 +390,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "71a594a9-3985-4e47-b990-7604ea491ae8", + "criterionGuid": "8f885ff5-e013-4b96-8423-db402582d4c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -416,7 +416,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "07c5a40d-fbdd-4300-8462-4a5dc40e2f99", + "criterionGuid": "8f7b3bc6-2645-4f42-905a-b1ffea0416f8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -448,7 +448,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e20768a8-29ec-4795-b82c-a97d645c137c", + "criterionGuid": "4382dff6-d29e-476e-9f29-3288ca58a9a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -610,7 +610,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "71a594a9-3985-4e47-b990-7604ea491ae8", + "criterionGuid": "8f885ff5-e013-4b96-8423-db402582d4c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -636,7 +636,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "07c5a40d-fbdd-4300-8462-4a5dc40e2f99", + "criterionGuid": "8f7b3bc6-2645-4f42-905a-b1ffea0416f8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -668,7 +668,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e20768a8-29ec-4795-b82c-a97d645c137c", + "criterionGuid": "4382dff6-d29e-476e-9f29-3288ca58a9a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -830,7 +830,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "71a594a9-3985-4e47-b990-7604ea491ae8", + "criterionGuid": "8f885ff5-e013-4b96-8423-db402582d4c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -856,7 +856,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "07c5a40d-fbdd-4300-8462-4a5dc40e2f99", + "criterionGuid": "8f7b3bc6-2645-4f42-905a-b1ffea0416f8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -888,7 +888,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e20768a8-29ec-4795-b82c-a97d645c137c", + "criterionGuid": "4382dff6-d29e-476e-9f29-3288ca58a9a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1131,7 +1131,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "45eecf6e-8075-47cc-80df-9c9c46e128f9", + "criterionGuid": "23b6779e-aa62-4e3a-9cf1-ff51b8b2a2d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1157,7 +1157,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "96f9fb82-b796-4759-bbd0-3cff499bc73b", + "criterionGuid": "8366bc59-b3a2-4f29-b581-3113d6b8ed2e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1189,7 +1189,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b271463e-1077-4666-b0ba-eae77e7a3089", + "criterionGuid": "4d5325dc-3077-44c3-a8bc-927815efca68", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1351,7 +1351,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "45eecf6e-8075-47cc-80df-9c9c46e128f9", + "criterionGuid": "23b6779e-aa62-4e3a-9cf1-ff51b8b2a2d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1377,7 +1377,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "96f9fb82-b796-4759-bbd0-3cff499bc73b", + "criterionGuid": "8366bc59-b3a2-4f29-b581-3113d6b8ed2e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1409,7 +1409,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b271463e-1077-4666-b0ba-eae77e7a3089", + "criterionGuid": "4d5325dc-3077-44c3-a8bc-927815efca68", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1571,7 +1571,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "45eecf6e-8075-47cc-80df-9c9c46e128f9", + "criterionGuid": "23b6779e-aa62-4e3a-9cf1-ff51b8b2a2d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1597,7 +1597,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "96f9fb82-b796-4759-bbd0-3cff499bc73b", + "criterionGuid": "8366bc59-b3a2-4f29-b581-3113d6b8ed2e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1629,7 +1629,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b271463e-1077-4666-b0ba-eae77e7a3089", + "criterionGuid": "4d5325dc-3077-44c3-a8bc-927815efca68", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1791,7 +1791,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "45eecf6e-8075-47cc-80df-9c9c46e128f9", + "criterionGuid": "23b6779e-aa62-4e3a-9cf1-ff51b8b2a2d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1817,7 +1817,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "96f9fb82-b796-4759-bbd0-3cff499bc73b", + "criterionGuid": "8366bc59-b3a2-4f29-b581-3113d6b8ed2e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1849,7 +1849,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b271463e-1077-4666-b0ba-eae77e7a3089", + "criterionGuid": "4d5325dc-3077-44c3-a8bc-927815efca68", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2083,7 +2083,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0214c495-021e-4817-8717-fc7c3056331a", + "criterionGuid": "955f12ae-a44d-4b6e-9af9-01eee760599a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2109,7 +2109,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "52976590-1b6d-4c9c-b206-43db0f43fa30", + "criterionGuid": "02cd994b-0b12-45ed-a108-34bbe334bcc8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2141,7 +2141,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "de9cc344-683b-41c9-89be-5055e511a073", + "criterionGuid": "76e8b71e-0162-48ce-bcd2-5f3e845744be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2303,7 +2303,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0214c495-021e-4817-8717-fc7c3056331a", + "criterionGuid": "955f12ae-a44d-4b6e-9af9-01eee760599a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2329,7 +2329,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "52976590-1b6d-4c9c-b206-43db0f43fa30", + "criterionGuid": "02cd994b-0b12-45ed-a108-34bbe334bcc8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2361,7 +2361,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "de9cc344-683b-41c9-89be-5055e511a073", + "criterionGuid": "76e8b71e-0162-48ce-bcd2-5f3e845744be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2523,7 +2523,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0214c495-021e-4817-8717-fc7c3056331a", + "criterionGuid": "955f12ae-a44d-4b6e-9af9-01eee760599a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2549,7 +2549,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "52976590-1b6d-4c9c-b206-43db0f43fa30", + "criterionGuid": "02cd994b-0b12-45ed-a108-34bbe334bcc8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2581,7 +2581,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "de9cc344-683b-41c9-89be-5055e511a073", + "criterionGuid": "76e8b71e-0162-48ce-bcd2-5f3e845744be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2743,7 +2743,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0214c495-021e-4817-8717-fc7c3056331a", + "criterionGuid": "955f12ae-a44d-4b6e-9af9-01eee760599a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2769,7 +2769,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "52976590-1b6d-4c9c-b206-43db0f43fa30", + "criterionGuid": "02cd994b-0b12-45ed-a108-34bbe334bcc8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2801,7 +2801,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "de9cc344-683b-41c9-89be-5055e511a073", + "criterionGuid": "76e8b71e-0162-48ce-bcd2-5f3e845744be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3011,7 +3011,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e6581f94-323d-4945-b77a-006b51607eab", + "criterionGuid": "9ae3bfeb-0056-4116-a633-bfe9cc645560", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3037,7 +3037,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4c5c4ab9-467a-47d5-8e84-eec3662dda48", + "criterionGuid": "87f3cbc0-3c7c-4ab4-82c4-3d25c118f642", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3069,7 +3069,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3c5c84b7-edf0-407f-9d60-a1ae0acbd503", + "criterionGuid": "fb7d45b8-8fde-4e25-afa8-41309d062e17", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3231,7 +3231,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e6581f94-323d-4945-b77a-006b51607eab", + "criterionGuid": "9ae3bfeb-0056-4116-a633-bfe9cc645560", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3257,7 +3257,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4c5c4ab9-467a-47d5-8e84-eec3662dda48", + "criterionGuid": "87f3cbc0-3c7c-4ab4-82c4-3d25c118f642", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3289,7 +3289,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3c5c84b7-edf0-407f-9d60-a1ae0acbd503", + "criterionGuid": "fb7d45b8-8fde-4e25-afa8-41309d062e17", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3451,7 +3451,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e6581f94-323d-4945-b77a-006b51607eab", + "criterionGuid": "9ae3bfeb-0056-4116-a633-bfe9cc645560", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3477,7 +3477,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4c5c4ab9-467a-47d5-8e84-eec3662dda48", + "criterionGuid": "87f3cbc0-3c7c-4ab4-82c4-3d25c118f642", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3509,7 +3509,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3c5c84b7-edf0-407f-9d60-a1ae0acbd503", + "criterionGuid": "fb7d45b8-8fde-4e25-afa8-41309d062e17", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3671,7 +3671,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e6581f94-323d-4945-b77a-006b51607eab", + "criterionGuid": "9ae3bfeb-0056-4116-a633-bfe9cc645560", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3697,7 +3697,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4c5c4ab9-467a-47d5-8e84-eec3662dda48", + "criterionGuid": "87f3cbc0-3c7c-4ab4-82c4-3d25c118f642", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3729,7 +3729,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3c5c84b7-edf0-407f-9d60-a1ae0acbd503", + "criterionGuid": "fb7d45b8-8fde-4e25-afa8-41309d062e17", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -6654,7 +6654,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 11": { @@ -6877,7 +6877,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 11": { @@ -7100,7 +7100,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 11": { @@ -7323,7 +7323,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 11": { @@ -7864,7 +7864,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 25": { @@ -8087,7 +8087,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 25": { @@ -8310,7 +8310,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 25": { @@ -8533,7 +8533,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7058911+00:00" + "value": "2024-12-03T08:34:33.0569155+00:00" } }, "Example 25": { @@ -9002,7 +9002,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 8": { @@ -9099,7 +9099,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 8": { @@ -9196,7 +9196,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 8": { @@ -9293,7 +9293,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 8": { @@ -9741,7 +9741,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 17": { @@ -9838,7 +9838,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 17": { @@ -9935,7 +9935,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 17": { @@ -10032,7 +10032,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-02T23:54:30.7214563+00:00" + "value": "2024-12-03T08:34:33.0725425+00:00" } }, "Example 17": { @@ -16987,7 +16987,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "42fd731b-3fc8-4dc7-b18c-c42641888bbe" + "caee3f9b-70c3-4deb-8762-670f05c5fddb" ], "listActionsToInclude": [ "ItemAdded", @@ -17011,7 +17011,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "42fd731b-3fc8-4dc7-b18c-c42641888bbe" + "caee3f9b-70c3-4deb-8762-670f05c5fddb" ], "listActionsToInclude": [ "ItemAdded", @@ -17035,7 +17035,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "42fd731b-3fc8-4dc7-b18c-c42641888bbe" + "caee3f9b-70c3-4deb-8762-670f05c5fddb" ], "listActionsToInclude": [ "ItemAdded", @@ -17059,7 +17059,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "42fd731b-3fc8-4dc7-b18c-c42641888bbe" + "caee3f9b-70c3-4deb-8762-670f05c5fddb" ], "listActionsToInclude": [ "ItemAdded", @@ -18774,7 +18774,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "e28958b5-eed1-435f-b6aa-6185712cc94c" + "guid": "bbc912e4-92d7-45b3-b044-2b9861e2710f" } }, "Example 4": { @@ -18836,7 +18836,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "e28958b5-eed1-435f-b6aa-6185712cc94c" + "guid": "bbc912e4-92d7-45b3-b044-2b9861e2710f" } }, "Example 4": { @@ -18898,7 +18898,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "e28958b5-eed1-435f-b6aa-6185712cc94c" + "guid": "bbc912e4-92d7-45b3-b044-2b9861e2710f" } }, "Example 4": { @@ -18960,7 +18960,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "e28958b5-eed1-435f-b6aa-6185712cc94c" + "guid": "bbc912e4-92d7-45b3-b044-2b9861e2710f" } }, "Example 4": { @@ -19015,11 +19015,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "a9e00f1b-d31b-419c-9410-caa65eb6601d" + "guid": "89d5e869-8d0d-48b5-9896-d302cd17aa5a" } ], "subsets": [], - "guid": "c62d69f7-9053-4274-acda-f486cf3d1440" + "guid": "40cf758e-8615-4f7d-ab49-d70d644059a8" } } } @@ -19740,7 +19740,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "22b2b9b4-7b1c-4d1e-b68b-77b545a04f79" + "guid": "bccd3f12-79d7-4141-b0ac-2e66b809a0fa" } } } @@ -20026,7 +20026,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "e45314b5-1bfc-41da-9381-55c7f922fa8e" + "guid": "c6fa9fc0-d00b-42bc-9a2a-6ec84c79feef" } } } @@ -20577,7 +20577,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID '6e9747a8-826d-49ba-ac7d-51210e347f5a'.", + "message": "Cannot release record version with GUID 'a1b272ce-631a-445b-96c7-9b74399e6c72'.", "code": 400, "errors": [ { @@ -20718,7 +20718,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID 'f318aefa-a645-4ddc-878a-108f96f4df47'.", + "message": "Cannot create a new version from the record version with GUID '152e9a85-0314-4056-91cb-e3940b5a19ff'.", "code": 400, "errors": [ { @@ -20728,7 +20728,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "2f0a488d-9608-47c2-aaaf-cc56b23c0f85" + "guid": "b9a7b436-1afd-469c-8771-e82cc575ae50" } } ] @@ -21034,7 +21034,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "12a15227-bdf9-49b9-aebd-8075b84ccd47" + "guid": "2f7fedff-e54d-4b64-8508-6016ef9bfc37" } }, "Example 3": { @@ -21447,7 +21447,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "12a15227-bdf9-49b9-aebd-8075b84ccd47" + "guid": "2f7fedff-e54d-4b64-8508-6016ef9bfc37" } }, "Example 3": { @@ -21860,7 +21860,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "12a15227-bdf9-49b9-aebd-8075b84ccd47" + "guid": "2f7fedff-e54d-4b64-8508-6016ef9bfc37" } }, "Example 3": { @@ -22273,7 +22273,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "12a15227-bdf9-49b9-aebd-8075b84ccd47" + "guid": "2f7fedff-e54d-4b64-8508-6016ef9bfc37" } }, "Example 3": { @@ -22773,7 +22773,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "7256c94b-3f54-41c4-aab4-44b140b01e67" + "guid": "23a2f8f2-54bf-4088-af88-45f7fc28a951" } ], "primaryDynamicLinkGroups": [], @@ -23075,7 +23075,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "e831fa87-e150-48f2-bad7-2bac851aecf0" + "guid": "a7b0296e-d25f-4c9c-9327-05076307dae2" } ], "primaryDynamicLinkGroups": [], @@ -24345,7 +24345,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "8a862b7a-d885-4ba0-ac8f-57438bfd6902" + "guid": "0e1acd2f-32c8-4136-9768-149f2d432e54" } ], "primaryDynamicLinkGroups": [], @@ -24792,7 +24792,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "203cb805-f78b-487c-b551-d25c2b86d278" + "guid": "82772901-a9c0-4ade-9a1d-1ff2cf1aaad3" } ], "primaryDynamicLinkGroups": [], @@ -25254,7 +25254,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "1924bc03-e63c-46ed-aea3-2bd6cf187dc1" + "guid": "2b13de64-2a38-47af-a5b6-0b58879dda85" } ], "primaryDynamicLinkGroups": [], @@ -25433,7 +25433,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute 'Notes' (GUID = '4fd44f90-304e-4ca3-82c2-77119ac289d3').", + "message": "Cannot delete attribute 'Notes' (GUID = '207e1b9f-3ed1-4854-b574-d66c576296f0').", "code": 400, "errors": [ { @@ -25448,7 +25448,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "9a915a34-90a0-48bb-ab2b-ad582edef4fa" + "guid": "f80d4173-9ca5-47ff-bb66-a92105e2345b" } ] } @@ -25793,6 +25793,8 @@ "isHiddenFromSearchCriteria": true, "isMultiValued": true, "isFunctionalRange": true, + "axisName": true, + "axisNameDisplayNames": true, "info": { "chartable": true, "orderedMetaAttributes": { @@ -25836,6 +25838,7 @@ "name": true, "guid": true }, + "displayNames": true, "name": true, "guid": true } @@ -25955,6 +25958,8 @@ "isHiddenFromSearchCriteria": true, "isMultiValued": true, "isFunctionalRange": true, + "axisName": true, + "axisNameDisplayNames": true, "info": { "chartable": true, "orderedMetaAttributes": { @@ -25998,6 +26003,7 @@ "name": true, "guid": true }, + "displayNames": true, "name": true, "guid": true } @@ -26117,6 +26123,8 @@ "isHiddenFromSearchCriteria": true, "isMultiValued": true, "isFunctionalRange": true, + "axisName": true, + "axisNameDisplayNames": true, "info": { "chartable": true, "orderedMetaAttributes": { @@ -26160,6 +26168,7 @@ "name": true, "guid": true }, + "displayNames": true, "name": true, "guid": true } @@ -26279,6 +26288,8 @@ "isHiddenFromSearchCriteria": true, "isMultiValued": true, "isFunctionalRange": true, + "axisName": true, + "axisNameDisplayNames": true, "info": { "chartable": true, "orderedMetaAttributes": { @@ -26322,6 +26333,7 @@ "name": true, "guid": true }, + "displayNames": true, "name": true, "guid": true } @@ -26542,7 +26554,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "063f3bcb-8337-45f8-8626-fc84ecfac37e" + "guid": "3efbfe66-1d26-44a8-99f3-3f96003dc8f8" } } } @@ -26568,7 +26580,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "063f3bcb-8337-45f8-8626-fc84ecfac37e" + "guid": "3efbfe66-1d26-44a8-99f3-3f96003dc8f8" } } } @@ -26594,7 +26606,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "063f3bcb-8337-45f8-8626-fc84ecfac37e" + "guid": "3efbfe66-1d26-44a8-99f3-3f96003dc8f8" } } } @@ -26620,7 +26632,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "063f3bcb-8337-45f8-8626-fc84ecfac37e" + "guid": "3efbfe66-1d26-44a8-99f3-3f96003dc8f8" } } } @@ -26769,7 +26781,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "3ab33d9a-0145-49d1-92ae-71068d234f8c" + "guid": "d54ed273-4aa6-43ba-9a4d-e61c093b0385" } }, "Example 2": { @@ -26793,7 +26805,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "3ab33d9a-0145-49d1-92ae-71068d234f8c" + "guid": "d54ed273-4aa6-43ba-9a4d-e61c093b0385" } }, "Example 2": { @@ -26817,7 +26829,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "3ab33d9a-0145-49d1-92ae-71068d234f8c" + "guid": "d54ed273-4aa6-43ba-9a4d-e61c093b0385" } }, "Example 2": { @@ -26841,7 +26853,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "3ab33d9a-0145-49d1-92ae-71068d234f8c" + "guid": "d54ed273-4aa6-43ba-9a4d-e61c093b0385" } }, "Example 2": { @@ -27068,7 +27080,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "de6333e4-9be2-49ac-9534-b368461a5798" + "guid": "1f4f9a90-9852-4ce3-ab7e-c7a0918b9779" } }, "Example 3": { @@ -27101,7 +27113,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "de6333e4-9be2-49ac-9534-b368461a5798" + "guid": "1f4f9a90-9852-4ce3-ab7e-c7a0918b9779" } }, "Example 3": { @@ -27134,7 +27146,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "de6333e4-9be2-49ac-9534-b368461a5798" + "guid": "1f4f9a90-9852-4ce3-ab7e-c7a0918b9779" } }, "Example 3": { @@ -27167,7 +27179,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "de6333e4-9be2-49ac-9534-b368461a5798" + "guid": "1f4f9a90-9852-4ce3-ab7e-c7a0918b9779" } }, "Example 3": { @@ -27310,7 +27322,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "74adcf63-56ba-4f61-856c-150b959a1d61" + "guid": "462269f1-3dbd-4449-8663-8cfad5523046" } }, "Example 2": { @@ -27325,7 +27337,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "0497bbfb-0577-4286-9296-a1371e7bd374" + "guid": "cf8bda6a-508a-4b25-8cfe-0c001fa252b2" } } } @@ -27342,7 +27354,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "74adcf63-56ba-4f61-856c-150b959a1d61" + "guid": "462269f1-3dbd-4449-8663-8cfad5523046" } }, "Example 2": { @@ -27357,7 +27369,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "0497bbfb-0577-4286-9296-a1371e7bd374" + "guid": "cf8bda6a-508a-4b25-8cfe-0c001fa252b2" } } } @@ -27374,7 +27386,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "74adcf63-56ba-4f61-856c-150b959a1d61" + "guid": "462269f1-3dbd-4449-8663-8cfad5523046" } }, "Example 2": { @@ -27389,7 +27401,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "0497bbfb-0577-4286-9296-a1371e7bd374" + "guid": "cf8bda6a-508a-4b25-8cfe-0c001fa252b2" } } } @@ -27406,7 +27418,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "74adcf63-56ba-4f61-856c-150b959a1d61" + "guid": "462269f1-3dbd-4449-8663-8cfad5523046" } }, "Example 2": { @@ -27421,7 +27433,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "0497bbfb-0577-4286-9296-a1371e7bd374" + "guid": "cf8bda6a-508a-4b25-8cfe-0c001fa252b2" } } } @@ -28025,8 +28037,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8063177e-a747-4464-a62d-009b88757a7b", - "guid": "383f948c-c338-47ca-bd2f-69bc18832de3", + "versionGuid": "603450b8-afc7-4d60-b01b-697ab3c333d0", + "guid": "ea4f72cb-b3d2-4ae2-8576-5b41fcd8d229", "name": "MI Training (Updated)" } }, @@ -28051,8 +28063,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8063177e-a747-4464-a62d-009b88757a7b", - "guid": "383f948c-c338-47ca-bd2f-69bc18832de3", + "versionGuid": "603450b8-afc7-4d60-b01b-697ab3c333d0", + "guid": "ea4f72cb-b3d2-4ae2-8576-5b41fcd8d229", "name": "MI Training (Updated)" } }, @@ -28077,8 +28089,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8063177e-a747-4464-a62d-009b88757a7b", - "guid": "383f948c-c338-47ca-bd2f-69bc18832de3", + "versionGuid": "603450b8-afc7-4d60-b01b-697ab3c333d0", + "guid": "ea4f72cb-b3d2-4ae2-8576-5b41fcd8d229", "name": "MI Training (Updated)" } }, @@ -28103,8 +28115,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8063177e-a747-4464-a62d-009b88757a7b", - "guid": "383f948c-c338-47ca-bd2f-69bc18832de3", + "versionGuid": "603450b8-afc7-4d60-b01b-697ab3c333d0", + "guid": "ea4f72cb-b3d2-4ae2-8576-5b41fcd8d229", "name": "MI Training (Updated)" } }, @@ -29110,7 +29122,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "ca6c39c9-8489-4c96-979d-09bc10c3c63c" + "guid": "2e67578c-1746-4310-aee4-bd0a31a52ea0" } } } @@ -29132,7 +29144,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "ca6c39c9-8489-4c96-979d-09bc10c3c63c" + "guid": "2e67578c-1746-4310-aee4-bd0a31a52ea0" } } } @@ -29154,7 +29166,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "ca6c39c9-8489-4c96-979d-09bc10c3c63c" + "guid": "2e67578c-1746-4310-aee4-bd0a31a52ea0" } } } @@ -29176,7 +29188,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "ca6c39c9-8489-4c96-979d-09bc10c3c63c" + "guid": "2e67578c-1746-4310-aee4-bd0a31a52ea0" } } } @@ -29925,7 +29937,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "12797cf8-1991-49f1-bd72-3b6d31943d8d" + "guid": "d538e686-a4aa-41fa-9bd9-6bf143bfb155" } } } @@ -29946,7 +29958,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "12797cf8-1991-49f1-bd72-3b6d31943d8d" + "guid": "d538e686-a4aa-41fa-9bd9-6bf143bfb155" } } } @@ -29967,7 +29979,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "12797cf8-1991-49f1-bd72-3b6d31943d8d" + "guid": "d538e686-a4aa-41fa-9bd9-6bf143bfb155" } } } @@ -29988,7 +30000,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "12797cf8-1991-49f1-bd72-3b6d31943d8d" + "guid": "d538e686-a4aa-41fa-9bd9-6bf143bfb155" } } } @@ -30391,11 +30403,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "28b7171b-89c4-450a-af34-399556251f78" + "guid": "4e96143d-7752-463b-8055-4440fae39e45" }, { "name": "no-transform.xslt", - "guid": "0c381a9d-3113-4c7e-b4e8-2b6caa32334e" + "guid": "39d4bd21-9491-48d5-8b56-43f8b35fc6d9" } ] } @@ -30408,11 +30420,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "28b7171b-89c4-450a-af34-399556251f78" + "guid": "4e96143d-7752-463b-8055-4440fae39e45" }, { "name": "no-transform.xslt", - "guid": "0c381a9d-3113-4c7e-b4e8-2b6caa32334e" + "guid": "39d4bd21-9491-48d5-8b56-43f8b35fc6d9" } ] } @@ -30425,11 +30437,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "28b7171b-89c4-450a-af34-399556251f78" + "guid": "4e96143d-7752-463b-8055-4440fae39e45" }, { "name": "no-transform.xslt", - "guid": "0c381a9d-3113-4c7e-b4e8-2b6caa32334e" + "guid": "39d4bd21-9491-48d5-8b56-43f8b35fc6d9" } ] } @@ -30507,7 +30519,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5160ccec-82bb-4b9d-b025-191f3389f008" + "guid": "0f072e25-7985-4287-950f-f6eef2b16f95" } }, "application/json": { @@ -30521,7 +30533,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5160ccec-82bb-4b9d-b025-191f3389f008" + "guid": "0f072e25-7985-4287-950f-f6eef2b16f95" } }, "text/json": { @@ -30535,7 +30547,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5160ccec-82bb-4b9d-b025-191f3389f008" + "guid": "0f072e25-7985-4287-950f-f6eef2b16f95" } } } @@ -30602,7 +30614,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "02ad34a2-22a0-4278-b4be-e72c60c58af6" + "guid": "f64c54da-d425-45f9-934b-a52b62372040" } }, "application/json": { @@ -30616,7 +30628,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "02ad34a2-22a0-4278-b4be-e72c60c58af6" + "guid": "f64c54da-d425-45f9-934b-a52b62372040" } }, "text/json": { @@ -30630,7 +30642,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "02ad34a2-22a0-4278-b4be-e72c60c58af6" + "guid": "f64c54da-d425-45f9-934b-a52b62372040" } } } @@ -30699,7 +30711,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "8b68471a-cae6-482d-8d43-4f50a85abc0c" + "guid": "eb979de8-5e5f-48ef-9cd6-43e33e1e4674" } } } @@ -30727,7 +30739,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "8b68471a-cae6-482d-8d43-4f50a85abc0c" + "guid": "eb979de8-5e5f-48ef-9cd6-43e33e1e4674" } } } @@ -30755,7 +30767,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "8b68471a-cae6-482d-8d43-4f50a85abc0c" + "guid": "eb979de8-5e5f-48ef-9cd6-43e33e1e4674" } } } @@ -30783,7 +30795,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "8b68471a-cae6-482d-8d43-4f50a85abc0c" + "guid": "eb979de8-5e5f-48ef-9cd6-43e33e1e4674" } } } @@ -30805,7 +30817,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "99d907a2-5b64-4733-b192-19ff02544a19" + "guid": "e6088b3c-3268-413c-b9f6-85c8edc06732" } }, "application/json": { @@ -30819,7 +30831,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "99d907a2-5b64-4733-b192-19ff02544a19" + "guid": "e6088b3c-3268-413c-b9f6-85c8edc06732" } }, "text/json": { @@ -30833,7 +30845,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "99d907a2-5b64-4733-b192-19ff02544a19" + "guid": "e6088b3c-3268-413c-b9f6-85c8edc06732" } } } @@ -31051,7 +31063,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "cc9a7b6f-d8a7-48c9-b526-1c362b76188d" + "guid": "93751c1c-44fb-455d-a1dc-0d42caea3382" } }, "application/json": { @@ -31065,7 +31077,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "cc9a7b6f-d8a7-48c9-b526-1c362b76188d" + "guid": "93751c1c-44fb-455d-a1dc-0d42caea3382" } }, "text/json": { @@ -31079,7 +31091,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "cc9a7b6f-d8a7-48c9-b526-1c362b76188d" + "guid": "93751c1c-44fb-455d-a1dc-0d42caea3382" } } } @@ -31222,7 +31234,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "101a8411-b558-43b0-b728-6ea0ff0d5f49" + "guid": "55a20a14-bbbd-4627-af5d-28fc8699882b" } }, "Example 3": { @@ -31257,7 +31269,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "101a8411-b558-43b0-b728-6ea0ff0d5f49" + "guid": "55a20a14-bbbd-4627-af5d-28fc8699882b" } }, "Example 3": { @@ -31292,7 +31304,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "101a8411-b558-43b0-b728-6ea0ff0d5f49" + "guid": "55a20a14-bbbd-4627-af5d-28fc8699882b" } }, "Example 3": { @@ -31327,7 +31339,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "101a8411-b558-43b0-b728-6ea0ff0d5f49" + "guid": "55a20a14-bbbd-4627-af5d-28fc8699882b" } }, "Example 3": { @@ -31639,7 +31651,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "21b95b02-dd50-421c-b188-55296edb424d" + "guid": "f44230dd-1b35-4ff4-b5eb-0a8488a08611" } }, "Example 2": { @@ -31665,7 +31677,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "21b95b02-dd50-421c-b188-55296edb424d" + "guid": "f44230dd-1b35-4ff4-b5eb-0a8488a08611" } }, "Example 2": { @@ -31691,7 +31703,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "21b95b02-dd50-421c-b188-55296edb424d" + "guid": "f44230dd-1b35-4ff4-b5eb-0a8488a08611" } }, "Example 2": { @@ -31717,7 +31729,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "21b95b02-dd50-421c-b188-55296edb424d" + "guid": "f44230dd-1b35-4ff4-b5eb-0a8488a08611" } }, "Example 2": { @@ -32355,7 +32367,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "abf3f644-af4e-4290-88aa-49df83b6683e" + "guid": "09dba2da-a1bb-46c5-9e4e-be5a4a1c4658" } } } @@ -32376,7 +32388,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "abf3f644-af4e-4290-88aa-49df83b6683e" + "guid": "09dba2da-a1bb-46c5-9e4e-be5a4a1c4658" } } } @@ -32397,7 +32409,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "abf3f644-af4e-4290-88aa-49df83b6683e" + "guid": "09dba2da-a1bb-46c5-9e4e-be5a4a1c4658" } } } @@ -32418,7 +32430,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "abf3f644-af4e-4290-88aa-49df83b6683e" + "guid": "09dba2da-a1bb-46c5-9e4e-be5a4a1c4658" } } } @@ -32887,7 +32899,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "3ab8e7b7-a43d-48e7-86d9-39c62fd08ae6" + "guid": "0f77bee9-8c90-4d0a-817d-a0b94c22dc4a" } }, "application/json": { @@ -32901,7 +32913,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "3ab8e7b7-a43d-48e7-86d9-39c62fd08ae6" + "guid": "0f77bee9-8c90-4d0a-817d-a0b94c22dc4a" } }, "text/json": { @@ -32915,7 +32927,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "3ab8e7b7-a43d-48e7-86d9-39c62fd08ae6" + "guid": "0f77bee9-8c90-4d0a-817d-a0b94c22dc4a" } } } @@ -33079,7 +33091,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c3b5af9c-bff6-4594-b0b9-d29178307ff2" + "guid": "68500f2d-4498-4361-9e1c-597d051e1760" } } } @@ -33107,7 +33119,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c3b5af9c-bff6-4594-b0b9-d29178307ff2" + "guid": "68500f2d-4498-4361-9e1c-597d051e1760" } } } @@ -33135,7 +33147,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c3b5af9c-bff6-4594-b0b9-d29178307ff2" + "guid": "68500f2d-4498-4361-9e1c-597d051e1760" } } } @@ -33163,7 +33175,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c3b5af9c-bff6-4594-b0b9-d29178307ff2" + "guid": "68500f2d-4498-4361-9e1c-597d051e1760" } } } @@ -33185,7 +33197,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "56ac6a06-f56c-4ca0-8978-415e0605166c" + "guid": "344aab05-7eb5-4d6b-89a8-207552d79a28" } }, "application/json": { @@ -33199,7 +33211,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "56ac6a06-f56c-4ca0-8978-415e0605166c" + "guid": "344aab05-7eb5-4d6b-89a8-207552d79a28" } }, "text/json": { @@ -33213,7 +33225,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "56ac6a06-f56c-4ca0-8978-415e0605166c" + "guid": "344aab05-7eb5-4d6b-89a8-207552d79a28" } } } @@ -33431,7 +33443,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2cca9bf5-7d17-4d17-a936-a5d42179f66c" + "guid": "f0bf6623-153f-4610-bce0-4ecce0dcf3d9" } }, "application/json": { @@ -33445,7 +33457,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2cca9bf5-7d17-4d17-a936-a5d42179f66c" + "guid": "f0bf6623-153f-4610-bce0-4ecce0dcf3d9" } }, "text/json": { @@ -33459,7 +33471,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2cca9bf5-7d17-4d17-a936-a5d42179f66c" + "guid": "f0bf6623-153f-4610-bce0-4ecce0dcf3d9" } } } @@ -33510,7 +33522,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "36f37127-e771-4f28-a6ab-e893a24cbf88" + "guid": "f3273e6f-2e71-422b-a42f-cf4bab545cda" } ] } @@ -33528,7 +33540,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "36f37127-e771-4f28-a6ab-e893a24cbf88" + "guid": "f3273e6f-2e71-422b-a42f-cf4bab545cda" } ] } @@ -33546,7 +33558,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "36f37127-e771-4f28-a6ab-e893a24cbf88" + "guid": "f3273e6f-2e71-422b-a42f-cf4bab545cda" } ] } @@ -33776,7 +33788,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "ac991c91-c98e-49e1-9a3f-ccd39b3e89c7" + "guid": "2f115c2b-3f6a-429a-a476-699743bfff24" } }, "application/json": { @@ -33786,7 +33798,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "ac991c91-c98e-49e1-9a3f-ccd39b3e89c7" + "guid": "2f115c2b-3f6a-429a-a476-699743bfff24" } }, "text/json": { @@ -33796,7 +33808,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "ac991c91-c98e-49e1-9a3f-ccd39b3e89c7" + "guid": "2f115c2b-3f6a-429a-a476-699743bfff24" } } } @@ -33849,7 +33861,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "f5ad1cd1-55e6-40b7-b506-b1d67ea54ad9" + "guid": "3c6eb75b-19ed-4c9e-9c6c-b0afc4c30d1b" } } } @@ -33870,7 +33882,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "f5ad1cd1-55e6-40b7-b506-b1d67ea54ad9" + "guid": "3c6eb75b-19ed-4c9e-9c6c-b0afc4c30d1b" } } } @@ -33891,7 +33903,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "f5ad1cd1-55e6-40b7-b506-b1d67ea54ad9" + "guid": "3c6eb75b-19ed-4c9e-9c6c-b0afc4c30d1b" } } } @@ -33912,7 +33924,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "f5ad1cd1-55e6-40b7-b506-b1d67ea54ad9" + "guid": "3c6eb75b-19ed-4c9e-9c6c-b0afc4c30d1b" } } } @@ -34040,7 +34052,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "38299907-33f9-4125-b420-8efee140b644" + "guid": "430ade57-79b7-42b3-aaea-509380a81c8c" } ] } @@ -34054,7 +34066,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "38299907-33f9-4125-b420-8efee140b644" + "guid": "430ade57-79b7-42b3-aaea-509380a81c8c" } ] } @@ -34068,7 +34080,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "38299907-33f9-4125-b420-8efee140b644" + "guid": "430ade57-79b7-42b3-aaea-509380a81c8c" } ] } @@ -34250,11 +34262,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "dd462b89-1412-4b12-a10c-99e739a3ba02" + "guid": "9fac8801-7411-40c1-9ff3-59d31e33cdb5" }, { "name": "home-page-2.html", - "guid": "7476535b-55ba-4962-bb44-7b65411e98e9" + "guid": "31eb6ea9-ef16-4dd1-bde2-48241bc561c2" } ] } @@ -34267,11 +34279,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "dd462b89-1412-4b12-a10c-99e739a3ba02" + "guid": "9fac8801-7411-40c1-9ff3-59d31e33cdb5" }, { "name": "home-page-2.html", - "guid": "7476535b-55ba-4962-bb44-7b65411e98e9" + "guid": "31eb6ea9-ef16-4dd1-bde2-48241bc561c2" } ] } @@ -34284,11 +34296,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "dd462b89-1412-4b12-a10c-99e739a3ba02" + "guid": "9fac8801-7411-40c1-9ff3-59d31e33cdb5" }, { "name": "home-page-2.html", - "guid": "7476535b-55ba-4962-bb44-7b65411e98e9" + "guid": "31eb6ea9-ef16-4dd1-bde2-48241bc561c2" } ] } @@ -34366,7 +34378,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5e6369af-c9b6-440a-af43-36074beb6a2d" + "guid": "dae21846-3004-4203-a9a9-46339e5022c5" } }, "application/json": { @@ -34380,7 +34392,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5e6369af-c9b6-440a-af43-36074beb6a2d" + "guid": "dae21846-3004-4203-a9a9-46339e5022c5" } }, "text/json": { @@ -34394,7 +34406,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5e6369af-c9b6-440a-af43-36074beb6a2d" + "guid": "dae21846-3004-4203-a9a9-46339e5022c5" } } } @@ -34461,7 +34473,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "ba1bbf7f-f7bc-4ad6-ba3c-5d2a5cc94274" + "guid": "22acc7df-dd9b-4795-b7d9-0d2addae6eac" } }, "application/json": { @@ -34475,7 +34487,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "ba1bbf7f-f7bc-4ad6-ba3c-5d2a5cc94274" + "guid": "22acc7df-dd9b-4795-b7d9-0d2addae6eac" } }, "text/json": { @@ -34489,7 +34501,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "ba1bbf7f-f7bc-4ad6-ba3c-5d2a5cc94274" + "guid": "22acc7df-dd9b-4795-b7d9-0d2addae6eac" } } } @@ -34558,7 +34570,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "7f92a546-d782-4819-8e24-ed338873ecac" + "guid": "3c7c7808-ea98-4a37-961d-b400c211affc" } } } @@ -34586,7 +34598,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "7f92a546-d782-4819-8e24-ed338873ecac" + "guid": "3c7c7808-ea98-4a37-961d-b400c211affc" } } } @@ -34614,7 +34626,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "7f92a546-d782-4819-8e24-ed338873ecac" + "guid": "3c7c7808-ea98-4a37-961d-b400c211affc" } } } @@ -34642,7 +34654,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "7f92a546-d782-4819-8e24-ed338873ecac" + "guid": "3c7c7808-ea98-4a37-961d-b400c211affc" } } } @@ -34664,7 +34676,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "20d836df-ad67-41ae-8a1e-5cf69f5ac0e3" + "guid": "0f3306f4-c7dd-427d-ba25-10e234c5a569" } }, "application/json": { @@ -34678,7 +34690,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "20d836df-ad67-41ae-8a1e-5cf69f5ac0e3" + "guid": "0f3306f4-c7dd-427d-ba25-10e234c5a569" } }, "text/json": { @@ -34692,7 +34704,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "20d836df-ad67-41ae-8a1e-5cf69f5ac0e3" + "guid": "0f3306f4-c7dd-427d-ba25-10e234c5a569" } } } @@ -34910,7 +34922,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "8a63bd5d-2e36-4c32-a9a0-6928eaa0b26c" + "guid": "0172d519-6167-4931-b9fd-1dec1930b1f1" } }, "application/json": { @@ -34924,7 +34936,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "8a63bd5d-2e36-4c32-a9a0-6928eaa0b26c" + "guid": "0172d519-6167-4931-b9fd-1dec1930b1f1" } }, "text/json": { @@ -34938,7 +34950,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "8a63bd5d-2e36-4c32-a9a0-6928eaa0b26c" + "guid": "0172d519-6167-4931-b9fd-1dec1930b1f1" } } } @@ -35070,9 +35082,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "8f380551-7c5f-4f9f-8a41-262e15e4f26f", + "underlyingEntityGuid": "271e110f-4de5-41e8-9877-da97ba82509a", "name": "Price", - "guid": "20dc188c-8555-4945-836d-175a6c9be566" + "guid": "02db59a2-9e25-43fb-9c41-6a7b6236dc58" }, { "itemType": "attribute", @@ -35080,9 +35092,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "75bfab30-8ca4-44fa-91c9-57c0bd669351", + "underlyingEntityGuid": "ec0a37fa-7616-49ca-9b3c-3c99b6a1bb93", "name": "Density", - "guid": "5d6f6168-5eee-41d4-a06a-e7b9e9c2754d" + "guid": "7ddbf60d-1b2c-45be-873c-f156f84d6650" } ], "displayNames": { @@ -35101,9 +35113,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "8e61a254-c2d2-45e8-b4a1-37f562f5bd59", + "underlyingEntityGuid": "770e274f-e0a1-4af4-9119-e6941a29939c", "name": "Young's modulus", - "guid": "b5f129c8-9d90-416c-90c1-a646e447cb39" + "guid": "bd94a245-41ba-4079-84be-31a99ea97272" }, { "itemType": "attribute", @@ -35111,9 +35123,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "2d3f97de-0b36-49b1-9e40-ea51c4ed1749", + "underlyingEntityGuid": "9e21048b-0304-41a3-bdde-af3255e63479", "name": "Tensile strength", - "guid": "108ccbb5-4c1d-4f88-a7ed-ff0f81aa50cc" + "guid": "33dbb008-0663-46e0-ab7e-b784ea887c4f" }, { "itemType": "attribute", @@ -35121,9 +35133,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "9f291fe3-4058-4c61-bc8f-90572a629eaa", + "underlyingEntityGuid": "5630baa4-d2aa-4321-9f4e-45bdff79a943", "name": "Shape factor", - "guid": "a55914a0-cb3f-4122-a3c8-cc92197f9e75" + "guid": "5884df2e-71c3-44cc-a425-179e845e0562" } ], "displayNames": { @@ -35198,7 +35210,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "da1d3eaf-8eb9-48e4-81cf-a86a4a20af26" + "guid": "76c17853-2e12-4e04-b2d0-7942162da695" } } } @@ -35220,7 +35232,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "da1d3eaf-8eb9-48e4-81cf-a86a4a20af26" + "guid": "76c17853-2e12-4e04-b2d0-7942162da695" } } } @@ -35242,7 +35254,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "da1d3eaf-8eb9-48e4-81cf-a86a4a20af26" + "guid": "76c17853-2e12-4e04-b2d0-7942162da695" } } } @@ -35264,7 +35276,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "da1d3eaf-8eb9-48e4-81cf-a86a4a20af26" + "guid": "76c17853-2e12-4e04-b2d0-7942162da695" } } } @@ -35283,7 +35295,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "9d7192ed-4404-4464-9f4f-f9cadacdda4b" + "guid": "5118b8d7-95ba-435a-9883-7190cb6bd534" } } } @@ -35926,7 +35938,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "3466a7f8-3044-4427-ace7-7f749b347ec5" + "guid": "a4938df4-7412-4c90-8882-e02ea16c87e5" } }, "Example 2": { @@ -35941,9 +35953,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "e88f53e2-c2e6-421a-ba77-2a3e28ce9788", + "underlyingEntityGuid": "2b776775-4fd2-447c-9ce5-9647da40b8aa", "name": "Form", - "guid": "f4c4ae5b-49b4-405b-af0c-331d3ee62ffa" + "guid": "f9a0a865-455a-45ce-8905-2deb15b946f4" }, { "itemType": "attribute", @@ -35956,34 +35968,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "d5ac9edf-d4e4-4393-bbbc-70c122c399fc", + "underlyingEntityGuid": "ba474aff-7bc2-4daa-95be-6d22a8783bd5", "name": "Sources", - "guid": "1bcacc62-4639-41b4-9513-8255323eef94" + "guid": "0df5c40c-ab8a-4426-8f40-e7cc527b610c" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "4c196a7a-1a6d-4619-a805-382d3fa5792f", + "underlyingEntityGuid": "67f9fdc1-38e8-4130-ba2f-f9f89cd3b9df", "name": "Notes", - "guid": "67c952c5-085e-4173-b7f2-02e3a803a14f" + "guid": "7af7870a-92a4-41a7-93ff-889d3f87aff9" } ], - "underlyingEntityGuid": "34e3fc57-0a48-4fa6-ab17-3a96704fab8d", + "underlyingEntityGuid": "39d78c2b-2aee-4c03-8d56-c90f36c2376b", "name": "Chemical resistance", - "guid": "b8da8ade-0343-45d0-9428-10310ab8080e" + "guid": "ef370f1e-beba-4325-ab7b-a4b5012170ef" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "71a77298-4140-4b1a-ae2c-3128383c1ed2", - "targetDatabaseVersion": "6aabd589-398f-441b-b8e8-3d6a1901a9e6", - "targetTable": "c01f820b-a7e8-4219-8471-cbfc0a1dcfda", + "targetDatabase": "50ff7fe9-1893-477b-b3ce-a6a4e88678f5", + "targetDatabaseVersion": "1f12e94f-43d4-42b8-bc66-84307cf73670", + "targetTable": "b33f2e31-cf8b-4668-bb16-adfaf5ab92ef", "forwards": true, - "underlyingEntityGuid": "dd8ab5fa-139b-48a5-b636-460a0289564b", + "underlyingEntityGuid": "40defa66-6f1c-4fc3-8b28-772e0f099837", "name": "Material Pedigree", - "guid": "72a8c4c2-5b60-46fc-be5a-abfe9e80b44a" + "guid": "f89d6642-97ab-443f-8333-21e01aaf29d7" }, { "itemType": "attribute", @@ -35994,42 +36006,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "d29a2d6f-5668-4f07-89e3-a789901e04bb", + "tabularColumnGuid": "6a49de55-2e57-4c6a-ab79-aaf3888f26ad", "name": "Offset Yield Stress", - "guid": "6ec14ba3-eeea-4498-90ca-f831290c48a4" + "guid": "aede1929-08ad-4cbd-adb4-8e39fc28fcd6" }, { "columnType": "localShortText", - "tabularColumnGuid": "b116b8c9-45be-4280-ba9e-24f8c2f488d4", + "tabularColumnGuid": "5d3960b3-e738-4513-9a11-9d611188de6a", "name": "Young's Modulus Notes", - "guid": "352b7706-bd5b-46e6-8bcd-045c8f2a788d" + "guid": "5adf99a5-6839-481d-9981-3ae38885c42d" } ], - "underlyingEntityGuid": "e8852d98-d432-4c36-b225-eeee22ff41fd", + "underlyingEntityGuid": "574f0b43-0a50-409d-a5c9-bb3aac98b249", "name": "Reference Characteristics", - "guid": "6fdc3659-c34e-4b7d-bd6b-fa5b0b9d6be1" + "guid": "4df09b3d-073c-4a25-a17e-93eaf931a315" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "71a77298-4140-4b1a-ae2c-3128383c1ed2", - "targetDatabaseVersion": "6aabd589-398f-441b-b8e8-3d6a1901a9e6", - "targetTable": "d8031a72-22db-4b68-befe-5d01ed31ca74", + "targetDatabase": "50ff7fe9-1893-477b-b3ce-a6a4e88678f5", + "targetDatabaseVersion": "1f12e94f-43d4-42b8-bc66-84307cf73670", + "targetTable": "e58bf0d8-c1e4-4dd8-8c0d-637bf54f25ed", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "71a77298-4140-4b1a-ae2c-3128383c1ed2", - "targetDatabaseVersion": "6aabd589-398f-441b-b8e8-3d6a1901a9e6", - "targetTable": "91a5aef5-9bb6-41ed-98ff-2f68ea97db0b", + "targetDatabase": "50ff7fe9-1893-477b-b3ce-a6a4e88678f5", + "targetDatabaseVersion": "1f12e94f-43d4-42b8-bc66-84307cf73670", + "targetTable": "ff3dbd51-2f0b-4765-bc0b-24483a249eda", "forwards": false, - "underlyingEntityGuid": "849f8bdd-2cca-4c73-abff-b044926a6ce2", + "underlyingEntityGuid": "355dfd13-b305-432b-9fa5-d18f354e3e3a", "name": "Pedigree information", - "guid": "5eb4f4e4-440d-4a60-b214-04cbb4aeff61" + "guid": "8efd91fd-7cfd-436f-b694-1be49fb03140" }, - "underlyingEntityGuid": "6592f704-8eaa-4c0c-8813-08699bfbe9ce", + "underlyingEntityGuid": "281f70d9-cb11-4156-a296-2ace64a3c658", "name": "To Pedigree from Producers", - "guid": "4d699f84-0400-4ba1-a8d9-240cedaee66e" + "guid": "9aebd712-1577-46bd-ac87-9920ee7d9f70" } ], "displayNames": { @@ -36037,7 +36049,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "b5466c87-b511-49ac-bbaf-8bd957905932" + "guid": "4fc455c0-c4bd-4552-90a4-71e42145005f" } } } @@ -36227,9 +36239,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "84515e0a-9c2d-4cb0-8bd1-7b322c9181a3", - "sourceTableGuid": "42505b67-ce07-4f11-b044-32fe9bbb1f78", - "linkGroupGuid": "129fd6d1-37d9-4dfe-b824-5039d40501fd" + "sourceDatabaseGuid": "256f855f-02a4-4761-80c7-bdc3f61ade8e", + "sourceTableGuid": "1269fa34-b31d-40c5-9031-5deda5fc3093", + "linkGroupGuid": "ecc78110-1335-42cb-a472-a2d63e093bd8" } }, "Example 8": { @@ -36241,13 +36253,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "a1cff39c-1e90-4b35-a143-0d8b7277402a", - "tabularAttributeGuid": "a03ac30e-2f07-4700-9273-e36fd286bf57" + "sourceDatabaseVersionGuid": "6e9021e2-3fba-4d8f-9d91-932ec9b7721c", + "tabularAttributeGuid": "d0c60c50-786a-47dd-acee-bbe6bff8925c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "e94bd882-e346-420d-850d-80442254ed0c", - "tabularAttributeGuid": "0daac56b-5078-4d54-bc77-48e91f3de35f" + "sourceDatabaseVersionGuid": "fa613599-157d-4664-b703-e2e386c4178d", + "tabularAttributeGuid": "4776155c-68d2-4ad9-87a2-9246cd58ca9e" } ] } @@ -36327,9 +36339,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "84515e0a-9c2d-4cb0-8bd1-7b322c9181a3", - "sourceTableGuid": "42505b67-ce07-4f11-b044-32fe9bbb1f78", - "linkGroupGuid": "129fd6d1-37d9-4dfe-b824-5039d40501fd" + "sourceDatabaseGuid": "256f855f-02a4-4761-80c7-bdc3f61ade8e", + "sourceTableGuid": "1269fa34-b31d-40c5-9031-5deda5fc3093", + "linkGroupGuid": "ecc78110-1335-42cb-a472-a2d63e093bd8" } }, "Example 8": { @@ -36341,13 +36353,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "a1cff39c-1e90-4b35-a143-0d8b7277402a", - "tabularAttributeGuid": "a03ac30e-2f07-4700-9273-e36fd286bf57" + "sourceDatabaseVersionGuid": "6e9021e2-3fba-4d8f-9d91-932ec9b7721c", + "tabularAttributeGuid": "d0c60c50-786a-47dd-acee-bbe6bff8925c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "e94bd882-e346-420d-850d-80442254ed0c", - "tabularAttributeGuid": "0daac56b-5078-4d54-bc77-48e91f3de35f" + "sourceDatabaseVersionGuid": "fa613599-157d-4664-b703-e2e386c4178d", + "tabularAttributeGuid": "4776155c-68d2-4ad9-87a2-9246cd58ca9e" } ] } @@ -36427,9 +36439,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "84515e0a-9c2d-4cb0-8bd1-7b322c9181a3", - "sourceTableGuid": "42505b67-ce07-4f11-b044-32fe9bbb1f78", - "linkGroupGuid": "129fd6d1-37d9-4dfe-b824-5039d40501fd" + "sourceDatabaseGuid": "256f855f-02a4-4761-80c7-bdc3f61ade8e", + "sourceTableGuid": "1269fa34-b31d-40c5-9031-5deda5fc3093", + "linkGroupGuid": "ecc78110-1335-42cb-a472-a2d63e093bd8" } }, "Example 8": { @@ -36441,13 +36453,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "a1cff39c-1e90-4b35-a143-0d8b7277402a", - "tabularAttributeGuid": "a03ac30e-2f07-4700-9273-e36fd286bf57" + "sourceDatabaseVersionGuid": "6e9021e2-3fba-4d8f-9d91-932ec9b7721c", + "tabularAttributeGuid": "d0c60c50-786a-47dd-acee-bbe6bff8925c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "e94bd882-e346-420d-850d-80442254ed0c", - "tabularAttributeGuid": "0daac56b-5078-4d54-bc77-48e91f3de35f" + "sourceDatabaseVersionGuid": "fa613599-157d-4664-b703-e2e386c4178d", + "tabularAttributeGuid": "4776155c-68d2-4ad9-87a2-9246cd58ca9e" } ] } @@ -36527,9 +36539,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "84515e0a-9c2d-4cb0-8bd1-7b322c9181a3", - "sourceTableGuid": "42505b67-ce07-4f11-b044-32fe9bbb1f78", - "linkGroupGuid": "129fd6d1-37d9-4dfe-b824-5039d40501fd" + "sourceDatabaseGuid": "256f855f-02a4-4761-80c7-bdc3f61ade8e", + "sourceTableGuid": "1269fa34-b31d-40c5-9031-5deda5fc3093", + "linkGroupGuid": "ecc78110-1335-42cb-a472-a2d63e093bd8" } }, "Example 8": { @@ -36541,13 +36553,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "a1cff39c-1e90-4b35-a143-0d8b7277402a", - "tabularAttributeGuid": "a03ac30e-2f07-4700-9273-e36fd286bf57" + "sourceDatabaseVersionGuid": "6e9021e2-3fba-4d8f-9d91-932ec9b7721c", + "tabularAttributeGuid": "d0c60c50-786a-47dd-acee-bbe6bff8925c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "e94bd882-e346-420d-850d-80442254ed0c", - "tabularAttributeGuid": "0daac56b-5078-4d54-bc77-48e91f3de35f" + "sourceDatabaseVersionGuid": "fa613599-157d-4664-b703-e2e386c4178d", + "tabularAttributeGuid": "4776155c-68d2-4ad9-87a2-9246cd58ca9e" } ] } @@ -36575,7 +36587,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "5e880237-3a42-48c7-a89a-830b57707ca8" + "guid": "252bce58-df98-493a-aae5-646a20436a73" } }, "Example 2": { @@ -36595,7 +36607,7 @@ } ], "tabularColumnGuids": null, - "guid": "7138d81b-4447-44df-bb0f-0a223e89b1ac" + "guid": "0b7e47b7-c903-40de-b408-8edd85a52cb1" } }, "Example 3": { @@ -36639,9 +36651,9 @@ "description": "This example demonstrates the response to creating a new cross database link group layout item. It was created by adding a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "6eb79553-99a8-452e-902f-761abdfa3359", - "sourceTableGuid": "de2b2ee8-bd04-4470-848d-e84f17b0e9d3", - "linkGroupGuid": "32b82b4c-d409-4368-87e8-6badc65f28cf", + "sourceDatabaseGuid": "7910f739-69f6-4025-a359-d49856b71fa4", + "sourceTableGuid": "0698662d-02ca-425e-b305-92e2b8084d57", + "linkGroupGuid": "04a4fd1f-983f-40b5-b4eb-ac82cfa88645", "guid": null } }, @@ -36655,12 +36667,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "1fb9c43a-89ab-4572-ad5e-462270957016" + "tabularAttributeGuid": "992a8701-bc54-437f-85ef-b1627c69062c" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "c4692b30-0d9e-493a-9682-5481fb92e8f1" + "tabularAttributeGuid": "9c24387f-d5f1-492a-ba4c-7997476585e3" } ], "guid": null @@ -36893,7 +36905,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "4970b7c7-b19d-487d-8fe2-f7b22aa2ba60" + "guid": "e3af67fd-ecb7-4c25-847b-d189c0c0ddd3" } }, "Example 3": { @@ -36926,7 +36938,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "4970b7c7-b19d-487d-8fe2-f7b22aa2ba60" + "guid": "e3af67fd-ecb7-4c25-847b-d189c0c0ddd3" } }, "Example 3": { @@ -36959,7 +36971,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "4970b7c7-b19d-487d-8fe2-f7b22aa2ba60" + "guid": "e3af67fd-ecb7-4c25-847b-d189c0c0ddd3" } }, "Example 3": { @@ -36992,7 +37004,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "4970b7c7-b19d-487d-8fe2-f7b22aa2ba60" + "guid": "e3af67fd-ecb7-4c25-847b-d189c0c0ddd3" } }, "Example 3": { @@ -37022,7 +37034,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "a3b313d4-e645-4b5c-b3b1-b85aa3e41038" + "guid": "b6a67dac-4e27-4ecb-9b9b-ec92c9e51054" } } } @@ -37161,9 +37173,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "bc2bb866-814b-4238-bff5-4da9e142bdb8", + "underlyingEntityGuid": "0e4cd9fb-47d5-43d8-93b3-2dcc02985263", "name": "Price", - "guid": "f421f06f-c602-4ef3-9658-8d69a7540951" + "guid": "860b3770-89c0-4b52-9a45-4bae946aed19" }, { "itemType": "attribute", @@ -37171,9 +37183,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "16b21282-1916-43c9-9159-84a379348c1b", + "underlyingEntityGuid": "be75c6a7-1859-4838-a503-d66ccd2b9849", "name": "Density", - "guid": "1ff1824d-4938-4f65-b230-6ecc20af32a6" + "guid": "aa44a79e-7bfa-482b-a19a-0f9c92843aa9" } ], "displayNames": { @@ -37192,9 +37204,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "a874994a-5fda-4f1a-949d-2675daae7b86", + "underlyingEntityGuid": "c1a8d85e-7308-48ce-933c-d97fa5f4f2e6", "name": "Young's modulus", - "guid": "687acd89-b219-4d18-bc3b-6817e52e449e" + "guid": "3f95125f-b68f-471a-ac40-08269c677801" }, { "itemType": "attribute", @@ -37202,9 +37214,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "1253f349-bdc0-454b-aaa4-82e7c8335e9c", + "underlyingEntityGuid": "d028219e-a276-44f7-b557-6e62879872c7", "name": "Tensile strength", - "guid": "3b8c6746-38dc-46f5-8e15-ed1755e66630" + "guid": "094f80c0-21af-4a71-823f-60e43acffe32" }, { "itemType": "attribute", @@ -37212,9 +37224,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "5c707071-d1ef-43fe-a344-adaffcda6996", + "underlyingEntityGuid": "d60fbe4e-4b92-4547-8d84-e85c89385907", "name": "Shape factor", - "guid": "169806f9-d647-4060-87f9-36dcdbfc0073" + "guid": "cb79472e-0740-4c5c-aeb1-480a983f5298" } ], "displayNames": { @@ -37293,7 +37305,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ca715a6d-5104-4a9c-aad5-7048276f6e3f" + "guid": "0b62b0ef-afcd-4b92-a8e1-fb33c3b31046" } }, "Example 2": { @@ -37326,7 +37338,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ca715a6d-5104-4a9c-aad5-7048276f6e3f" + "guid": "0b62b0ef-afcd-4b92-a8e1-fb33c3b31046" } }, "Example 2": { @@ -37359,7 +37371,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ca715a6d-5104-4a9c-aad5-7048276f6e3f" + "guid": "0b62b0ef-afcd-4b92-a8e1-fb33c3b31046" } }, "Example 2": { @@ -37392,7 +37404,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ca715a6d-5104-4a9c-aad5-7048276f6e3f" + "guid": "0b62b0ef-afcd-4b92-a8e1-fb33c3b31046" } }, "Example 2": { @@ -37425,7 +37437,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "6f96b112-0fc5-426b-b079-8cd44101e695" + "guid": "5a9f83b8-1780-4325-8808-5194ea705305" } } } @@ -37722,7 +37734,7 @@ { "type": "discrete", "name": "Red", - "guid": "29ffb791-9495-4dbd-8b78-a25df9426f70" + "guid": "01107207-28ef-4377-811c-606731bc9ca5" }, { "type": "discrete", @@ -37732,7 +37744,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "70964a81-9331-4b4d-b177-3a7b15ff2de1" + "guid": "b53efd8d-abc1-48c2-9144-6334ccc7a388" } }, "Example 3": { @@ -37860,7 +37872,7 @@ { "type": "discrete", "name": "Red", - "guid": "29ffb791-9495-4dbd-8b78-a25df9426f70" + "guid": "01107207-28ef-4377-811c-606731bc9ca5" }, { "type": "discrete", @@ -37870,7 +37882,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "70964a81-9331-4b4d-b177-3a7b15ff2de1" + "guid": "b53efd8d-abc1-48c2-9144-6334ccc7a388" } }, "Example 3": { @@ -37998,7 +38010,7 @@ { "type": "discrete", "name": "Red", - "guid": "29ffb791-9495-4dbd-8b78-a25df9426f70" + "guid": "01107207-28ef-4377-811c-606731bc9ca5" }, { "type": "discrete", @@ -38008,7 +38020,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "70964a81-9331-4b4d-b177-3a7b15ff2de1" + "guid": "b53efd8d-abc1-48c2-9144-6334ccc7a388" } }, "Example 3": { @@ -38136,7 +38148,7 @@ { "type": "discrete", "name": "Red", - "guid": "29ffb791-9495-4dbd-8b78-a25df9426f70" + "guid": "01107207-28ef-4377-811c-606731bc9ca5" }, { "type": "discrete", @@ -38146,7 +38158,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "70964a81-9331-4b4d-b177-3a7b15ff2de1" + "guid": "b53efd8d-abc1-48c2-9144-6334ccc7a388" } }, "Example 3": { @@ -38414,7 +38426,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "8131d9e7-b8a8-4d3a-b082-092011c36667" + "guid": "97748d76-8493-477a-8871-2d99673b9d06" } }, "Example 2": { @@ -38425,7 +38437,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "098426ea-9c41-4d72-9276-c4c8c00686dc" + "guid": "04e87d59-75a7-4796-9e5b-2b3a795b60ee" } }, "Example 3": { @@ -38433,7 +38445,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "e0721600-f128-4c0a-a36d-58543d81a372" + "guid": "eee58846-27cd-440b-90b3-11825d3cac3f" } }, "Example 4": { @@ -38452,7 +38464,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "5c0c5629-c7e6-46ab-a2ac-036563c25ed9" + "guid": "071c2db2-d3f8-4deb-8caa-8e43811ef646" } }, "Example 6": { @@ -38492,7 +38504,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "8131d9e7-b8a8-4d3a-b082-092011c36667" + "guid": "97748d76-8493-477a-8871-2d99673b9d06" } }, "Example 2": { @@ -38503,7 +38515,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "098426ea-9c41-4d72-9276-c4c8c00686dc" + "guid": "04e87d59-75a7-4796-9e5b-2b3a795b60ee" } }, "Example 3": { @@ -38511,7 +38523,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "e0721600-f128-4c0a-a36d-58543d81a372" + "guid": "eee58846-27cd-440b-90b3-11825d3cac3f" } }, "Example 4": { @@ -38530,7 +38542,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "5c0c5629-c7e6-46ab-a2ac-036563c25ed9" + "guid": "071c2db2-d3f8-4deb-8caa-8e43811ef646" } }, "Example 6": { @@ -38570,7 +38582,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "8131d9e7-b8a8-4d3a-b082-092011c36667" + "guid": "97748d76-8493-477a-8871-2d99673b9d06" } }, "Example 2": { @@ -38581,7 +38593,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "098426ea-9c41-4d72-9276-c4c8c00686dc" + "guid": "04e87d59-75a7-4796-9e5b-2b3a795b60ee" } }, "Example 3": { @@ -38589,7 +38601,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "e0721600-f128-4c0a-a36d-58543d81a372" + "guid": "eee58846-27cd-440b-90b3-11825d3cac3f" } }, "Example 4": { @@ -38608,7 +38620,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "5c0c5629-c7e6-46ab-a2ac-036563c25ed9" + "guid": "071c2db2-d3f8-4deb-8caa-8e43811ef646" } }, "Example 6": { @@ -38648,7 +38660,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "8131d9e7-b8a8-4d3a-b082-092011c36667" + "guid": "97748d76-8493-477a-8871-2d99673b9d06" } }, "Example 2": { @@ -38659,7 +38671,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "098426ea-9c41-4d72-9276-c4c8c00686dc" + "guid": "04e87d59-75a7-4796-9e5b-2b3a795b60ee" } }, "Example 3": { @@ -38667,7 +38679,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "e0721600-f128-4c0a-a36d-58543d81a372" + "guid": "eee58846-27cd-440b-90b3-11825d3cac3f" } }, "Example 4": { @@ -38686,7 +38698,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "5c0c5629-c7e6-46ab-a2ac-036563c25ed9" + "guid": "071c2db2-d3f8-4deb-8caa-8e43811ef646" } }, "Example 6": { @@ -38979,7 +38991,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "abcc3baa-fa32-479e-8f75-89bd0368b861" + "guid": "d85c6753-a73e-4831-944b-ba928f2e44fb" } }, "Example 2": { @@ -38988,7 +39000,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "db54a55e-39f3-441f-ac2b-e75e821e9193" + "guid": "77c56c7b-1a4e-4aff-ad53-bf150de44710" } }, "Example 3": { @@ -38996,7 +39008,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "c02c3e24-68e0-4bab-b6cc-55e95ecb38d9" + "guid": "35f80307-c2f9-4529-aa24-9c3d285541e3" } } } @@ -39013,7 +39025,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "abcc3baa-fa32-479e-8f75-89bd0368b861" + "guid": "d85c6753-a73e-4831-944b-ba928f2e44fb" } }, "Example 2": { @@ -39022,7 +39034,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "db54a55e-39f3-441f-ac2b-e75e821e9193" + "guid": "77c56c7b-1a4e-4aff-ad53-bf150de44710" } }, "Example 3": { @@ -39030,7 +39042,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "c02c3e24-68e0-4bab-b6cc-55e95ecb38d9" + "guid": "35f80307-c2f9-4529-aa24-9c3d285541e3" } } } @@ -39047,7 +39059,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "abcc3baa-fa32-479e-8f75-89bd0368b861" + "guid": "d85c6753-a73e-4831-944b-ba928f2e44fb" } }, "Example 2": { @@ -39056,7 +39068,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "db54a55e-39f3-441f-ac2b-e75e821e9193" + "guid": "77c56c7b-1a4e-4aff-ad53-bf150de44710" } }, "Example 3": { @@ -39064,7 +39076,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "c02c3e24-68e0-4bab-b6cc-55e95ecb38d9" + "guid": "35f80307-c2f9-4529-aa24-9c3d285541e3" } } } @@ -39081,7 +39093,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "abcc3baa-fa32-479e-8f75-89bd0368b861" + "guid": "d85c6753-a73e-4831-944b-ba928f2e44fb" } }, "Example 2": { @@ -39090,7 +39102,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "db54a55e-39f3-441f-ac2b-e75e821e9193" + "guid": "77c56c7b-1a4e-4aff-ad53-bf150de44710" } }, "Example 3": { @@ -39098,7 +39110,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "c02c3e24-68e0-4bab-b6cc-55e95ecb38d9" + "guid": "35f80307-c2f9-4529-aa24-9c3d285541e3" } } } @@ -39754,7 +39766,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "b958f088-2b15-4287-8439-8f34f4cac99b" + "guid": "10434ad3-2628-439b-b93a-7cb57ddc4ffa" } }, "Example 3": { @@ -39765,7 +39777,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "0679f8c2-860b-47ce-b998-17103981dee2" + "guid": "2eb57bf1-6539-464f-8f23-838cdcfd9855" } } } @@ -39787,7 +39799,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "b958f088-2b15-4287-8439-8f34f4cac99b" + "guid": "10434ad3-2628-439b-b93a-7cb57ddc4ffa" } }, "Example 3": { @@ -39798,7 +39810,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "0679f8c2-860b-47ce-b998-17103981dee2" + "guid": "2eb57bf1-6539-464f-8f23-838cdcfd9855" } } } @@ -39820,7 +39832,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "b958f088-2b15-4287-8439-8f34f4cac99b" + "guid": "10434ad3-2628-439b-b93a-7cb57ddc4ffa" } }, "Example 3": { @@ -39831,7 +39843,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "0679f8c2-860b-47ce-b998-17103981dee2" + "guid": "2eb57bf1-6539-464f-8f23-838cdcfd9855" } } } @@ -39853,7 +39865,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "b958f088-2b15-4287-8439-8f34f4cac99b" + "guid": "10434ad3-2628-439b-b93a-7cb57ddc4ffa" } }, "Example 3": { @@ -39864,7 +39876,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "0679f8c2-860b-47ce-b998-17103981dee2" + "guid": "2eb57bf1-6539-464f-8f23-838cdcfd9855" } } } @@ -40006,7 +40018,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "8bb59b74-123e-4dfc-b56a-cc56b1314a02" + "guid": "3854a32f-5c72-49c9-a945-5e7552f3d715" } }, "Example 2": { @@ -40026,7 +40038,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "75288e2e-39d1-456c-a723-2227412e22d7", + "guid": "1e247245-ea14-4c5f-8f7f-9ef5f92e7080", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -40042,7 +40054,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "8bb59b74-123e-4dfc-b56a-cc56b1314a02" + "guid": "3854a32f-5c72-49c9-a945-5e7552f3d715" } }, "Example 2": { @@ -40062,7 +40074,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "75288e2e-39d1-456c-a723-2227412e22d7", + "guid": "1e247245-ea14-4c5f-8f7f-9ef5f92e7080", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -40078,7 +40090,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "8bb59b74-123e-4dfc-b56a-cc56b1314a02" + "guid": "3854a32f-5c72-49c9-a945-5e7552f3d715" } }, "Example 2": { @@ -40098,7 +40110,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "75288e2e-39d1-456c-a723-2227412e22d7", + "guid": "1e247245-ea14-4c5f-8f7f-9ef5f92e7080", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -40114,7 +40126,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "8bb59b74-123e-4dfc-b56a-cc56b1314a02" + "guid": "3854a32f-5c72-49c9-a945-5e7552f3d715" } }, "Example 2": { @@ -40134,7 +40146,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "75288e2e-39d1-456c-a723-2227412e22d7", + "guid": "1e247245-ea14-4c5f-8f7f-9ef5f92e7080", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -40316,7 +40328,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "30f0db1c-cc27-4de1-90c4-75da0fd4601f" + "guid": "a0e513d9-30cc-47d3-9238-6735384df043" } }, "Example 3": { @@ -40327,7 +40339,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "c9498885-1e4d-49b5-a93b-a97a8f18ea66" + "guid": "f8fe67cc-2527-41f0-b46b-f312fac08466" } } } @@ -40351,7 +40363,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "30f0db1c-cc27-4de1-90c4-75da0fd4601f" + "guid": "a0e513d9-30cc-47d3-9238-6735384df043" } }, "Example 3": { @@ -40362,7 +40374,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "c9498885-1e4d-49b5-a93b-a97a8f18ea66" + "guid": "f8fe67cc-2527-41f0-b46b-f312fac08466" } } } @@ -40386,7 +40398,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "30f0db1c-cc27-4de1-90c4-75da0fd4601f" + "guid": "a0e513d9-30cc-47d3-9238-6735384df043" } }, "Example 3": { @@ -40397,7 +40409,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "c9498885-1e4d-49b5-a93b-a97a8f18ea66" + "guid": "f8fe67cc-2527-41f0-b46b-f312fac08466" } } } @@ -40421,7 +40433,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "30f0db1c-cc27-4de1-90c4-75da0fd4601f" + "guid": "a0e513d9-30cc-47d3-9238-6735384df043" } }, "Example 3": { @@ -40432,7 +40444,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "c9498885-1e4d-49b5-a93b-a97a8f18ea66" + "guid": "f8fe67cc-2527-41f0-b46b-f312fac08466" } } } @@ -40569,7 +40581,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9812789d-4fc1-4b40-94f8-60cc60a4cf3d" + "guid": "7549bdae-344f-4391-8e9c-444498687153" } }, "Example 2": { @@ -40584,7 +40596,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "3a86c587-c5b4-4b29-9869-5b904a9cc640" + "guid": "fa0a5a34-371b-40ce-a519-d50c2b759b49" } } } @@ -40600,7 +40612,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9812789d-4fc1-4b40-94f8-60cc60a4cf3d" + "guid": "7549bdae-344f-4391-8e9c-444498687153" } }, "Example 2": { @@ -40615,7 +40627,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "3a86c587-c5b4-4b29-9869-5b904a9cc640" + "guid": "fa0a5a34-371b-40ce-a519-d50c2b759b49" } } } @@ -40631,7 +40643,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9812789d-4fc1-4b40-94f8-60cc60a4cf3d" + "guid": "7549bdae-344f-4391-8e9c-444498687153" } }, "Example 2": { @@ -40646,7 +40658,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "3a86c587-c5b4-4b29-9869-5b904a9cc640" + "guid": "fa0a5a34-371b-40ce-a519-d50c2b759b49" } } } @@ -40662,7 +40674,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9812789d-4fc1-4b40-94f8-60cc60a4cf3d" + "guid": "7549bdae-344f-4391-8e9c-444498687153" } }, "Example 2": { @@ -40677,7 +40689,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "3a86c587-c5b4-4b29-9869-5b904a9cc640" + "guid": "fa0a5a34-371b-40ce-a519-d50c2b759b49" } } } @@ -40847,7 +40859,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "0e9fe7cf-5e42-4342-9e87-764f57676a70" + "guid": "12cc6c33-6caf-45b3-8e2e-7fe353748e3a" } ] } @@ -40917,7 +40929,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "8ce74478-d0e9-4335-a63b-e5f23756b96d" + "guid": "b03026bd-ed0d-4d9a-915c-c1476cc6f908" } }, "Example 3": { @@ -40927,7 +40939,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "7ed42973-cc77-43dd-9000-0d1dab96615b" + "tableGuid": "bea73077-a927-4edf-8d02-843485c9df48" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -40940,12 +40952,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "aee70e87-2aae-430b-bd29-0c93b2842179", - "tableGuid": "f00f4489-bf34-4821-ad9f-04795215cf31" + "databaseGuid": "1cbf18bd-4761-49fb-9440-6da597977ca5", + "tableGuid": "cdc37b1f-baeb-43ab-9629-502c8e565d35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "834754be-737c-4047-b943-6c7cf638298a" + "guid": "42204aa9-2f73-4637-a2a6-b7452cfcce87" } }, "Example 5": { @@ -40992,7 +41004,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "93e78dd8-4c2c-4257-a524-a2da6dafab11" + "guid": "48e3f038-0cd6-433a-a584-733da4ef2b33" } } } @@ -41028,7 +41040,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "8ce74478-d0e9-4335-a63b-e5f23756b96d" + "guid": "b03026bd-ed0d-4d9a-915c-c1476cc6f908" } }, "Example 3": { @@ -41038,7 +41050,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "7ed42973-cc77-43dd-9000-0d1dab96615b" + "tableGuid": "bea73077-a927-4edf-8d02-843485c9df48" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -41051,12 +41063,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "aee70e87-2aae-430b-bd29-0c93b2842179", - "tableGuid": "f00f4489-bf34-4821-ad9f-04795215cf31" + "databaseGuid": "1cbf18bd-4761-49fb-9440-6da597977ca5", + "tableGuid": "cdc37b1f-baeb-43ab-9629-502c8e565d35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "834754be-737c-4047-b943-6c7cf638298a" + "guid": "42204aa9-2f73-4637-a2a6-b7452cfcce87" } }, "Example 5": { @@ -41103,7 +41115,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "93e78dd8-4c2c-4257-a524-a2da6dafab11" + "guid": "48e3f038-0cd6-433a-a584-733da4ef2b33" } } } @@ -41139,7 +41151,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "8ce74478-d0e9-4335-a63b-e5f23756b96d" + "guid": "b03026bd-ed0d-4d9a-915c-c1476cc6f908" } }, "Example 3": { @@ -41149,7 +41161,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "7ed42973-cc77-43dd-9000-0d1dab96615b" + "tableGuid": "bea73077-a927-4edf-8d02-843485c9df48" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -41162,12 +41174,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "aee70e87-2aae-430b-bd29-0c93b2842179", - "tableGuid": "f00f4489-bf34-4821-ad9f-04795215cf31" + "databaseGuid": "1cbf18bd-4761-49fb-9440-6da597977ca5", + "tableGuid": "cdc37b1f-baeb-43ab-9629-502c8e565d35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "834754be-737c-4047-b943-6c7cf638298a" + "guid": "42204aa9-2f73-4637-a2a6-b7452cfcce87" } }, "Example 5": { @@ -41214,7 +41226,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "93e78dd8-4c2c-4257-a524-a2da6dafab11" + "guid": "48e3f038-0cd6-433a-a584-733da4ef2b33" } } } @@ -41250,7 +41262,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "8ce74478-d0e9-4335-a63b-e5f23756b96d" + "guid": "b03026bd-ed0d-4d9a-915c-c1476cc6f908" } }, "Example 3": { @@ -41260,7 +41272,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "7ed42973-cc77-43dd-9000-0d1dab96615b" + "tableGuid": "bea73077-a927-4edf-8d02-843485c9df48" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -41273,12 +41285,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "aee70e87-2aae-430b-bd29-0c93b2842179", - "tableGuid": "f00f4489-bf34-4821-ad9f-04795215cf31" + "databaseGuid": "1cbf18bd-4761-49fb-9440-6da597977ca5", + "tableGuid": "cdc37b1f-baeb-43ab-9629-502c8e565d35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "834754be-737c-4047-b943-6c7cf638298a" + "guid": "42204aa9-2f73-4637-a2a6-b7452cfcce87" } }, "Example 5": { @@ -41325,7 +41337,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "93e78dd8-4c2c-4257-a524-a2da6dafab11" + "guid": "48e3f038-0cd6-433a-a584-733da4ef2b33" } } } @@ -41380,8 +41392,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "9dfed756-d472-4ae9-9f03-05893c9a0bd3", - "tableGuid": "2b119f91-a7ca-488a-b75c-b6d873588b14" + "databaseGuid": "39504b77-6a7c-4955-aa51-105a91e92fa3", + "tableGuid": "448c58a1-cd5b-480a-950f-ccc46b2d1d53" } }, "identity": 1, @@ -41389,7 +41401,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "a6bbaf89-37f6-4074-86ad-3e1d00fbc1a5" + "guid": "58056bb4-8548-40bf-8c63-0507e0358743" } }, "Example 6": { @@ -41580,8 +41592,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "71b6ef0b-cca5-4218-b122-1c3dfc6d262c", - "tableGuid": "3157a80a-af41-4d40-aeac-bf35caa5fb3a" + "databaseGuid": "332c0bac-2680-4d1d-9e05-3e3c0f1ee131", + "tableGuid": "bb24e9e0-494b-44fe-9252-cb1c3da86325" } }, "identity": 1, @@ -41589,7 +41601,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "a8846d95-1da2-4b8a-b0b3-aeffc07353c9" + "guid": "1ab9b32b-372d-4c36-9864-0f696902a356" } }, "Example 3": { @@ -41760,7 +41772,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "d50e3ec1-1ac1-4566-95f1-58b021b506df" + "guid": "f140e800-8235-4577-b3ca-5df0ce89de32" } }, "Example 2": { @@ -41780,7 +41792,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "59b24298-57e6-4b67-9f31-3cf912571fe3" + "guid": "5b6dd381-eb18-4526-9208-459cb2616f57" } }, "Example 4": { @@ -41791,7 +41803,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "91890a18-a598-4949-911d-972346fb0a50" + "guid": "fb7528b2-32ff-4b72-a73f-e5501a244f96" } }, "Example 5": { @@ -41813,7 +41825,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "d1d0f65d-b0e6-4f14-8ee7-7f995d50c1d2" + "guid": "0306234f-5e11-4284-b91e-c7315ce8082b" } } } @@ -41828,7 +41840,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "d50e3ec1-1ac1-4566-95f1-58b021b506df" + "guid": "f140e800-8235-4577-b3ca-5df0ce89de32" } }, "Example 2": { @@ -41848,7 +41860,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "59b24298-57e6-4b67-9f31-3cf912571fe3" + "guid": "5b6dd381-eb18-4526-9208-459cb2616f57" } }, "Example 4": { @@ -41859,7 +41871,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "91890a18-a598-4949-911d-972346fb0a50" + "guid": "fb7528b2-32ff-4b72-a73f-e5501a244f96" } }, "Example 5": { @@ -41881,7 +41893,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "d1d0f65d-b0e6-4f14-8ee7-7f995d50c1d2" + "guid": "0306234f-5e11-4284-b91e-c7315ce8082b" } } } @@ -41896,7 +41908,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "d50e3ec1-1ac1-4566-95f1-58b021b506df" + "guid": "f140e800-8235-4577-b3ca-5df0ce89de32" } }, "Example 2": { @@ -41916,7 +41928,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "59b24298-57e6-4b67-9f31-3cf912571fe3" + "guid": "5b6dd381-eb18-4526-9208-459cb2616f57" } }, "Example 4": { @@ -41927,7 +41939,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "91890a18-a598-4949-911d-972346fb0a50" + "guid": "fb7528b2-32ff-4b72-a73f-e5501a244f96" } }, "Example 5": { @@ -41949,7 +41961,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "d1d0f65d-b0e6-4f14-8ee7-7f995d50c1d2" + "guid": "0306234f-5e11-4284-b91e-c7315ce8082b" } } } @@ -41964,7 +41976,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "d50e3ec1-1ac1-4566-95f1-58b021b506df" + "guid": "f140e800-8235-4577-b3ca-5df0ce89de32" } }, "Example 2": { @@ -41984,7 +41996,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "59b24298-57e6-4b67-9f31-3cf912571fe3" + "guid": "5b6dd381-eb18-4526-9208-459cb2616f57" } }, "Example 4": { @@ -41995,7 +42007,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "91890a18-a598-4949-911d-972346fb0a50" + "guid": "fb7528b2-32ff-4b72-a73f-e5501a244f96" } }, "Example 5": { @@ -42017,7 +42029,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "d1d0f65d-b0e6-4f14-8ee7-7f995d50c1d2" + "guid": "0306234f-5e11-4284-b91e-c7315ce8082b" } } } @@ -42072,8 +42084,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "bb3b5eea-bdc8-44ea-9035-eaa2bf93bef6", - "tableGuid": "e3d76465-42cd-45a2-bf7b-3f14cd258da6" + "databaseGuid": "86d1a5a4-ca51-40d5-bd97-b473cc26597e", + "tableGuid": "4fbc1d33-e96d-46fd-9c6e-014edac80c00" } }, "identity": 1, @@ -42081,7 +42093,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "2e13c177-f8db-4ec8-a765-b3ae4f05d4fc" + "guid": "83c98679-51b4-4466-9c75-83a60b0a356a" } }, "Example 9": { @@ -42232,7 +42244,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "0c7fa047-b3ac-46fc-869c-43ee387af1f0" + "guid": "bfe6e59d-44ed-4eb7-ab4a-6ae6713a8872" } } } @@ -42256,7 +42268,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "0c7fa047-b3ac-46fc-869c-43ee387af1f0" + "guid": "bfe6e59d-44ed-4eb7-ab4a-6ae6713a8872" } } } @@ -42280,7 +42292,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "0c7fa047-b3ac-46fc-869c-43ee387af1f0" + "guid": "bfe6e59d-44ed-4eb7-ab4a-6ae6713a8872" } } } @@ -42304,7 +42316,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "0c7fa047-b3ac-46fc-869c-43ee387af1f0" + "guid": "bfe6e59d-44ed-4eb7-ab4a-6ae6713a8872" } } } @@ -42429,7 +42441,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "6c027a5f-ec5a-48e4-9013-9595478fd85b" + "guid": "6a922506-77a1-4822-9e81-7b7918ac33cb" } }, "Example 2": { @@ -42459,7 +42471,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "6c027a5f-ec5a-48e4-9013-9595478fd85b" + "guid": "6a922506-77a1-4822-9e81-7b7918ac33cb" } }, "Example 2": { @@ -42489,7 +42501,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "6c027a5f-ec5a-48e4-9013-9595478fd85b" + "guid": "6a922506-77a1-4822-9e81-7b7918ac33cb" } }, "Example 2": { @@ -42519,7 +42531,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "6c027a5f-ec5a-48e4-9013-9595478fd85b" + "guid": "6a922506-77a1-4822-9e81-7b7918ac33cb" } }, "Example 2": { @@ -42711,7 +42723,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2378beb-ec22-41e6-9a7c-96c93e68e772" + "guid": "b70f22dd-755d-4649-8ce5-639efae05e81" } ], "name": "Unification" @@ -42792,7 +42804,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2378beb-ec22-41e6-9a7c-96c93e68e772" + "guid": "b70f22dd-755d-4649-8ce5-639efae05e81" } ], "name": "Unification" @@ -42873,7 +42885,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2378beb-ec22-41e6-9a7c-96c93e68e772" + "guid": "b70f22dd-755d-4649-8ce5-639efae05e81" } ], "name": "Unification" @@ -42954,7 +42966,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2378beb-ec22-41e6-9a7c-96c93e68e772" + "guid": "b70f22dd-755d-4649-8ce5-639efae05e81" } ], "name": "Unification" @@ -43092,7 +43104,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "45e94e84-aa76-48a8-9c42-0c1b693031f1" + "guid": "fdd8481b-28a2-4b7f-839c-66a792262a75" } }, "Example 3": { @@ -43142,7 +43154,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "45e94e84-aa76-48a8-9c42-0c1b693031f1" + "guid": "fdd8481b-28a2-4b7f-839c-66a792262a75" } }, "Example 3": { @@ -43192,7 +43204,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "45e94e84-aa76-48a8-9c42-0c1b693031f1" + "guid": "fdd8481b-28a2-4b7f-839c-66a792262a75" } }, "Example 3": { @@ -43242,7 +43254,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "45e94e84-aa76-48a8-9c42-0c1b693031f1" + "guid": "fdd8481b-28a2-4b7f-839c-66a792262a75" } }, "Example 3": { @@ -43473,7 +43485,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a035e2da-c5fc-47e0-9643-721bc9b40a65" + "guid": "8a6cb021-6ff3-4d5d-bfde-041137306717" } }, "Example 3": { @@ -43505,7 +43517,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a035e2da-c5fc-47e0-9643-721bc9b40a65" + "guid": "8a6cb021-6ff3-4d5d-bfde-041137306717" } }, "Example 3": { @@ -43537,7 +43549,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a035e2da-c5fc-47e0-9643-721bc9b40a65" + "guid": "8a6cb021-6ff3-4d5d-bfde-041137306717" } }, "Example 3": { @@ -43569,7 +43581,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a035e2da-c5fc-47e0-9643-721bc9b40a65" + "guid": "8a6cb021-6ff3-4d5d-bfde-041137306717" } }, "Example 3": { @@ -43758,7 +43770,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "89502f40-8b81-4983-b972-94e31ff0291e" + "guid": "d45666e3-59f9-4453-95dc-a2916e57fcf3" } }, "Example 2": { @@ -43799,7 +43811,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "89502f40-8b81-4983-b972-94e31ff0291e" + "guid": "d45666e3-59f9-4453-95dc-a2916e57fcf3" } }, "Example 2": { @@ -43840,7 +43852,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "89502f40-8b81-4983-b972-94e31ff0291e" + "guid": "d45666e3-59f9-4453-95dc-a2916e57fcf3" } }, "Example 2": { @@ -43881,7 +43893,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "89502f40-8b81-4983-b972-94e31ff0291e" + "guid": "d45666e3-59f9-4453-95dc-a2916e57fcf3" } }, "Example 2": { @@ -44383,7 +44395,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "8a219657-ea43-4cb1-af05-441abb9afbea" + "guid": "f63a373f-219c-493e-b0af-ce329dd47653" } }, "Example 3": { @@ -44418,7 +44430,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "8a219657-ea43-4cb1-af05-441abb9afbea" + "guid": "f63a373f-219c-493e-b0af-ce329dd47653" } }, "Example 3": { @@ -44453,7 +44465,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "8a219657-ea43-4cb1-af05-441abb9afbea" + "guid": "f63a373f-219c-493e-b0af-ce329dd47653" } }, "Example 3": { @@ -44488,7 +44500,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "8a219657-ea43-4cb1-af05-441abb9afbea" + "guid": "f63a373f-219c-493e-b0af-ce329dd47653" } }, "Example 3": { @@ -44720,7 +44732,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "682b4e8e-e177-419f-bbe0-b0964d0e69cb" + "guid": "d9ac9219-8800-4f92-aefc-c86b24495d20" } }, "Example 2": { @@ -44781,7 +44793,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "682b4e8e-e177-419f-bbe0-b0964d0e69cb" + "guid": "d9ac9219-8800-4f92-aefc-c86b24495d20" } }, "Example 2": { @@ -44842,7 +44854,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "682b4e8e-e177-419f-bbe0-b0964d0e69cb" + "guid": "d9ac9219-8800-4f92-aefc-c86b24495d20" } }, "Example 2": { @@ -44903,7 +44915,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "682b4e8e-e177-419f-bbe0-b0964d0e69cb" + "guid": "d9ac9219-8800-4f92-aefc-c86b24495d20" } }, "Example 2": { @@ -45389,9 +45401,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "27afede1-6e08-43eb-ba2e-7975ab191a32", - "databaseVersionGuid": "8e4fbecc-64ee-4834-a654-09de56c1badd", - "tableGuid": "fae28957-1cfc-4c6c-a934-f55617de5c2f" + "databaseGuid": "49a5e85e-5029-4efa-a69f-98125fc3bccd", + "databaseVersionGuid": "02ec9763-6538-4fab-af5e-ae0dfdc4bdeb", + "tableGuid": "0e76bafc-e92f-4800-9139-5e1dae5590bb" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -45401,7 +45413,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "8bb9887b-b3fb-46de-9c88-968bffba26ed" + "guid": "abb1cb38-e7cf-4092-8ad1-e9a9bab46857" }, { "identity": 8944, @@ -45929,7 +45941,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "b7dfcb9f-0d41-485e-9d22-9c24a9ec93ec" + "guid": "df3f9c81-1463-422e-98e9-d3a1ea777b3c" } } } @@ -45944,7 +45956,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "b7dfcb9f-0d41-485e-9d22-9c24a9ec93ec" + "guid": "df3f9c81-1463-422e-98e9-d3a1ea777b3c" } } } @@ -45959,7 +45971,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "b7dfcb9f-0d41-485e-9d22-9c24a9ec93ec" + "guid": "df3f9c81-1463-422e-98e9-d3a1ea777b3c" } } } @@ -45974,7 +45986,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "b7dfcb9f-0d41-485e-9d22-9c24a9ec93ec" + "guid": "df3f9c81-1463-422e-98e9-d3a1ea777b3c" } } } @@ -46083,7 +46095,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "228cea15-d48f-4304-bc6f-c28a5be86d1e" + "guid": "3d7b08bd-0e18-48e1-a020-ab1e9dbdf48e" } }, "Example 2": { @@ -46097,7 +46109,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "ccb18f01-a32f-4f13-913c-2f046e07243f" + "guid": "c387e4bd-69bd-47b9-9f79-dc82722c12b4" } } } @@ -46112,7 +46124,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "228cea15-d48f-4304-bc6f-c28a5be86d1e" + "guid": "3d7b08bd-0e18-48e1-a020-ab1e9dbdf48e" } }, "Example 2": { @@ -46126,7 +46138,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "ccb18f01-a32f-4f13-913c-2f046e07243f" + "guid": "c387e4bd-69bd-47b9-9f79-dc82722c12b4" } } } @@ -46141,7 +46153,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "228cea15-d48f-4304-bc6f-c28a5be86d1e" + "guid": "3d7b08bd-0e18-48e1-a020-ab1e9dbdf48e" } }, "Example 2": { @@ -46155,7 +46167,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "ccb18f01-a32f-4f13-913c-2f046e07243f" + "guid": "c387e4bd-69bd-47b9-9f79-dc82722c12b4" } } } @@ -46170,7 +46182,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "228cea15-d48f-4304-bc6f-c28a5be86d1e" + "guid": "3d7b08bd-0e18-48e1-a020-ab1e9dbdf48e" } }, "Example 2": { @@ -46184,7 +46196,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "ccb18f01-a32f-4f13-913c-2f046e07243f" + "guid": "c387e4bd-69bd-47b9-9f79-dc82722c12b4" } } } @@ -46643,8 +46655,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "3e69bb78-d62b-4184-ac81-0a994466b587", - "7228c23a-8ef3-45f1-b3a7-d3727ec3591f" + "9092a0d9-a533-493b-8353-55cc40b970ef", + "7c853d59-b55f-4aeb-b793-caa896cd71ee" ], "type": "recordListMember" }, @@ -47432,8 +47444,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "3e69bb78-d62b-4184-ac81-0a994466b587", - "7228c23a-8ef3-45f1-b3a7-d3727ec3591f" + "9092a0d9-a533-493b-8353-55cc40b970ef", + "7c853d59-b55f-4aeb-b793-caa896cd71ee" ], "type": "recordListMember" }, @@ -48221,8 +48233,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "3e69bb78-d62b-4184-ac81-0a994466b587", - "7228c23a-8ef3-45f1-b3a7-d3727ec3591f" + "9092a0d9-a533-493b-8353-55cc40b970ef", + "7c853d59-b55f-4aeb-b793-caa896cd71ee" ], "type": "recordListMember" }, @@ -49010,8 +49022,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "3e69bb78-d62b-4184-ac81-0a994466b587", - "7228c23a-8ef3-45f1-b3a7-d3727ec3591f" + "9092a0d9-a533-493b-8353-55cc40b970ef", + "7c853d59-b55f-4aeb-b793-caa896cd71ee" ], "type": "recordListMember" }, @@ -49877,8 +49889,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9e397f54-e991-4859-a863-c8eb75bacd6c", - "cb2c90f3-4a5c-403a-a803-5501f15bf6a5" + "0ae29b99-6a77-4f9e-bf0c-f884099cb4e7", + "02fb4d35-61a7-417a-86f0-61c9bfbfe71b" ], "type": "recordListMember" }, @@ -50666,8 +50678,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9e397f54-e991-4859-a863-c8eb75bacd6c", - "cb2c90f3-4a5c-403a-a803-5501f15bf6a5" + "0ae29b99-6a77-4f9e-bf0c-f884099cb4e7", + "02fb4d35-61a7-417a-86f0-61c9bfbfe71b" ], "type": "recordListMember" }, @@ -51455,8 +51467,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9e397f54-e991-4859-a863-c8eb75bacd6c", - "cb2c90f3-4a5c-403a-a803-5501f15bf6a5" + "0ae29b99-6a77-4f9e-bf0c-f884099cb4e7", + "02fb4d35-61a7-417a-86f0-61c9bfbfe71b" ], "type": "recordListMember" }, @@ -52244,8 +52256,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9e397f54-e991-4859-a863-c8eb75bacd6c", - "cb2c90f3-4a5c-403a-a803-5501f15bf6a5" + "0ae29b99-6a77-4f9e-bf0c-f884099cb4e7", + "02fb4d35-61a7-417a-86f0-61c9bfbfe71b" ], "type": "recordListMember" }, @@ -53102,8 +53114,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "24e60299-e64f-445e-b0aa-e5bbf65600e3", - "7e46f6e6-25d1-4025-973e-8c2814eaa069" + "3b663b3f-8fb1-4f6d-af83-7fc077b493c5", + "5f7f2a04-d87e-4fe8-bdac-33ba8e36294a" ], "type": "recordListMember" }, @@ -53891,8 +53903,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "24e60299-e64f-445e-b0aa-e5bbf65600e3", - "7e46f6e6-25d1-4025-973e-8c2814eaa069" + "3b663b3f-8fb1-4f6d-af83-7fc077b493c5", + "5f7f2a04-d87e-4fe8-bdac-33ba8e36294a" ], "type": "recordListMember" }, @@ -54680,8 +54692,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "24e60299-e64f-445e-b0aa-e5bbf65600e3", - "7e46f6e6-25d1-4025-973e-8c2814eaa069" + "3b663b3f-8fb1-4f6d-af83-7fc077b493c5", + "5f7f2a04-d87e-4fe8-bdac-33ba8e36294a" ], "type": "recordListMember" }, @@ -55469,8 +55481,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "24e60299-e64f-445e-b0aa-e5bbf65600e3", - "7e46f6e6-25d1-4025-973e-8c2814eaa069" + "3b663b3f-8fb1-4f6d-af83-7fc077b493c5", + "5f7f2a04-d87e-4fe8-bdac-33ba8e36294a" ], "type": "recordListMember" }, @@ -56303,8 +56315,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "123ad267-6884-4a54-ae5a-5694cf6bec23", - "c198a36b-0c37-43aa-9597-19726961f7a5" + "0e205e6f-00ea-44d9-aeda-46377f66ee4e", + "f1acc6e5-d4e2-45fb-8564-b6b6c7d0d3c9" ], "type": "recordListMember" }, @@ -57092,8 +57104,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "123ad267-6884-4a54-ae5a-5694cf6bec23", - "c198a36b-0c37-43aa-9597-19726961f7a5" + "0e205e6f-00ea-44d9-aeda-46377f66ee4e", + "f1acc6e5-d4e2-45fb-8564-b6b6c7d0d3c9" ], "type": "recordListMember" }, @@ -57881,8 +57893,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "123ad267-6884-4a54-ae5a-5694cf6bec23", - "c198a36b-0c37-43aa-9597-19726961f7a5" + "0e205e6f-00ea-44d9-aeda-46377f66ee4e", + "f1acc6e5-d4e2-45fb-8564-b6b6c7d0d3c9" ], "type": "recordListMember" }, @@ -58670,8 +58682,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "123ad267-6884-4a54-ae5a-5694cf6bec23", - "c198a36b-0c37-43aa-9597-19726961f7a5" + "0e205e6f-00ea-44d9-aeda-46377f66ee4e", + "f1acc6e5-d4e2-45fb-8564-b6b6c7d0d3c9" ], "type": "recordListMember" }, @@ -60190,6 +60202,14 @@ "type": "string", "nullable": true }, + "axisNameDisplayNames": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "nullable": true + }, "helpPath": { "type": "string", "nullable": true @@ -72394,6 +72414,18 @@ "type": "boolean", "nullable": true }, + "axisName": { + "type": "string", + "nullable": true + }, + "axisNameDisplayNames": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "nullable": true + }, "info": { "$ref": "#/components/schemas/GsaQueryAttributeInfo" }, @@ -72430,6 +72462,14 @@ }, "nullable": true }, + "displayNames": { + "type": "object", + "additionalProperties": { + "type": "string", + "nullable": true + }, + "nullable": true + }, "name": { "type": "string", "nullable": true @@ -72530,6 +72570,14 @@ "description": "For a Granta.Server.Api.AttributeType.FloatFunctional attribute, whether the value for this attribute is ranged.\r\nFor other attribute types, returns null", "nullable": true }, + "axisName": { + "type": "boolean", + "nullable": true + }, + "axisNameDisplayNames": { + "type": "boolean", + "nullable": true + }, "info": { "$ref": "#/components/schemas/GsaQueryAttributeInfoProperties" }, @@ -72554,6 +72602,10 @@ "expressions": { "$ref": "#/components/schemas/GsaQuerySlimNamedEntityProperties" }, + "displayNames": { + "type": "boolean", + "nullable": true + }, "name": { "type": "boolean", "nullable": true