From 5b6695b1a56df81b5b782241f1fb5383528aa647 Mon Sep 17 00:00:00 2001 From: PyAnsys CI Bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Sun, 15 Dec 2024 11:48:48 +0100 Subject: [PATCH] Update Swagger.json (12324701776) (#280) Co-authored-by: pyansys-ci-bot --- .../pyproject.toml | 2 +- .../api/schema___attributes_api.py | 121 ++ .../models/gsa_create_attribute.py | 33 - .../models/gsa_create_date_time_attribute.py | 5 - .../models/gsa_create_discrete_attribute.py | 5 - ...sa_create_discrete_functional_attribute.py | 5 - .../models/gsa_create_file_attribute.py | 5 - .../gsa_create_float_functional_attribute.py | 5 - .../models/gsa_create_hyperlink_attribute.py | 5 - .../models/gsa_create_integer_attribute.py | 5 - .../models/gsa_create_logical_attribute.py | 5 - .../models/gsa_create_long_text_attribute.py | 5 - .../gsa_create_maths_functional_attribute.py | 5 - .../models/gsa_create_picture_attribute.py | 5 - .../models/gsa_create_point_attribute.py | 5 - .../models/gsa_create_range_attribute.py | 5 - .../models/gsa_create_short_text_attribute.py | 5 - .../models/gsa_create_tabular_attribute.py | 5 - yaml/server-api.json | 1441 ++++++++++------- 19 files changed, 989 insertions(+), 683 deletions(-) diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index 9fd5ea53..150c3b22 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.dev358" +version = "4.0.0.dev362" license = "MIT" authors = ["ANSYS, Inc. "] maintainers = ["ANSYS, Inc. "] diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/schema___attributes_api.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/schema___attributes_api.py index 3338c6bb..971fd7b5 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/schema___attributes_api.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/schema___attributes_api.py @@ -154,6 +154,127 @@ def _create_attribute_with_http_info( response_type_map=response_type_map, ) + def create_meta_attribute( + self, + *, + database_key: "str", + table_guid: "str", + attribute_guid: "str", + body: "Optional[GsaCreateAttribute]" = None, + ) -> "Union[GsaAttribute, None]": + """Create a new meta-attribute for attribute. + + This method makes a synchronous HTTP request. + + Parameters + ---------- + database_key: str + table_guid: str + attribute_guid: str + body: GsaCreateAttribute + + Returns + ------- + Union[GsaAttribute, None] + """ + data = self._create_meta_attribute_with_http_info( + database_key, table_guid, attribute_guid, body, _return_http_data_only=True + ) + return data # type: ignore[no-any-return] + + def _create_meta_attribute_with_http_info( + self, + database_key: "str", + table_guid: "str", + attribute_guid: "str", + body: "Optional[GsaCreateAttribute]" = None, + **kwargs: Any, + ) -> Any: + all_params = [ + "database_key", + "table_guid", + "attribute_guid", + "body", + "_return_http_data_only", + "_preload_content", + "_request_timeout", + ] + + params = locals() + for key, val in params["kwargs"].items(): + if key not in all_params: + raise TypeError( + f"Got an unexpected keyword argument '{key}' to method create_meta_attribute" + ) + params[key] = val + del params["kwargs"] + # verify the required parameter "database_key" is set + if "database_key" not in params or params["database_key"] is None: + raise ValueError( + "Missing the required parameter 'database_key' when calling 'create_meta_attribute'" + ) + # verify the required parameter "table_guid" is set + if "table_guid" not in params or params["table_guid"] is None: + raise ValueError( + "Missing the required parameter 'table_guid' when calling 'create_meta_attribute'" + ) + # verify the required parameter "attribute_guid" is set + if "attribute_guid" not in params or params["attribute_guid"] is None: + raise ValueError( + "Missing the required parameter 'attribute_guid' when calling 'create_meta_attribute'" + ) + + collection_formats: dict[str, Any] = {} + + path_params: dict[str, Any] = {} + if "database_key" in params and database_key is not None: + path_params["database-key"] = params["database_key"] + if "table_guid" in params and table_guid is not None: + path_params["table-guid"] = params["table_guid"] + if "attribute_guid" in params and attribute_guid is not None: + path_params["attribute-guid"] = params["attribute_guid"] + + query_params: list[Any] = [] + + header_params: dict[str, Any] = {} + + form_params: list[Any] = [] + local_var_files: dict[str, Any] = {} + + body_params = None + if "body" in params and body is not None: + body_params = params["body"] + # HTTP header 'Accept' + header_params["Accept"] = self.api_client.select_header_accept(["application/json"]) + + # HTTP header 'Content-Type' + header_params["Content-Type"] = self.api_client.select_header_content_type( + ["application/json-patch+json", "application/json", "text/json", "application/*+json"] + ) + + response_type_map: dict[int, Optional[str]] = { + 201: "GsaAttribute", + 400: None, + 403: None, + 404: None, + } + + return self.api_client.call_api( + "/v1alpha/databases/{database-key}/tables/{table-guid}/attributes/{attribute-guid}/meta-attributes", + "POST", + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + _return_http_data_only=params.get("_return_http_data_only"), + _preload_content=params.get("_preload_content", True), + _request_timeout=params.get("_request_timeout"), + collection_formats=collection_formats, + response_type_map=response_type_map, + ) + def delete_attribute( self, *, database_key: "str", table_guid: "str", attribute_guid: "str" ) -> "Union[GsaAttributeDeletionException, None]": diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_attribute.py index e0ccd809..da056622 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_attribute.py @@ -65,7 +65,6 @@ class GsaCreateAttribute(ModelBase): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -75,7 +74,6 @@ class GsaCreateAttribute(ModelBase): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -85,7 +83,6 @@ class GsaCreateAttribute(ModelBase): subtype_mapping: dict[str, str] = { "type": "GsaAttributeType", "defaultThresholdType": "GsaAttributeThresholdType", - "aboutAttribute": "GsaSlimEntity", } discriminator_value_class_map = { @@ -113,7 +110,6 @@ def __init__( *, name: "str", type: "GsaAttributeType", - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -125,7 +121,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -134,7 +129,6 @@ def __init__( self._type: GsaAttributeType self._default_threshold_type: Union[GsaAttributeThresholdType, Unset_Type] = Unset self._help_path: Union[str, None, Unset_Type] = Unset - self._about_attribute: Union[GsaSlimEntity, Unset_Type] = Unset self._is_hidden_from_search_criteria: Union[bool, None, Unset_Type] = Unset self._name: str self._guid: Union[str, Unset_Type] = Unset @@ -144,8 +138,6 @@ def __init__( self.default_threshold_type = default_threshold_type if help_path is not Unset: self.help_path = help_path - if about_attribute is not Unset: - self.about_attribute = about_attribute if is_hidden_from_search_criteria is not Unset: self.is_hidden_from_search_criteria = is_hidden_from_search_criteria self.name = name @@ -229,31 +221,6 @@ def help_path(self, help_path: "Union[str, None, Unset_Type]") -> None: """ self._help_path = help_path - @property - def about_attribute(self) -> "Union[GsaSlimEntity, Unset_Type]": - """Gets the about_attribute of this GsaCreateAttribute. - - Returns - ------- - Union[GsaSlimEntity, Unset_Type] - The about_attribute of this GsaCreateAttribute. - """ - return self._about_attribute - - @about_attribute.setter - def about_attribute(self, about_attribute: "Union[GsaSlimEntity, Unset_Type]") -> None: - """Sets the about_attribute of this GsaCreateAttribute. - - Parameters - ---------- - about_attribute: Union[GsaSlimEntity, Unset_Type] - The about_attribute of this GsaCreateAttribute. - """ - # Field is not nullable - if about_attribute is None: - raise ValueError("Invalid value for 'about_attribute', must not be 'None'") - self._about_attribute = about_attribute - @property def is_hidden_from_search_criteria(self) -> "Union[bool, None, Unset_Type]": """Gets the is_hidden_from_search_criteria of this GsaCreateAttribute. diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_date_time_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_date_time_attribute.py index 82b93839..ece042d9 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_date_time_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_date_time_attribute.py @@ -68,7 +68,6 @@ class GsaCreateDateTimeAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -78,7 +77,6 @@ class GsaCreateDateTimeAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -94,7 +92,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.DATETIME, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -106,7 +103,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -115,7 +111,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_attribute.py index 54014412..37803e1b 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_attribute.py @@ -69,7 +69,6 @@ class GsaCreateDiscreteAttribute(GsaCreateAttribute): "discrete_type": "GsaSlimEntity", "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -81,7 +80,6 @@ class GsaCreateDiscreteAttribute(GsaCreateAttribute): "discrete_type": "discreteType", "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -101,7 +99,6 @@ def __init__( discrete_type: "GsaSlimEntity", name: "str", type: "GsaAttributeType" = GsaAttributeType.DISCRETE, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -115,7 +112,6 @@ def __init__( discrete_type: GsaSlimEntity name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -125,7 +121,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_functional_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_functional_attribute.py index ffdc4013..bb33319b 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_functional_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_discrete_functional_attribute.py @@ -70,7 +70,6 @@ class GsaCreateDiscreteFunctionalAttribute(GsaCreateAttribute): "discrete_type": "GsaSlimEntity", "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -82,7 +81,6 @@ class GsaCreateDiscreteFunctionalAttribute(GsaCreateAttribute): "discrete_type": "discreteType", "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -103,7 +101,6 @@ def __init__( discrete_type: "GsaSlimEntity", name: "str", type: "GsaAttributeType" = GsaAttributeType.DISCRETEFUNCTIONAL, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -117,7 +114,6 @@ def __init__( discrete_type: GsaSlimEntity name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -126,7 +122,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_file_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_file_attribute.py index e9caf479..1e09b3b6 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_file_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_file_attribute.py @@ -68,7 +68,6 @@ class GsaCreateFileAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -78,7 +77,6 @@ class GsaCreateFileAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -94,7 +92,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.FILE, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -106,7 +103,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -115,7 +111,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_float_functional_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_float_functional_attribute.py index 95b7a9a2..8d9ebea8 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_float_functional_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_float_functional_attribute.py @@ -69,7 +69,6 @@ class GsaCreateFloatFunctionalAttribute(GsaCreateAttribute): "attribute_parameters": "list[GsaCreateFloatFunctionalAttributeParameter]", "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "axis_name": "str", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", @@ -83,7 +82,6 @@ class GsaCreateFloatFunctionalAttribute(GsaCreateAttribute): "attribute_parameters": "attributeParameters", "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "axis_name": "axisName", "default_threshold_type": "defaultThresholdType", "guid": "guid", @@ -106,7 +104,6 @@ def __init__( attribute_parameters: "list[GsaCreateFloatFunctionalAttributeParameter]", name: "str", type: "GsaAttributeType" = GsaAttributeType.FLOATFUNCTIONAL, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, @@ -122,7 +119,6 @@ def __init__( attribute_parameters: list[GsaCreateFloatFunctionalAttributeParameter] name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional axis_name: str, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional @@ -134,7 +130,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_hyperlink_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_hyperlink_attribute.py index 23127ca2..eb3da7d9 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_hyperlink_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_hyperlink_attribute.py @@ -68,7 +68,6 @@ class GsaCreateHyperlinkAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -78,7 +77,6 @@ class GsaCreateHyperlinkAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -94,7 +92,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.HYPERLINK, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -106,7 +103,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -115,7 +111,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_integer_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_integer_attribute.py index aec6c2e2..2ad74e15 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_integer_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_integer_attribute.py @@ -68,7 +68,6 @@ class GsaCreateIntegerAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "axis_name": "str", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", @@ -80,7 +79,6 @@ class GsaCreateIntegerAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "axis_name": "axisName", "default_threshold_type": "defaultThresholdType", "guid": "guid", @@ -98,7 +96,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.INTEGER, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, @@ -112,7 +109,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional axis_name: str, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional @@ -123,7 +119,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_logical_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_logical_attribute.py index 4a46cc06..d4904496 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_logical_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_logical_attribute.py @@ -68,7 +68,6 @@ class GsaCreateLogicalAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -78,7 +77,6 @@ class GsaCreateLogicalAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -94,7 +92,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.LOGICAL, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -106,7 +103,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -115,7 +111,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_long_text_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_long_text_attribute.py index 2fc0c8fc..7ce37ce2 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_long_text_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_long_text_attribute.py @@ -68,7 +68,6 @@ class GsaCreateLongTextAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -78,7 +77,6 @@ class GsaCreateLongTextAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -94,7 +92,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.LONGTEXT, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -106,7 +103,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -115,7 +111,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_maths_functional_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_maths_functional_attribute.py index 2abcba53..a7f5980d 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_maths_functional_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_maths_functional_attribute.py @@ -68,7 +68,6 @@ class GsaCreateMathsFunctionalAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "allow_all_compatible_expressions": "bool", "allow_anonymous_expressions": "bool", "allow_extrapolation": "bool", @@ -87,7 +86,6 @@ class GsaCreateMathsFunctionalAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "allow_all_compatible_expressions": "allowAllCompatibleExpressions", "allow_anonymous_expressions": "allowAnonymousExpressions", "allow_extrapolation": "allowExtrapolation", @@ -117,7 +115,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.MATHSFUNCTIONAL, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, allow_all_compatible_expressions: "Union[bool, Unset_Type]" = Unset, allow_anonymous_expressions: "Union[bool, Unset_Type]" = Unset, allow_extrapolation: "Union[bool, Unset_Type]" = Unset, @@ -138,7 +135,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional allow_all_compatible_expressions: bool, optional allow_anonymous_expressions: bool, optional allow_extrapolation: bool, optional @@ -156,7 +152,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_picture_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_picture_attribute.py index 42299a12..778f4155 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_picture_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_picture_attribute.py @@ -68,7 +68,6 @@ class GsaCreatePictureAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", "help_path": "str", @@ -78,7 +77,6 @@ class GsaCreatePictureAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "guid": "guid", "help_path": "helpPath", @@ -94,7 +92,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.PICTURE, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, help_path: "Union[str, None, Unset_Type]" = Unset, @@ -106,7 +103,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional help_path: str, optional @@ -115,7 +111,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_point_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_point_attribute.py index f20c45f9..5a69a0a8 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_point_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_point_attribute.py @@ -68,7 +68,6 @@ class GsaCreatePointAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "attribute_parameters": "list[GsaSlimEntity]", "axis_name": "str", "default_threshold_type": "GsaAttributeThresholdType", @@ -82,7 +81,6 @@ class GsaCreatePointAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "attribute_parameters": "attributeParameters", "axis_name": "axisName", "default_threshold_type": "defaultThresholdType", @@ -105,7 +103,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.POINT, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, attribute_parameters: "Union[list[GsaSlimEntity], None, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, @@ -121,7 +118,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional attribute_parameters: list[GsaSlimEntity], optional axis_name: str, optional default_threshold_type: GsaAttributeThresholdType, optional @@ -134,7 +130,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_range_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_range_attribute.py index 788e9db3..950b519a 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_range_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_range_attribute.py @@ -68,7 +68,6 @@ class GsaCreateRangeAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "axis_name": "str", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", @@ -80,7 +79,6 @@ class GsaCreateRangeAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "axis_name": "axisName", "default_threshold_type": "defaultThresholdType", "guid": "guid", @@ -100,7 +98,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.RANGE, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, axis_name: "Union[str, None, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, @@ -114,7 +111,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional axis_name: str, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional @@ -125,7 +121,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_short_text_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_short_text_attribute.py index 17df3cfe..cda2b010 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_short_text_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_short_text_attribute.py @@ -68,7 +68,6 @@ class GsaCreateShortTextAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "data_rule": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "guid": "str", @@ -80,7 +79,6 @@ class GsaCreateShortTextAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "data_rule": "dataRule", "default_threshold_type": "defaultThresholdType", "guid": "guid", @@ -100,7 +98,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.SHORTTEXT, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, data_rule: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, guid: "Union[str, Unset_Type]" = Unset, @@ -114,7 +111,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional data_rule: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional guid: str, optional @@ -125,7 +121,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_tabular_attribute.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_tabular_attribute.py index 4b81a66e..41bb4ff9 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_tabular_attribute.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_create_tabular_attribute.py @@ -68,7 +68,6 @@ class GsaCreateTabularAttribute(GsaCreateAttribute): swagger_types: dict[str, str] = { "name": "str", "type": "GsaAttributeType", - "about_attribute": "GsaSlimEntity", "default_threshold_type": "GsaAttributeThresholdType", "display_full_table": "bool", "display_summary_row_inline": "bool", @@ -83,7 +82,6 @@ class GsaCreateTabularAttribute(GsaCreateAttribute): attribute_map: dict[str, str] = { "name": "name", "type": "type", - "about_attribute": "aboutAttribute", "default_threshold_type": "defaultThresholdType", "display_full_table": "displayFullTable", "display_summary_row_inline": "displaySummaryRowInline", @@ -107,7 +105,6 @@ def __init__( *, name: "str", type: "GsaAttributeType" = GsaAttributeType.LINK, - about_attribute: "Union[GsaSlimEntity, Unset_Type]" = Unset, default_threshold_type: "Union[GsaAttributeThresholdType, Unset_Type]" = Unset, display_full_table: "Union[bool, Unset_Type]" = Unset, display_summary_row_inline: "Union[bool, Unset_Type]" = Unset, @@ -124,7 +121,6 @@ def __init__( ---------- name: str type: GsaAttributeType - about_attribute: GsaSlimEntity, optional default_threshold_type: GsaAttributeThresholdType, optional display_full_table: bool, optional display_summary_row_inline: bool, optional @@ -138,7 +134,6 @@ def __init__( super().__init__( name=name, type=type, - about_attribute=about_attribute, default_threshold_type=default_threshold_type, guid=guid, help_path=help_path, diff --git a/yaml/server-api.json b/yaml/server-api.json index 03eccf5e..5f89c725 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -170,7 +170,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", + "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -196,7 +196,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", + "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -228,7 +228,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", + "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -390,7 +390,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", + "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -416,7 +416,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", + "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -448,7 +448,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", + "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -610,7 +610,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", + "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -636,7 +636,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", + "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -668,7 +668,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", + "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -830,7 +830,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", + "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -856,7 +856,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", + "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -888,7 +888,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", + "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1131,7 +1131,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", + "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1157,7 +1157,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", + "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1189,7 +1189,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", + "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1351,7 +1351,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", + "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1377,7 +1377,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", + "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1409,7 +1409,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", + "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1571,7 +1571,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", + "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1597,7 +1597,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", + "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1629,7 +1629,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", + "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1791,7 +1791,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", + "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1817,7 +1817,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", + "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1849,7 +1849,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", + "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2083,7 +2083,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", + "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2109,7 +2109,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", + "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2141,7 +2141,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", + "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2303,7 +2303,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", + "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2329,7 +2329,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", + "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2361,7 +2361,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", + "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2523,7 +2523,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", + "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2549,7 +2549,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", + "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2581,7 +2581,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", + "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2743,7 +2743,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", + "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2769,7 +2769,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", + "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2801,7 +2801,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", + "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3011,7 +3011,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", + "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3037,7 +3037,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", + "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3069,7 +3069,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", + "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3231,7 +3231,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", + "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3257,7 +3257,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", + "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3289,7 +3289,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", + "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3451,7 +3451,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", + "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3477,7 +3477,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", + "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3509,7 +3509,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", + "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3671,7 +3671,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", + "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3697,7 +3697,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", + "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3729,7 +3729,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", + "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", "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-11T08:01:24.8863164+00:00" + "value": "2024-12-13T23:49:48.4489709+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-11T08:01:24.8863164+00:00" + "value": "2024-12-13T23:49:48.4489709+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-11T08:01:24.8863164+00:00" + "value": "2024-12-13T23:49:48.4489709+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-11T08:01:24.8863164+00:00" + "value": "2024-12-13T23:49:48.4489709+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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-11T08:01:24.9019417+00:00" + "value": "2024-12-13T23:49:48.4645784+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": [ - "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" + "bad8afd0-be29-498e-86f8-984659d2c686" ], "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": [ - "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" + "bad8afd0-be29-498e-86f8-984659d2c686" ], "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": [ - "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" + "bad8afd0-be29-498e-86f8-984659d2c686" ], "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": [ - "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" + "bad8afd0-be29-498e-86f8-984659d2c686" ], "listActionsToInclude": [ "ItemAdded", @@ -18774,7 +18774,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" + "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" } }, "Example 4": { @@ -18836,7 +18836,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" + "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" } }, "Example 4": { @@ -18898,7 +18898,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" + "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" } }, "Example 4": { @@ -18960,7 +18960,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" + "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" } }, "Example 4": { @@ -19015,11 +19015,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "be061fe5-4346-4528-84c7-7b181ca23712" + "guid": "c33332af-c520-4e22-b6b8-6851864f3c71" } ], "subsets": [], - "guid": "f0e544b3-aa42-4711-8de0-4d59287c3536" + "guid": "44971967-f993-447d-be64-1b3bfc6a1b92" } } } @@ -19740,7 +19740,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "2eeff989-8bc1-49cb-a262-af1c9d0b8d9b" + "guid": "cc7d206c-3b8c-4f2c-8510-a4ec27650048" } } } @@ -20026,7 +20026,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "b217fc90-5e03-4407-aa05-5ede509eea68" + "guid": "403c3b09-e63a-4404-b7cb-d7506ab29bcf" } } } @@ -20593,7 +20593,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID '8ea97302-509f-4bb5-886e-ae007a08cae5'.", + "message": "Cannot release record version with GUID '640cfa2b-5757-46a7-bb2e-e64f0327719f'.", "code": 400, "errors": [ { @@ -20738,7 +20738,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID '9fc5df73-f78a-4ffc-8fef-ba1a4ccb3aa4'.", + "message": "Cannot create a new version from the record version with GUID '19f02304-80f2-4ad0-9304-e6115d71f4b4'.", "code": 400, "errors": [ { @@ -20748,7 +20748,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "d1cffb3c-eb0a-468a-bf86-8c0584d22ecf" + "guid": "c20a6ad6-4a1b-4c03-9265-949b7f74f442" } } ] @@ -21058,7 +21058,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" + "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" } }, "Example 3": { @@ -21255,19 +21255,6 @@ } }, "Example 21": { - "summary": "Short text meta-attribute", - "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute in the MaterialUniverse (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database. Any attribute type can be used for meta-attributes.", - "value": { - "type": "shortText", - "isUnique": false, - "defaultThresholdType": "exists", - "aboutAttribute": { - "guid": "000000b9-0001-4fff-8fff-dd92ffff0000" - }, - "name": "Short Label" - } - }, - "Example 22": { "summary": "Float functional attribute", "description": "This example demonstrates how to create a new float functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21291,7 +21278,7 @@ "name": "Electrical resistance with temperature" } }, - "Example 23": { + "Example 22": { "summary": "Discrete functional attribute", "description": "This example demonstrates how to create a new discrete functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21311,7 +21298,7 @@ "name": "Environmental resistance" } }, - "Example 24": { + "Example 23": { "summary": "Maths functional attribute", "description": "This example demonstrates how to create a new maths functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21397,7 +21384,7 @@ "name": "Fatigue strength model" } }, - "Example 25": { + "Example 24": { "summary": "Tabular attribute", "description": "This example demonstrates how to create a new tabular attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21471,7 +21458,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" + "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" } }, "Example 3": { @@ -21668,19 +21655,6 @@ } }, "Example 21": { - "summary": "Short text meta-attribute", - "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute in the MaterialUniverse (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database. Any attribute type can be used for meta-attributes.", - "value": { - "type": "shortText", - "isUnique": false, - "defaultThresholdType": "exists", - "aboutAttribute": { - "guid": "000000b9-0001-4fff-8fff-dd92ffff0000" - }, - "name": "Short Label" - } - }, - "Example 22": { "summary": "Float functional attribute", "description": "This example demonstrates how to create a new float functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21704,7 +21678,7 @@ "name": "Electrical resistance with temperature" } }, - "Example 23": { + "Example 22": { "summary": "Discrete functional attribute", "description": "This example demonstrates how to create a new discrete functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21724,7 +21698,7 @@ "name": "Environmental resistance" } }, - "Example 24": { + "Example 23": { "summary": "Maths functional attribute", "description": "This example demonstrates how to create a new maths functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21810,7 +21784,7 @@ "name": "Fatigue strength model" } }, - "Example 25": { + "Example 24": { "summary": "Tabular attribute", "description": "This example demonstrates how to create a new tabular attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -21884,7 +21858,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" + "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" } }, "Example 3": { @@ -22081,19 +22055,6 @@ } }, "Example 21": { - "summary": "Short text meta-attribute", - "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute in the MaterialUniverse (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database. Any attribute type can be used for meta-attributes.", - "value": { - "type": "shortText", - "isUnique": false, - "defaultThresholdType": "exists", - "aboutAttribute": { - "guid": "000000b9-0001-4fff-8fff-dd92ffff0000" - }, - "name": "Short Label" - } - }, - "Example 22": { "summary": "Float functional attribute", "description": "This example demonstrates how to create a new float functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22117,7 +22078,7 @@ "name": "Electrical resistance with temperature" } }, - "Example 23": { + "Example 22": { "summary": "Discrete functional attribute", "description": "This example demonstrates how to create a new discrete functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22137,7 +22098,7 @@ "name": "Environmental resistance" } }, - "Example 24": { + "Example 23": { "summary": "Maths functional attribute", "description": "This example demonstrates how to create a new maths functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22223,7 +22184,7 @@ "name": "Fatigue strength model" } }, - "Example 25": { + "Example 24": { "summary": "Tabular attribute", "description": "This example demonstrates how to create a new tabular attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22297,7 +22258,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" + "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" } }, "Example 3": { @@ -22494,19 +22455,6 @@ } }, "Example 21": { - "summary": "Short text meta-attribute", - "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute in the MaterialUniverse (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database. Any attribute type can be used for meta-attributes.", - "value": { - "type": "shortText", - "isUnique": false, - "defaultThresholdType": "exists", - "aboutAttribute": { - "guid": "000000b9-0001-4fff-8fff-dd92ffff0000" - }, - "name": "Short Label" - } - }, - "Example 22": { "summary": "Float functional attribute", "description": "This example demonstrates how to create a new float functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22530,7 +22478,7 @@ "name": "Electrical resistance with temperature" } }, - "Example 23": { + "Example 22": { "summary": "Discrete functional attribute", "description": "This example demonstrates how to create a new discrete functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22550,7 +22498,7 @@ "name": "Environmental resistance" } }, - "Example 24": { + "Example 23": { "summary": "Maths functional attribute", "description": "This example demonstrates how to create a new maths functional attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22636,7 +22584,7 @@ "name": "Fatigue strength model" } }, - "Example 25": { + "Example 24": { "summary": "Tabular attribute", "description": "This example demonstrates how to create a new tabular attribute for the 'MaterialUniverse' table (GUID = '0000dd92-0011-4fff-8fff-0000ffff0000') from the MI_Training database.", "value": { @@ -22797,7 +22745,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "e11193ec-28b5-4522-9768-3e9b4a02d3c5" + "guid": "94926af4-97c0-4761-be08-9f0c198a549f" } ], "primaryDynamicLinkGroups": [], @@ -23099,7 +23047,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "18286ec1-a465-4a82-aa0b-bafc3ddb63d2" + "guid": "7890f32f-f564-44d1-bc96-e90ee5eb7fd0" } ], "primaryDynamicLinkGroups": [], @@ -24369,7 +24317,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "234fd78a-fce8-4667-a7df-39820cba512a" + "guid": "5d9490da-63cd-49aa-93ef-3f9ad2d30f19" } ], "primaryDynamicLinkGroups": [], @@ -24816,7 +24764,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "f9ab6d2a-896d-4dde-bd1a-8c0af371bd38" + "guid": "a6a79b3d-a7b6-40ec-b518-239053415a94" } ], "primaryDynamicLinkGroups": [], @@ -25278,7 +25226,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "1e0b4b4b-387f-49b4-b70d-bd8f083d8f7c" + "guid": "ee6acaaa-c4b9-4d3c-a9a1-cc432027b92d" } ], "primaryDynamicLinkGroups": [], @@ -25457,7 +25405,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute 'Notes' (GUID = '2834e9c8-49fd-41d8-b2c7-63e712b7df8f').", + "message": "Cannot delete attribute 'Notes' (GUID = 'bf8612dd-02d0-46ce-b3a4-c20aa168d4ee').", "code": 400, "errors": [ { @@ -25472,7 +25420,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "cf0b5acc-7c75-4a66-8418-54a8ae5b3948" + "guid": "a257a466-ebb9-4a35-910c-cdabd3f01563" } ] } @@ -25567,6 +25515,354 @@ "description": "Database, table or attribute not found" } } + }, + "post": { + "tags": [ + "Schema - Attributes" + ], + "summary": "Create a new meta-attribute for attribute.", + "operationId": "CreateMetaAttribute", + "parameters": [ + { + "name": "database-key", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "table-guid", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "attribute-guid", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GsaCreateAttribute" + }, + "examples": { + "Example 1": { + "summary": "Short text meta-attribute", + "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute (GUID = 000000b9-0001-4fff-8fff-dd92ffff0000 ) in the MaterialUniverse (GUID = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database.", + "value": { + "type": "shortText", + "isUnique": false, + "defaultThresholdType": "exists", + "name": "Short Label" + } + } + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GsaCreateAttribute" + }, + "examples": { + "Example 1": { + "summary": "Short text meta-attribute", + "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute (GUID = 000000b9-0001-4fff-8fff-dd92ffff0000 ) in the MaterialUniverse (GUID = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database.", + "value": { + "type": "shortText", + "isUnique": false, + "defaultThresholdType": "exists", + "name": "Short Label" + } + } + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GsaCreateAttribute" + }, + "examples": { + "Example 1": { + "summary": "Short text meta-attribute", + "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute (GUID = 000000b9-0001-4fff-8fff-dd92ffff0000 ) in the MaterialUniverse (GUID = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database.", + "value": { + "type": "shortText", + "isUnique": false, + "defaultThresholdType": "exists", + "name": "Short Label" + } + } + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GsaCreateAttribute" + }, + "examples": { + "Example 1": { + "summary": "Short text meta-attribute", + "description": "This example demonstrates how to create a short text meta-attribute for the existing 'EPS Value' attribute (GUID = 000000b9-0001-4fff-8fff-dd92ffff0000 ) in the MaterialUniverse (GUID = 0000dd92-0011-4fff-8fff-0000ffff0000) table of the MI_Training database.", + "value": { + "type": "shortText", + "isUnique": false, + "defaultThresholdType": "exists", + "name": "Short Label" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GsaAttribute" + }, + "examples": { + "Example 25": { + "summary": "Date-time attribute", + "description": "Example response for the date-time attribute 'Casting Date' in the 'Metals Pedigree' table of the 'MI Training database'.", + "value": { + "defaultThresholdType": "atLeast", + "info": { + "typeCode": "DAT", + "chartable": false, + "expressionable": false, + "linkable": true, + "extendedName": "Casting Date", + "isMetaAttribute": false, + "orderedMetaAttributes": [], + "primaryDataLinkGroups": [], + "foreignDataLinkGroups": [], + "primaryDynamicLinkGroups": [], + "foreignDynamicLinkGroups": [] + }, + "type": "dateTime", + "isHiddenFromSearchCriteria": false, + "table": { + "guid": "ad27baf0-42e9-4136-bc96-9dbbf116e265" + }, + "displayNames": { + "fr": "Casting Date French Display Name" + }, + "name": "Casting Date", + "guid": "fe9cbde6-756a-4b1d-a347-7d49e56ee90f" + } + }, + "Example 26": { + "summary": "Discrete attribute", + "description": "Example response for the discrete attribute 'Metals' in the 'Materials Universe' table of the 'MI Training database'.", + "value": { + "discreteType": { + "name": "MU Durability", + "guid": "00000083-0006-4fff-8fff-0000ffff0000" + }, + "isMultiValued": false, + "defaultThresholdType": "atLeast", + "helpPath": "html/attributenotes/metals.html", + "info": { + "typeCode": "DCT", + "chartable": false, + "expressionable": false, + "linkable": true, + "extendedName": "Metals", + "isMetaAttribute": false, + "orderedMetaAttributes": [], + "primaryDataLinkGroups": [], + "foreignDataLinkGroups": [], + "primaryDynamicLinkGroups": [], + "foreignDynamicLinkGroups": [] + }, + "type": "discrete", + "isHiddenFromSearchCriteria": false, + "table": { + "guid": "0000dd92-0011-4fff-8fff-0000ffff0000" + }, + "displayNames": {}, + "name": "Metals", + "guid": "0000000b-0001-4fff-8fff-dd92ffff0000" + } + }, + "Example 27": { + "summary": "Range attribute", + "description": "Example response for the range attribute 'Tensile strength' in the 'Materials Universe' table of the 'MI Training database'.", + "value": { + "unit": { + "symbol": "MPa", + "guid": "0000002b-0013-4fff-8fff-0000ffff0000" + }, + "defaultThresholdType": "atLeast", + "info": { + "typeCode": "RNG", + "chartable": true, + "expressionable": true, + "linkable": true, + "extendedName": "Tensile strength", + "isMetaAttribute": false, + "orderedMetaAttributes": [ + { + "type": "longText", + "name": "Notes", + "guid": "8d7c8bb0-450f-4f9d-a717-ea4f5b56df74" + } + ], + "standardNames": [ + { + "name": "Tensile strength", + "guid": "a5a22baa-2245-4fb5-b0c9-2ddb48b5ffc8" + } + ], + "primaryDataLinkGroups": [], + "foreignDataLinkGroups": [ + { + "name": "Source of data (MaterialUniverse)", + "guid": "b431870c-4169-4ed7-b3b1-5e165b08e2eb" + } + ], + "primaryDynamicLinkGroups": [], + "foreignDynamicLinkGroups": [] + }, + "type": "range", + "isHiddenFromSearchCriteria": false, + "table": { + "guid": "0000dd92-0011-4fff-8fff-0000ffff0000" + }, + "displayNames": {}, + "name": "Tensile strength", + "guid": "000000e3-0001-4fff-8fff-dd92ffff0000" + } + }, + "Example 28": { + "summary": "Tabular attribute", + "description": "Example response for the tabular attribute 'Restricted substances associated with this material' in the 'Materials Universe' table of the 'MI Training database'..", + "value": { + "displayFullTable": false, + "displaySummaryRowInline": false, + "hideUnlinkedRows": true, + "target": { + "targetDatabaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", + "targetDatabaseVersionGuid": "feead34a-cc0e-4070-bbc0-647654a25407", + "targetTableGuid": "fa7aff0f-cac8-4c1d-be1f-d3b83f0ed74f", + "targetAttributeGuid": "446d4fc3-f902-4875-9e48-6df9a691c2b0" + }, + "tabularColumns": [ + { + "columnType": "linkedAttribute", + "linkedAttribute": { + "type": "shortText", + "isHiddenFromSearchCriteria": false, + "table": { + "guid": "fa7aff0f-cac8-4c1d-be1f-d3b83f0ed74f" + }, + "name": "Chemical name", + "guid": "5555b6f5-d492-4efd-bfe3-3e9faf79ab07" + }, + "showAsLink": true, + "summaryRowEnabled": false, + "summaryRowText": "", + "rollUpType": "list", + "summaryRowRollUpType": "list", + "displayNames": {}, + "name": "Substance name", + "guid": "94c07750-4710-402b-aefd-4b7f8831a0a0" + }, + { + "columnType": "localRange", + "defaultThresholdType": "atLeast", + "unit": { + "symbol": "%", + "guid": "00000005-0013-4fff-8fff-0000ffff0000" + }, + "showAsLink": false, + "summaryRowEnabled": false, + "summaryRowText": "", + "rollUpType": "list", + "summaryRowRollUpType": "list", + "displayNames": {}, + "name": "Amount", + "guid": "5fc69b42-8bf0-4867-befa-4101cf12842b" + }, + { + "columnType": "linkedColumn", + "linkedAttribute": { + "type": "link", + "isHiddenFromSearchCriteria": false, + "table": { + "guid": "fa7aff0f-cac8-4c1d-be1f-d3b83f0ed74f" + }, + "name": "Legislations restricting its use", + "guid": "c33cecb7-f3d2-4415-9de6-1ed4e5b2abdc" + }, + "linkedColumn": { + "name": "Legislation rating", + "guid": "49a720bd-55c4-44a3-a10a-5ae3b69f3100" + }, + "showAsLink": false, + "summaryRowEnabled": true, + "summaryRowText": "EH&S rating", + "rollUpType": "list", + "summaryRowRollUpType": "min", + "displayNames": {}, + "name": "Legislation rating", + "guid": "9a0ce77a-60cf-42c7-b827-e7d74bea7a6b" + } + ], + "defaultThresholdType": "exists", + "info": { + "typeCode": "TABL", + "chartable": false, + "expressionable": false, + "linkable": false, + "extendedName": "Restricted substances associated with this material", + "isMetaAttribute": false, + "orderedMetaAttributes": [], + "standardNames": [ + { + "name": "Restricted substances in this item", + "guid": "315d8839-ab9d-4b31-a27d-c128ebf34150" + } + ], + "primaryDataLinkGroups": [], + "foreignDataLinkGroups": [], + "primaryDynamicLinkGroups": [], + "foreignDynamicLinkGroups": [] + }, + "type": "link", + "isHiddenFromSearchCriteria": false, + "table": { + "guid": "0000dd92-0011-4fff-8fff-0000ffff0000" + }, + "displayNames": {}, + "name": "Restricted substances associated with this material", + "guid": "51e51832-0bcc-4fe0-bb95-ddd6917dc554" + } + } + } + } + } + }, + "400": { + "description": "Bad request" + }, + "403": { + "description": "Forbidden" + }, + "404": { + "description": "Database, table or attribute not found" + } + } } }, "/v1alpha/databases/{database-key}/tables/{table-guid}/attributes/{attribute-guid}:validate": { @@ -27958,7 +28254,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": "9e5102fa-fb52-4662-a17b-7347a10ab12a" + "guid": "6985165e-5128-488c-b280-1532a4b66d7f" } } } @@ -27983,7 +28279,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": "9e5102fa-fb52-4662-a17b-7347a10ab12a" + "guid": "6985165e-5128-488c-b280-1532a4b66d7f" } } } @@ -28008,7 +28304,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": "9e5102fa-fb52-4662-a17b-7347a10ab12a" + "guid": "6985165e-5128-488c-b280-1532a4b66d7f" } } } @@ -28033,7 +28329,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": "9e5102fa-fb52-4662-a17b-7347a10ab12a" + "guid": "6985165e-5128-488c-b280-1532a4b66d7f" } } } @@ -28184,7 +28480,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": "aef945cf-69cc-4436-bb45-685132e675e2" + "guid": "316c61be-ec29-4142-a073-ad5d1f25ec8b" } }, "Example 2": { @@ -28208,7 +28504,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": "aef945cf-69cc-4436-bb45-685132e675e2" + "guid": "316c61be-ec29-4142-a073-ad5d1f25ec8b" } }, "Example 2": { @@ -28232,7 +28528,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": "aef945cf-69cc-4436-bb45-685132e675e2" + "guid": "316c61be-ec29-4142-a073-ad5d1f25ec8b" } }, "Example 2": { @@ -28256,7 +28552,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": "aef945cf-69cc-4436-bb45-685132e675e2" + "guid": "316c61be-ec29-4142-a073-ad5d1f25ec8b" } }, "Example 2": { @@ -28485,7 +28781,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" + "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" } }, "Example 3": { @@ -28518,7 +28814,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" + "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" } }, "Example 3": { @@ -28551,7 +28847,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" + "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" } }, "Example 3": { @@ -28584,7 +28880,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" + "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" } }, "Example 3": { @@ -28727,7 +29023,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" + "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" } }, "Example 2": { @@ -28742,7 +29038,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": "f8670220-218c-4164-a304-cf762c477290" + "guid": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" } } } @@ -28759,7 +29055,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" + "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" } }, "Example 2": { @@ -28774,7 +29070,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": "f8670220-218c-4164-a304-cf762c477290" + "guid": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" } } } @@ -28791,7 +29087,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" + "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" } }, "Example 2": { @@ -28806,7 +29102,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": "f8670220-218c-4164-a304-cf762c477290" + "guid": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" } } } @@ -28823,7 +29119,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" + "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" } }, "Example 2": { @@ -28838,7 +29134,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": "f8670220-218c-4164-a304-cf762c477290" + "guid": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" } } } @@ -29442,8 +29738,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": "7cfa1269-533d-4470-8a37-3bcac0396933", - "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", + "versionGuid": "0093544d-ead1-4133-b4ba-fd16e962f851", + "guid": "39083468-a2ea-4886-b557-0e0c7870d604", "name": "MI Training (Updated)" } }, @@ -29468,8 +29764,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": "7cfa1269-533d-4470-8a37-3bcac0396933", - "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", + "versionGuid": "0093544d-ead1-4133-b4ba-fd16e962f851", + "guid": "39083468-a2ea-4886-b557-0e0c7870d604", "name": "MI Training (Updated)" } }, @@ -29494,8 +29790,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": "7cfa1269-533d-4470-8a37-3bcac0396933", - "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", + "versionGuid": "0093544d-ead1-4133-b4ba-fd16e962f851", + "guid": "39083468-a2ea-4886-b557-0e0c7870d604", "name": "MI Training (Updated)" } }, @@ -29520,8 +29816,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": "7cfa1269-533d-4470-8a37-3bcac0396933", - "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", + "versionGuid": "0093544d-ead1-4133-b4ba-fd16e962f851", + "guid": "39083468-a2ea-4886-b557-0e0c7870d604", "name": "MI Training (Updated)" } }, @@ -30527,7 +30823,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" + "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" } } } @@ -30549,7 +30845,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" + "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" } } } @@ -30571,7 +30867,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" + "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" } } } @@ -30593,7 +30889,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" + "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" } } } @@ -31331,7 +31627,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "574e9371-ece7-4f83-a696-f36ce6607826" + "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" } } } @@ -31352,7 +31648,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "574e9371-ece7-4f83-a696-f36ce6607826" + "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" } } } @@ -31373,7 +31669,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "574e9371-ece7-4f83-a696-f36ce6607826" + "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" } } } @@ -31394,7 +31690,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "574e9371-ece7-4f83-a696-f36ce6607826" + "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" } } } @@ -31797,11 +32093,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "54b5825f-a888-4698-bf6a-61c95568e65d" + "guid": "0c56ef94-a3ff-4ab7-a996-07e12d22b62a" }, { "name": "no-transform.xslt", - "guid": "916e1bd1-ab5d-4816-9592-992f82abf6e6" + "guid": "9629abe9-d7c8-49e6-90bc-ddc5d2342d70" } ] } @@ -31814,11 +32110,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "54b5825f-a888-4698-bf6a-61c95568e65d" + "guid": "0c56ef94-a3ff-4ab7-a996-07e12d22b62a" }, { "name": "no-transform.xslt", - "guid": "916e1bd1-ab5d-4816-9592-992f82abf6e6" + "guid": "9629abe9-d7c8-49e6-90bc-ddc5d2342d70" } ] } @@ -31831,11 +32127,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "54b5825f-a888-4698-bf6a-61c95568e65d" + "guid": "0c56ef94-a3ff-4ab7-a996-07e12d22b62a" }, { "name": "no-transform.xslt", - "guid": "916e1bd1-ab5d-4816-9592-992f82abf6e6" + "guid": "9629abe9-d7c8-49e6-90bc-ddc5d2342d70" } ] } @@ -31913,7 +32209,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "8e0792f3-f0d5-4a9f-ab7f-46eabad6b2e4" + "guid": "3ea7957d-be3c-4b98-927c-75ff7bb80f05" } }, "application/json": { @@ -31927,7 +32223,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "8e0792f3-f0d5-4a9f-ab7f-46eabad6b2e4" + "guid": "3ea7957d-be3c-4b98-927c-75ff7bb80f05" } }, "text/json": { @@ -31941,7 +32237,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "8e0792f3-f0d5-4a9f-ab7f-46eabad6b2e4" + "guid": "3ea7957d-be3c-4b98-927c-75ff7bb80f05" } } } @@ -32008,7 +32304,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d8513633-a0a7-4873-9396-075b0d934a48" + "guid": "57fa99a8-8e68-4579-afe1-3c748f222c3b" } }, "application/json": { @@ -32022,7 +32318,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d8513633-a0a7-4873-9396-075b0d934a48" + "guid": "57fa99a8-8e68-4579-afe1-3c748f222c3b" } }, "text/json": { @@ -32036,7 +32332,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d8513633-a0a7-4873-9396-075b0d934a48" + "guid": "57fa99a8-8e68-4579-afe1-3c748f222c3b" } } } @@ -32105,7 +32401,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" + "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" } } } @@ -32133,7 +32429,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" + "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" } } } @@ -32161,7 +32457,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" + "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" } } } @@ -32189,7 +32485,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" + "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" } } } @@ -32211,7 +32507,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7f2fb972-b96a-4967-aa35-6949326b05b3" + "guid": "de573f33-d029-464b-b4bd-7fe02cab59da" } }, "application/json": { @@ -32225,7 +32521,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7f2fb972-b96a-4967-aa35-6949326b05b3" + "guid": "de573f33-d029-464b-b4bd-7fe02cab59da" } }, "text/json": { @@ -32239,7 +32535,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7f2fb972-b96a-4967-aa35-6949326b05b3" + "guid": "de573f33-d029-464b-b4bd-7fe02cab59da" } } } @@ -32457,7 +32753,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d385c00a-3fe3-4ee5-80f9-52ee945ec753" + "guid": "2ab3a6ba-a41f-438d-8eac-fbc9e63cbafa" } }, "application/json": { @@ -32471,7 +32767,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d385c00a-3fe3-4ee5-80f9-52ee945ec753" + "guid": "2ab3a6ba-a41f-438d-8eac-fbc9e63cbafa" } }, "text/json": { @@ -32485,7 +32781,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d385c00a-3fe3-4ee5-80f9-52ee945ec753" + "guid": "2ab3a6ba-a41f-438d-8eac-fbc9e63cbafa" } } } @@ -32628,7 +32924,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" + "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" } }, "Example 3": { @@ -32663,7 +32959,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" + "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" } }, "Example 3": { @@ -32698,7 +32994,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" + "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" } }, "Example 3": { @@ -32733,7 +33029,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" + "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" } }, "Example 3": { @@ -33045,7 +33341,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" + "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" } }, "Example 2": { @@ -33071,7 +33367,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" + "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" } }, "Example 2": { @@ -33097,7 +33393,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" + "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" } }, "Example 2": { @@ -33123,7 +33419,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" + "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" } }, "Example 2": { @@ -33761,7 +34057,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": "629e35ff-be95-4a84-9742-e37e519ce647" + "guid": "5026bd87-0b39-4b7c-9332-933f272d832e" } } } @@ -33782,7 +34078,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": "629e35ff-be95-4a84-9742-e37e519ce647" + "guid": "5026bd87-0b39-4b7c-9332-933f272d832e" } } } @@ -33803,7 +34099,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": "629e35ff-be95-4a84-9742-e37e519ce647" + "guid": "5026bd87-0b39-4b7c-9332-933f272d832e" } } } @@ -33824,7 +34120,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": "629e35ff-be95-4a84-9742-e37e519ce647" + "guid": "5026bd87-0b39-4b7c-9332-933f272d832e" } } } @@ -34293,7 +34589,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "310bda9a-1ff0-4d0e-9c40-6c30245dc4be" + "guid": "028e0297-2bc5-4fb6-93e2-d65836949838" } }, "application/json": { @@ -34307,7 +34603,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "310bda9a-1ff0-4d0e-9c40-6c30245dc4be" + "guid": "028e0297-2bc5-4fb6-93e2-d65836949838" } }, "text/json": { @@ -34321,7 +34617,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "310bda9a-1ff0-4d0e-9c40-6c30245dc4be" + "guid": "028e0297-2bc5-4fb6-93e2-d65836949838" } } } @@ -34485,7 +34781,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" + "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" } } } @@ -34513,7 +34809,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" + "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" } } } @@ -34541,7 +34837,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" + "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" } } } @@ -34569,7 +34865,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" + "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" } } } @@ -34591,7 +34887,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "85790281-0470-4192-9f74-349cb932a385" + "guid": "d668fe84-c4e8-4c9d-ac75-edef75e5de4b" } }, "application/json": { @@ -34605,7 +34901,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "85790281-0470-4192-9f74-349cb932a385" + "guid": "d668fe84-c4e8-4c9d-ac75-edef75e5de4b" } }, "text/json": { @@ -34619,7 +34915,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "85790281-0470-4192-9f74-349cb932a385" + "guid": "d668fe84-c4e8-4c9d-ac75-edef75e5de4b" } } } @@ -34837,7 +35133,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "6af69bdd-f135-4c88-956c-fe20ebe9015b" + "guid": "ba932613-382e-4185-8693-9bf6e18ddc34" } }, "application/json": { @@ -34851,7 +35147,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "6af69bdd-f135-4c88-956c-fe20ebe9015b" + "guid": "ba932613-382e-4185-8693-9bf6e18ddc34" } }, "text/json": { @@ -34865,7 +35161,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "6af69bdd-f135-4c88-956c-fe20ebe9015b" + "guid": "ba932613-382e-4185-8693-9bf6e18ddc34" } } } @@ -34916,7 +35212,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "d7829c62-7f71-4366-adbc-528b247ee0de" + "guid": "3ccf8640-6574-4bd3-a864-3771146bbd3f" } ] } @@ -34934,7 +35230,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "d7829c62-7f71-4366-adbc-528b247ee0de" + "guid": "3ccf8640-6574-4bd3-a864-3771146bbd3f" } ] } @@ -34952,7 +35248,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "d7829c62-7f71-4366-adbc-528b247ee0de" + "guid": "3ccf8640-6574-4bd3-a864-3771146bbd3f" } ] } @@ -35182,7 +35478,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "9c815eb3-47dc-4ee9-9576-f79d09e86ac8" + "guid": "35ad6f26-67dc-4d13-9e23-8df1f8598394" } }, "application/json": { @@ -35192,7 +35488,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "9c815eb3-47dc-4ee9-9576-f79d09e86ac8" + "guid": "35ad6f26-67dc-4d13-9e23-8df1f8598394" } }, "text/json": { @@ -35202,7 +35498,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "9c815eb3-47dc-4ee9-9576-f79d09e86ac8" + "guid": "35ad6f26-67dc-4d13-9e23-8df1f8598394" } } } @@ -35255,7 +35551,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": "34627b63-922c-419b-acc4-a6b9e6fda161" + "guid": "daa70ac1-2fff-4d08-9096-c34f2455c496" } } } @@ -35276,7 +35572,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": "34627b63-922c-419b-acc4-a6b9e6fda161" + "guid": "daa70ac1-2fff-4d08-9096-c34f2455c496" } } } @@ -35297,7 +35593,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": "34627b63-922c-419b-acc4-a6b9e6fda161" + "guid": "daa70ac1-2fff-4d08-9096-c34f2455c496" } } } @@ -35318,7 +35614,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": "34627b63-922c-419b-acc4-a6b9e6fda161" + "guid": "daa70ac1-2fff-4d08-9096-c34f2455c496" } } } @@ -35446,7 +35742,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "6e70f5e3-d4f8-4316-a3ef-ca9241903a94" + "guid": "b4a2ef25-bf5c-4167-b492-20d5faddce4e" } ] } @@ -35460,7 +35756,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "6e70f5e3-d4f8-4316-a3ef-ca9241903a94" + "guid": "b4a2ef25-bf5c-4167-b492-20d5faddce4e" } ] } @@ -35474,7 +35770,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "6e70f5e3-d4f8-4316-a3ef-ca9241903a94" + "guid": "b4a2ef25-bf5c-4167-b492-20d5faddce4e" } ] } @@ -35656,11 +35952,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "66ce1a4a-c235-475a-8a02-fc42c6c84fd4" + "guid": "d95b289c-3b6a-4c05-a327-778b93142f59" }, { "name": "home-page-2.html", - "guid": "5e2775d0-4b26-4953-88bb-45008f7acfdd" + "guid": "9c3dece7-9d0a-4671-b333-bbdcb4d9aeef" } ] } @@ -35673,11 +35969,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "66ce1a4a-c235-475a-8a02-fc42c6c84fd4" + "guid": "d95b289c-3b6a-4c05-a327-778b93142f59" }, { "name": "home-page-2.html", - "guid": "5e2775d0-4b26-4953-88bb-45008f7acfdd" + "guid": "9c3dece7-9d0a-4671-b333-bbdcb4d9aeef" } ] } @@ -35690,11 +35986,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "66ce1a4a-c235-475a-8a02-fc42c6c84fd4" + "guid": "d95b289c-3b6a-4c05-a327-778b93142f59" }, { "name": "home-page-2.html", - "guid": "5e2775d0-4b26-4953-88bb-45008f7acfdd" + "guid": "9c3dece7-9d0a-4671-b333-bbdcb4d9aeef" } ] } @@ -35772,7 +36068,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "35324740-3d76-46cf-87ff-ed91842d7643" + "guid": "9536dfd7-87e2-4c80-a716-d88ded1bc4b6" } }, "application/json": { @@ -35786,7 +36082,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "35324740-3d76-46cf-87ff-ed91842d7643" + "guid": "9536dfd7-87e2-4c80-a716-d88ded1bc4b6" } }, "text/json": { @@ -35800,7 +36096,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "35324740-3d76-46cf-87ff-ed91842d7643" + "guid": "9536dfd7-87e2-4c80-a716-d88ded1bc4b6" } } } @@ -35867,7 +36163,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "3ce28169-cd88-49ee-bc91-b0223bdb9a13" + "guid": "fb3857fd-e5b8-4656-a75e-300eaa4562ab" } }, "application/json": { @@ -35881,7 +36177,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "3ce28169-cd88-49ee-bc91-b0223bdb9a13" + "guid": "fb3857fd-e5b8-4656-a75e-300eaa4562ab" } }, "text/json": { @@ -35895,7 +36191,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "3ce28169-cd88-49ee-bc91-b0223bdb9a13" + "guid": "fb3857fd-e5b8-4656-a75e-300eaa4562ab" } } } @@ -35964,7 +36260,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": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" + "guid": "ceb91e09-9699-41b0-b981-48cb25e6115d" } } } @@ -35992,7 +36288,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": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" + "guid": "ceb91e09-9699-41b0-b981-48cb25e6115d" } } } @@ -36020,7 +36316,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": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" + "guid": "ceb91e09-9699-41b0-b981-48cb25e6115d" } } } @@ -36048,7 +36344,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": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" + "guid": "ceb91e09-9699-41b0-b981-48cb25e6115d" } } } @@ -36070,7 +36366,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "e3050867-ed65-407f-91eb-44b0c894282d" + "guid": "5842cf1f-0332-44ca-8d8b-58cf7547f812" } }, "application/json": { @@ -36084,7 +36380,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "e3050867-ed65-407f-91eb-44b0c894282d" + "guid": "5842cf1f-0332-44ca-8d8b-58cf7547f812" } }, "text/json": { @@ -36098,7 +36394,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "e3050867-ed65-407f-91eb-44b0c894282d" + "guid": "5842cf1f-0332-44ca-8d8b-58cf7547f812" } } } @@ -36316,7 +36612,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5436b705-9cf5-4cf9-adaa-0e2acece65a8" + "guid": "9931369f-9d29-41f6-9642-de5e8d542122" } }, "application/json": { @@ -36330,7 +36626,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5436b705-9cf5-4cf9-adaa-0e2acece65a8" + "guid": "9931369f-9d29-41f6-9642-de5e8d542122" } }, "text/json": { @@ -36344,7 +36640,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5436b705-9cf5-4cf9-adaa-0e2acece65a8" + "guid": "9931369f-9d29-41f6-9642-de5e8d542122" } } } @@ -36476,9 +36772,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "d77c6015-d06d-4e1d-9732-1a41eaa6ccc8", + "underlyingEntityGuid": "9c6c56e3-e76d-4db7-84b3-a927650f7584", "name": "Price", - "guid": "e377e1e9-ff39-46ef-b08a-74e4183cb893" + "guid": "7b52a91e-2c1b-4253-bce9-c13b80fc0832" }, { "itemType": "attribute", @@ -36486,9 +36782,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "93489601-2d92-4db0-b4f8-7daab42b1d91", + "underlyingEntityGuid": "7c9f4c04-44fb-41ed-a787-bb061629094e", "name": "Density", - "guid": "88d4ac64-9bf3-4369-98d2-32789051f33e" + "guid": "c9321bef-7252-4cb6-b179-9785499489f6" } ], "displayNames": { @@ -36507,9 +36803,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "94e93d69-be9e-4886-98eb-ceaea5a809b0", + "underlyingEntityGuid": "7b89fdb8-46bd-4086-9dab-2fa074a631a1", "name": "Young's modulus", - "guid": "f1806a93-8642-42b5-925b-d4f740486d49" + "guid": "227c9b17-9277-4502-82a5-e5d2ee7207a7" }, { "itemType": "attribute", @@ -36517,9 +36813,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "38467a65-8331-41e7-8cad-458474f9c4e4", + "underlyingEntityGuid": "e44b28e6-2725-452d-a2e6-a7827dbcda9a", "name": "Tensile strength", - "guid": "e19e8afa-fa51-428b-b5b3-a2ff9c135e9a" + "guid": "943afbe4-0587-4d14-9e27-e88fc1a9db5c" }, { "itemType": "attribute", @@ -36527,9 +36823,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "22b0884b-1b64-450e-bff2-70075f906f40", + "underlyingEntityGuid": "66bd0fd7-0c86-4233-95ac-a401d9dc250f", "name": "Shape factor", - "guid": "d83e8a4b-14e1-47ea-86e4-7166ed9b7581" + "guid": "fe829d19-38d3-4550-a259-1ccafb12e3c5" } ], "displayNames": { @@ -36604,7 +36900,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": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" + "guid": "d09e92dd-d0a5-4089-bce2-b637a71b6934" } } } @@ -36626,7 +36922,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": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" + "guid": "d09e92dd-d0a5-4089-bce2-b637a71b6934" } } } @@ -36648,7 +36944,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": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" + "guid": "d09e92dd-d0a5-4089-bce2-b637a71b6934" } } } @@ -36670,7 +36966,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": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" + "guid": "d09e92dd-d0a5-4089-bce2-b637a71b6934" } } } @@ -36689,7 +36985,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "a3f0beeb-ba64-42ae-9c55-f1583811cfe8" + "guid": "eeff9c4b-7ca7-47c2-8434-ad1482dfb8e7" } } } @@ -37332,7 +37628,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "ea9a292d-eae8-461a-a3b0-661339ab0458" + "guid": "1c0011fb-9c6a-4dcd-b849-ba38d65790df" } }, "Example 2": { @@ -37347,9 +37643,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "7d6625c3-671f-4b1a-9e96-ee0d2b9f464e", + "underlyingEntityGuid": "0b2fd191-97c7-4cc1-92ca-bfd0eceb2c44", "name": "Form", - "guid": "81f8b781-d48f-4a34-a0a9-acb1d31645f9" + "guid": "71787919-0224-43c3-a4b9-24c5048938b9" }, { "itemType": "attribute", @@ -37362,34 +37658,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "ee0adf6c-f9a3-463e-9224-aa9450050b7d", + "underlyingEntityGuid": "82c13adf-cd69-4fe4-8823-40a94c33eaba", "name": "Sources", - "guid": "802e9d36-4d27-4206-89f9-dcb7f025960f" + "guid": "6506021b-527a-4ad5-b35b-4df1c3dc9d10" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "36ddf104-a469-494c-8621-e4c0b5d2ff5f", + "underlyingEntityGuid": "db59168d-ac41-4d17-9825-c80924f7f53e", "name": "Notes", - "guid": "3a1764ce-5b86-4c9f-859e-bdb5f49d49fc" + "guid": "5f2affc0-2916-4efe-8825-e61d731c043e" } ], - "underlyingEntityGuid": "ef34bb9a-8bca-4e2a-84ec-8ab3c87f910f", + "underlyingEntityGuid": "9fe6dcb2-5983-4d26-bf3b-3aadf75d7e7e", "name": "Chemical resistance", - "guid": "522237c2-1b40-40bf-beb1-a68aff832b4c" + "guid": "f2f72bd6-13ce-4a8b-9ed7-ddb11f06b127" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "eca156f1-e05e-448f-82d9-c77c685fdab5", - "targetDatabaseVersion": "e0e4b417-c6d4-4bba-a38e-75a4d9358188", - "targetTable": "91ed6d73-a0db-4869-aa0e-d579fd50e615", + "targetDatabase": "8db186f6-a320-49d1-92cb-880d9c85c566", + "targetDatabaseVersion": "4b4249a0-1db1-4ebf-b2e4-d9a92a5fac8b", + "targetTable": "d1d7169b-dc7d-4e01-a7fa-db9b6a45e171", "forwards": true, - "underlyingEntityGuid": "ab02ef40-3712-4bd7-a717-aff82630e2b8", + "underlyingEntityGuid": "0e0b6ab6-8a71-40aa-963d-e8b5570d6472", "name": "Material Pedigree", - "guid": "dad5587a-2879-4712-8cef-0cd9b8e5ed5d" + "guid": "71f011d2-2a6b-4322-acf5-8397d1b3d6df" }, { "itemType": "attribute", @@ -37400,42 +37696,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "5567f368-6ec4-4263-bdf4-6631b3e43afb", + "tabularColumnGuid": "29a8271d-096d-49a1-9eb3-01f221891ec1", "name": "Offset Yield Stress", - "guid": "23383edd-798d-41f1-82d0-2109c3e28b77" + "guid": "a2c380c3-58e3-4e44-8b29-13a3eb51ceab" }, { "columnType": "localShortText", - "tabularColumnGuid": "cd2b86ab-0964-4543-b13a-84596168df8c", + "tabularColumnGuid": "0438375c-0935-417b-acb7-694e5e9fedcd", "name": "Young's Modulus Notes", - "guid": "d5e7410c-3ead-4b35-ad26-7546a9beedcf" + "guid": "98616c02-8c9b-444d-b8da-8eace08ecd4c" } ], - "underlyingEntityGuid": "410226c9-ba30-4471-9e9b-df1c27372dc0", + "underlyingEntityGuid": "90470472-cf17-46ac-9c1c-f9f16a491562", "name": "Reference Characteristics", - "guid": "42f517dc-9f95-4ba2-86a3-10418c83ba8d" + "guid": "f850b2aa-587b-433e-aa3d-bfada2613e0a" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "eca156f1-e05e-448f-82d9-c77c685fdab5", - "targetDatabaseVersion": "e0e4b417-c6d4-4bba-a38e-75a4d9358188", - "targetTable": "3a20b0c7-85a3-4a8a-bbdd-53d5e6a760cc", + "targetDatabase": "8db186f6-a320-49d1-92cb-880d9c85c566", + "targetDatabaseVersion": "4b4249a0-1db1-4ebf-b2e4-d9a92a5fac8b", + "targetTable": "b43b3832-f4ee-48c3-b190-472f619d88cd", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "eca156f1-e05e-448f-82d9-c77c685fdab5", - "targetDatabaseVersion": "e0e4b417-c6d4-4bba-a38e-75a4d9358188", - "targetTable": "3950c82b-4ade-4cf2-bc14-2eda2df171a6", + "targetDatabase": "8db186f6-a320-49d1-92cb-880d9c85c566", + "targetDatabaseVersion": "4b4249a0-1db1-4ebf-b2e4-d9a92a5fac8b", + "targetTable": "f43fe682-21a3-4a4c-948a-48cbf31f66a8", "forwards": false, - "underlyingEntityGuid": "dc48ecf1-47f0-488b-a69b-e9bd1b2c28c2", + "underlyingEntityGuid": "98e0b83c-078e-4817-9e71-df33abac2e1e", "name": "Pedigree information", - "guid": "dfede3e5-422c-4741-a9e7-c47dcf0909be" + "guid": "3b7b366c-a23d-4a9a-b0fa-e7a583afc451" }, - "underlyingEntityGuid": "85cc2dca-b625-4d45-a9bd-4bae64aa7324", + "underlyingEntityGuid": "00204060-37db-45d2-a507-b0caade069b4", "name": "To Pedigree from Producers", - "guid": "ff4a64e3-37c8-49e9-84bc-807c19ebcedd" + "guid": "0ad12d2e-a6ec-45be-986b-63693943084e" } ], "displayNames": { @@ -37443,7 +37739,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "abbd2034-c78d-4329-a19f-81c55d4e0d22" + "guid": "f1eb1238-c5a0-46e7-b1cc-f9c949340402" } } } @@ -37633,9 +37929,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": "51c78624-8aa0-42a2-ac15-87126ebece2b", - "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", - "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" + "sourceDatabaseGuid": "e757130d-0739-48c4-ada8-a2908f7b1a36", + "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", + "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" } }, "Example 8": { @@ -37647,13 +37943,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", - "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" + "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", + "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" }, { "forwards": false, - "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", - "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" + "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", + "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" } ] } @@ -37733,9 +38029,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": "51c78624-8aa0-42a2-ac15-87126ebece2b", - "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", - "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" + "sourceDatabaseGuid": "e757130d-0739-48c4-ada8-a2908f7b1a36", + "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", + "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" } }, "Example 8": { @@ -37747,13 +38043,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", - "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" + "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", + "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" }, { "forwards": false, - "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", - "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" + "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", + "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" } ] } @@ -37833,9 +38129,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": "51c78624-8aa0-42a2-ac15-87126ebece2b", - "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", - "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" + "sourceDatabaseGuid": "e757130d-0739-48c4-ada8-a2908f7b1a36", + "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", + "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" } }, "Example 8": { @@ -37847,13 +38143,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", - "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" + "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", + "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" }, { "forwards": false, - "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", - "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" + "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", + "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" } ] } @@ -37933,9 +38229,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": "51c78624-8aa0-42a2-ac15-87126ebece2b", - "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", - "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" + "sourceDatabaseGuid": "e757130d-0739-48c4-ada8-a2908f7b1a36", + "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", + "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" } }, "Example 8": { @@ -37947,13 +38243,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", - "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" + "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", + "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" }, { "forwards": false, - "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", - "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" + "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", + "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" } ] } @@ -37981,7 +38277,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "20e2d5d5-2e06-4f31-b810-3608dd491c83" + "guid": "2d61f580-5111-4cfd-ba34-4b4564ed4be9" } }, "Example 2": { @@ -38001,7 +38297,7 @@ } ], "tabularColumnGuids": null, - "guid": "1a7c6e0a-07f8-4555-8e90-4f8db5e80182" + "guid": "b6a1d9b5-0680-44bd-84ed-5434d7b4dcc4" } }, "Example 3": { @@ -38045,9 +38341,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": "f3571d23-7f28-48a7-84fd-7405c86edf2d", - "sourceTableGuid": "6b79befe-d8df-4051-b060-202411d0d5c4", - "linkGroupGuid": "1467d45b-5355-492d-aa96-18ab389e43c0", + "sourceDatabaseGuid": "31a7ac10-cc7f-4b8b-aa0f-572953115351", + "sourceTableGuid": "078d60d9-e3e4-4261-9ac0-bc731e9252a8", + "linkGroupGuid": "af12efcc-8516-4594-ba8c-41ff9edbdc44", "guid": null } }, @@ -38061,12 +38357,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "f56f90c1-7618-476f-a48f-cc1fc861f8d5" + "tabularAttributeGuid": "41a061d8-54ef-4134-a592-ec661d5af89d" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "9d241c6b-a78c-4d22-be7e-9641f955e8c9" + "tabularAttributeGuid": "046cf4e1-0d29-4546-b0d4-1ee0e95d9802" } ], "guid": null @@ -38299,7 +38595,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": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" + "guid": "43469621-d8b0-4e62-b5ab-7ad618d82259" } }, "Example 3": { @@ -38332,7 +38628,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": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" + "guid": "43469621-d8b0-4e62-b5ab-7ad618d82259" } }, "Example 3": { @@ -38365,7 +38661,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": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" + "guid": "43469621-d8b0-4e62-b5ab-7ad618d82259" } }, "Example 3": { @@ -38398,7 +38694,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": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" + "guid": "43469621-d8b0-4e62-b5ab-7ad618d82259" } }, "Example 3": { @@ -38428,7 +38724,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "a81fd1a4-885a-4401-84f3-d2181c14cab8" + "guid": "c3cee5e0-bc63-4474-9b0c-2f381807bbfc" } } } @@ -38567,9 +38863,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "80a94612-9e2b-47b8-bd91-7fe59e26883c", + "underlyingEntityGuid": "34eea884-6c18-4ae1-bf8f-f174a20edf26", "name": "Price", - "guid": "eb4f52b0-a169-45f1-86cb-1ba1567c207a" + "guid": "92edcd6c-dc95-41b2-97ed-c50192288da1" }, { "itemType": "attribute", @@ -38577,9 +38873,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "e183f196-d738-4b97-a90e-dbe70e356677", + "underlyingEntityGuid": "6a43cc6b-d8e7-44ff-a198-f803b997bd7b", "name": "Density", - "guid": "1ee1aff8-a0df-47f9-b824-0800e664964d" + "guid": "dd302033-5d9d-4851-9906-8e0d93777313" } ], "displayNames": { @@ -38598,9 +38894,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "f0a2354a-00bc-45e8-b518-276e5ac474e0", + "underlyingEntityGuid": "46ab2a6a-fab7-4c1f-adae-4f1291b91e2e", "name": "Young's modulus", - "guid": "a8ed72b2-6ecb-4b6d-854a-1d5b57a9584c" + "guid": "d1f35e5f-20c8-49a7-aa90-9d80a0cd5a9b" }, { "itemType": "attribute", @@ -38608,9 +38904,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "db0e6ca6-d21f-41e1-a495-6a880f7d2ed8", + "underlyingEntityGuid": "9335e6d5-d5f8-49b7-b832-486bff9ab6b8", "name": "Tensile strength", - "guid": "c5bd7f75-6125-4810-97fb-55ab26687ef8" + "guid": "b0ac34dc-a03c-4232-9b51-1e38e3613e9d" }, { "itemType": "attribute", @@ -38618,9 +38914,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "8e07b93c-1b9d-4b5c-9438-e2355bdb2d69", + "underlyingEntityGuid": "bb0f94d8-604f-4c93-a983-6930765224b1", "name": "Shape factor", - "guid": "96c58fec-b072-4468-9514-9080c5ca850b" + "guid": "53e173a8-88e3-4f45-a932-aa967af92612" } ], "displayNames": { @@ -38699,7 +38995,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" + "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" } }, "Example 2": { @@ -38732,7 +39028,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" + "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" } }, "Example 2": { @@ -38765,7 +39061,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" + "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" } }, "Example 2": { @@ -38798,7 +39094,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" + "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" } }, "Example 2": { @@ -38831,7 +39127,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "952f163d-b184-424f-8b17-bf5d73caa50d" + "guid": "f33d7b8a-906b-4b06-9c30-f083db8869fb" } } } @@ -39128,7 +39424,7 @@ { "type": "discrete", "name": "Red", - "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" + "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" }, { "type": "discrete", @@ -39138,7 +39434,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "b492df5b-925d-483d-9afa-938200cee254" + "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" } }, "Example 3": { @@ -39266,7 +39562,7 @@ { "type": "discrete", "name": "Red", - "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" + "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" }, { "type": "discrete", @@ -39276,7 +39572,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "b492df5b-925d-483d-9afa-938200cee254" + "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" } }, "Example 3": { @@ -39404,7 +39700,7 @@ { "type": "discrete", "name": "Red", - "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" + "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" }, { "type": "discrete", @@ -39414,7 +39710,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "b492df5b-925d-483d-9afa-938200cee254" + "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" } }, "Example 3": { @@ -39542,7 +39838,7 @@ { "type": "discrete", "name": "Red", - "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" + "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" }, { "type": "discrete", @@ -39552,7 +39848,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "b492df5b-925d-483d-9afa-938200cee254" + "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" } }, "Example 3": { @@ -39820,7 +40116,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" + "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" } }, "Example 2": { @@ -39831,7 +40127,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" + "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" } }, "Example 3": { @@ -39839,7 +40135,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": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" + "guid": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" } }, "Example 4": { @@ -39858,7 +40154,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" + "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" } }, "Example 6": { @@ -39898,7 +40194,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" + "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" } }, "Example 2": { @@ -39909,7 +40205,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" + "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" } }, "Example 3": { @@ -39917,7 +40213,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": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" + "guid": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" } }, "Example 4": { @@ -39936,7 +40232,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" + "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" } }, "Example 6": { @@ -39976,7 +40272,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" + "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" } }, "Example 2": { @@ -39987,7 +40283,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" + "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" } }, "Example 3": { @@ -39995,7 +40291,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": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" + "guid": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" } }, "Example 4": { @@ -40014,7 +40310,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" + "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" } }, "Example 6": { @@ -40054,7 +40350,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" + "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" } }, "Example 2": { @@ -40065,7 +40361,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" + "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" } }, "Example 3": { @@ -40073,7 +40369,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": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" + "guid": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" } }, "Example 4": { @@ -40092,7 +40388,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" + "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" } }, "Example 6": { @@ -40385,7 +40681,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" + "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" } }, "Example 2": { @@ -40394,7 +40690,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" + "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" } }, "Example 3": { @@ -40402,7 +40698,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": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" + "guid": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" } } } @@ -40419,7 +40715,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" + "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" } }, "Example 2": { @@ -40428,7 +40724,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" + "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" } }, "Example 3": { @@ -40436,7 +40732,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": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" + "guid": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" } } } @@ -40453,7 +40749,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" + "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" } }, "Example 2": { @@ -40462,7 +40758,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" + "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" } }, "Example 3": { @@ -40470,7 +40766,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": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" + "guid": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" } } } @@ -40487,7 +40783,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" + "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" } }, "Example 2": { @@ -40496,7 +40792,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" + "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" } }, "Example 3": { @@ -40504,7 +40800,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": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" + "guid": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" } } } @@ -41160,7 +41456,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": "05d4e238-df80-46bb-859c-0acff93e5d44" + "guid": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" } }, "Example 3": { @@ -41171,7 +41467,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" + "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" } } } @@ -41193,7 +41489,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": "05d4e238-df80-46bb-859c-0acff93e5d44" + "guid": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" } }, "Example 3": { @@ -41204,7 +41500,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" + "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" } } } @@ -41226,7 +41522,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": "05d4e238-df80-46bb-859c-0acff93e5d44" + "guid": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" } }, "Example 3": { @@ -41237,7 +41533,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" + "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" } } } @@ -41259,7 +41555,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": "05d4e238-df80-46bb-859c-0acff93e5d44" + "guid": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" } }, "Example 3": { @@ -41270,7 +41566,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" + "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" } } } @@ -41412,7 +41708,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": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" + "guid": "11d94a63-d377-4823-9137-2390b1383eff" } }, "Example 2": { @@ -41432,7 +41728,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", + "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41448,7 +41744,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": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" + "guid": "11d94a63-d377-4823-9137-2390b1383eff" } }, "Example 2": { @@ -41468,7 +41764,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", + "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41484,7 +41780,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": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" + "guid": "11d94a63-d377-4823-9137-2390b1383eff" } }, "Example 2": { @@ -41504,7 +41800,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", + "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41520,7 +41816,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": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" + "guid": "11d94a63-d377-4823-9137-2390b1383eff" } }, "Example 2": { @@ -41540,7 +41836,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", + "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41722,7 +42018,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "b3771f08-e965-4684-829f-e25ad0462d88" + "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" } }, "Example 3": { @@ -41733,7 +42029,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "31833a5f-0731-42e7-97ac-633c84c60844" + "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" } } } @@ -41757,7 +42053,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "b3771f08-e965-4684-829f-e25ad0462d88" + "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" } }, "Example 3": { @@ -41768,7 +42064,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "31833a5f-0731-42e7-97ac-633c84c60844" + "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" } } } @@ -41792,7 +42088,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "b3771f08-e965-4684-829f-e25ad0462d88" + "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" } }, "Example 3": { @@ -41803,7 +42099,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "31833a5f-0731-42e7-97ac-633c84c60844" + "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" } } } @@ -41827,7 +42123,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "b3771f08-e965-4684-829f-e25ad0462d88" + "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" } }, "Example 3": { @@ -41838,7 +42134,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "31833a5f-0731-42e7-97ac-633c84c60844" + "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" } } } @@ -41975,7 +42271,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" + "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" } }, "Example 2": { @@ -41990,7 +42286,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": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" + "guid": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" } } } @@ -42006,7 +42302,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" + "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" } }, "Example 2": { @@ -42021,7 +42317,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": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" + "guid": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" } } } @@ -42037,7 +42333,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" + "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" } }, "Example 2": { @@ -42052,7 +42348,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": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" + "guid": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" } } } @@ -42068,7 +42364,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" + "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" } }, "Example 2": { @@ -42083,7 +42379,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": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" + "guid": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" } } } @@ -42253,7 +42549,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "77db78da-945e-424f-b719-22a414fadaab" + "guid": "1e319716-05e2-4149-9c11-13e54e06285a" } ] } @@ -42323,7 +42619,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "206c26a0-8008-4c3e-b440-59928050b743" + "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" } }, "Example 3": { @@ -42333,7 +42629,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" + "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42346,12 +42642,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", - "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" + "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", + "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" + "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" } }, "Example 5": { @@ -42398,7 +42694,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" + "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" } } } @@ -42434,7 +42730,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "206c26a0-8008-4c3e-b440-59928050b743" + "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" } }, "Example 3": { @@ -42444,7 +42740,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" + "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42457,12 +42753,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", - "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" + "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", + "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" + "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" } }, "Example 5": { @@ -42509,7 +42805,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" + "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" } } } @@ -42545,7 +42841,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "206c26a0-8008-4c3e-b440-59928050b743" + "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" } }, "Example 3": { @@ -42555,7 +42851,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" + "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42568,12 +42864,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", - "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" + "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", + "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" + "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" } }, "Example 5": { @@ -42620,7 +42916,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" + "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" } } } @@ -42656,7 +42952,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "206c26a0-8008-4c3e-b440-59928050b743" + "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" } }, "Example 3": { @@ -42666,7 +42962,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" + "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42679,12 +42975,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", - "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" + "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", + "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" + "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" } }, "Example 5": { @@ -42731,7 +43027,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" + "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" } } } @@ -42786,8 +43082,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "c7cf63d1-bac6-4277-b1b0-bc2f5ab2b3d3", - "tableGuid": "1847cfbc-035a-4d10-865e-e39bf7242c4f" + "databaseGuid": "66095711-4691-437e-8801-1d045a63a496", + "tableGuid": "8f2a9f2b-3b66-4781-bf43-2b1f5adac6e6" } }, "identity": 1, @@ -42795,7 +43091,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "7f5e2845-0bcf-4a90-af8d-6d48100c9b2f" + "guid": "0af9bb0c-f260-4b60-867d-40535989ac57" } }, "Example 6": { @@ -42986,8 +43282,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "e8bd2855-8039-43d2-b046-0c4ec299665b", - "tableGuid": "a25e8499-576f-4981-af63-e2844b5bfd74" + "databaseGuid": "f11e200d-96fb-4da1-980f-983e5b4ba471", + "tableGuid": "f9e57769-6e2a-43d7-8db3-0c59e7307a58" } }, "identity": 1, @@ -42995,7 +43291,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "e5e78b2d-0c6e-4a6a-97cc-0b7397bab6fb" + "guid": "a50168d7-a8be-4f70-aa9c-9a00146f9dfc" } }, "Example 3": { @@ -43166,7 +43462,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": "11d0feb3-36db-4711-a518-02bcf8829340" + "guid": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" } }, "Example 2": { @@ -43186,7 +43482,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" + "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" } }, "Example 4": { @@ -43197,7 +43493,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "0331ba9f-d204-425b-9a14-2014da21d769" + "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" } }, "Example 5": { @@ -43219,7 +43515,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" + "guid": "228da2e0-033f-425f-be65-3609369b4418" } } } @@ -43234,7 +43530,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": "11d0feb3-36db-4711-a518-02bcf8829340" + "guid": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" } }, "Example 2": { @@ -43254,7 +43550,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" + "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" } }, "Example 4": { @@ -43265,7 +43561,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "0331ba9f-d204-425b-9a14-2014da21d769" + "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" } }, "Example 5": { @@ -43287,7 +43583,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" + "guid": "228da2e0-033f-425f-be65-3609369b4418" } } } @@ -43302,7 +43598,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": "11d0feb3-36db-4711-a518-02bcf8829340" + "guid": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" } }, "Example 2": { @@ -43322,7 +43618,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" + "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" } }, "Example 4": { @@ -43333,7 +43629,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "0331ba9f-d204-425b-9a14-2014da21d769" + "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" } }, "Example 5": { @@ -43355,7 +43651,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" + "guid": "228da2e0-033f-425f-be65-3609369b4418" } } } @@ -43370,7 +43666,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": "11d0feb3-36db-4711-a518-02bcf8829340" + "guid": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" } }, "Example 2": { @@ -43390,7 +43686,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" + "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" } }, "Example 4": { @@ -43401,7 +43697,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "0331ba9f-d204-425b-9a14-2014da21d769" + "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" } }, "Example 5": { @@ -43423,7 +43719,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" + "guid": "228da2e0-033f-425f-be65-3609369b4418" } } } @@ -43478,8 +43774,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "8a8082bd-02e2-4019-bb25-47726ee24857", - "tableGuid": "cdd56fd6-7017-48db-bb71-c1324fb0a63f" + "databaseGuid": "1063a7eb-4fb9-4d01-ab6e-19656949133d", + "tableGuid": "520c9d99-f407-47c1-b8de-88a1b4ada2b5" } }, "identity": 1, @@ -43487,7 +43783,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "8c3954b9-335c-4878-b4bd-aec08b8f3a6f" + "guid": "db5f0bb8-df9e-4669-b469-2cfa6d8e80fa" } }, "Example 9": { @@ -43638,7 +43934,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": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" + "guid": "f62f56de-9b16-4edb-9364-6a9e8a419833" } } } @@ -43662,7 +43958,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": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" + "guid": "f62f56de-9b16-4edb-9364-6a9e8a419833" } } } @@ -43686,7 +43982,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": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" + "guid": "f62f56de-9b16-4edb-9364-6a9e8a419833" } } } @@ -43710,7 +44006,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": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" + "guid": "f62f56de-9b16-4edb-9364-6a9e8a419833" } } } @@ -43835,7 +44131,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" + "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" } }, "Example 2": { @@ -43865,7 +44161,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" + "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" } }, "Example 2": { @@ -43895,7 +44191,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" + "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" } }, "Example 2": { @@ -43925,7 +44221,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" + "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" } }, "Example 2": { @@ -44117,7 +44413,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" + "guid": "70e66292-3561-4caf-a158-32b2d3724fde" } ], "name": "Unification" @@ -44198,7 +44494,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" + "guid": "70e66292-3561-4caf-a158-32b2d3724fde" } ], "name": "Unification" @@ -44279,7 +44575,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" + "guid": "70e66292-3561-4caf-a158-32b2d3724fde" } ], "name": "Unification" @@ -44360,7 +44656,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" + "guid": "70e66292-3561-4caf-a158-32b2d3724fde" } ], "name": "Unification" @@ -44498,7 +44794,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": "df53c2a6-8bee-4028-baff-bea02a5428bd" + "guid": "30525a62-69c0-46d4-bd49-51f55e42527d" } }, "Example 3": { @@ -44548,7 +44844,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": "df53c2a6-8bee-4028-baff-bea02a5428bd" + "guid": "30525a62-69c0-46d4-bd49-51f55e42527d" } }, "Example 3": { @@ -44598,7 +44894,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": "df53c2a6-8bee-4028-baff-bea02a5428bd" + "guid": "30525a62-69c0-46d4-bd49-51f55e42527d" } }, "Example 3": { @@ -44648,7 +44944,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": "df53c2a6-8bee-4028-baff-bea02a5428bd" + "guid": "30525a62-69c0-46d4-bd49-51f55e42527d" } }, "Example 3": { @@ -44879,7 +45175,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": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" + "guid": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" } }, "Example 3": { @@ -44911,7 +45207,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": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" + "guid": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" } }, "Example 3": { @@ -44943,7 +45239,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": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" + "guid": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" } }, "Example 3": { @@ -44975,7 +45271,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": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" + "guid": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" } }, "Example 3": { @@ -45164,7 +45460,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" + "guid": "81b31447-d84c-40e6-a607-39dad8baa112" } }, "Example 2": { @@ -45205,7 +45501,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" + "guid": "81b31447-d84c-40e6-a607-39dad8baa112" } }, "Example 2": { @@ -45246,7 +45542,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" + "guid": "81b31447-d84c-40e6-a607-39dad8baa112" } }, "Example 2": { @@ -45287,7 +45583,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" + "guid": "81b31447-d84c-40e6-a607-39dad8baa112" } }, "Example 2": { @@ -45789,7 +46085,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" + "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" } }, "Example 3": { @@ -45824,7 +46120,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" + "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" } }, "Example 3": { @@ -45859,7 +46155,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" + "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" } }, "Example 3": { @@ -45894,7 +46190,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" + "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" } }, "Example 3": { @@ -46126,7 +46422,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" + "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" } }, "Example 2": { @@ -46187,7 +46483,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" + "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" } }, "Example 2": { @@ -46248,7 +46544,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" + "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" } }, "Example 2": { @@ -46309,7 +46605,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" + "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" } }, "Example 2": { @@ -46795,9 +47091,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "4c4c951c-9aa3-4082-9278-2d351941d9c9", - "databaseVersionGuid": "a5241eff-5236-41da-b7e0-74fce1fc5e13", - "tableGuid": "cb6f8917-f9f1-4220-8582-4384f4265930" + "databaseGuid": "804b9113-d588-47ae-9f74-41c5f89459db", + "databaseVersionGuid": "9f4218a4-841d-4d7f-94ed-6addae2fd1d1", + "tableGuid": "7105c833-078b-42fd-a1a6-d8edacf00430" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -46807,7 +47103,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "9390b466-5075-4039-b028-c302f9a63e14" + "guid": "f360e9b8-a559-48de-b6da-f69b54b21710" }, { "identity": 8944, @@ -47335,7 +47631,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": "231fb8eb-bac7-41fe-968e-242d9e646f4a" + "guid": "1525d2fa-004a-4e26-8305-65308cef3498" } } } @@ -47350,7 +47646,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": "231fb8eb-bac7-41fe-968e-242d9e646f4a" + "guid": "1525d2fa-004a-4e26-8305-65308cef3498" } } } @@ -47365,7 +47661,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": "231fb8eb-bac7-41fe-968e-242d9e646f4a" + "guid": "1525d2fa-004a-4e26-8305-65308cef3498" } } } @@ -47380,7 +47676,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": "231fb8eb-bac7-41fe-968e-242d9e646f4a" + "guid": "1525d2fa-004a-4e26-8305-65308cef3498" } } } @@ -47489,7 +47785,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": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" + "guid": "467cfe8a-852b-425f-b208-9534bc55d592" } }, "Example 2": { @@ -47503,7 +47799,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": "e9b43552-0f96-4b32-9517-69e828a3f2aa" + "guid": "4edaefce-646f-4668-a67e-0f3b735adbf8" } } } @@ -47518,7 +47814,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": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" + "guid": "467cfe8a-852b-425f-b208-9534bc55d592" } }, "Example 2": { @@ -47532,7 +47828,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": "e9b43552-0f96-4b32-9517-69e828a3f2aa" + "guid": "4edaefce-646f-4668-a67e-0f3b735adbf8" } } } @@ -47547,7 +47843,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": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" + "guid": "467cfe8a-852b-425f-b208-9534bc55d592" } }, "Example 2": { @@ -47561,7 +47857,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": "e9b43552-0f96-4b32-9517-69e828a3f2aa" + "guid": "4edaefce-646f-4668-a67e-0f3b735adbf8" } } } @@ -47576,7 +47872,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": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" + "guid": "467cfe8a-852b-425f-b208-9534bc55d592" } }, "Example 2": { @@ -47590,7 +47886,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": "e9b43552-0f96-4b32-9517-69e828a3f2aa" + "guid": "4edaefce-646f-4668-a67e-0f3b735adbf8" } } } @@ -48049,8 +48345,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "896ece63-abe0-43d5-b229-420f2711f99c", - "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" + "a8ee6f28-242e-4168-8221-cf7b8e537c01", + "513d38f1-05d7-4db9-a681-4eb2d9104dbc" ], "type": "recordListMember" }, @@ -48874,8 +49170,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "896ece63-abe0-43d5-b229-420f2711f99c", - "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" + "a8ee6f28-242e-4168-8221-cf7b8e537c01", + "513d38f1-05d7-4db9-a681-4eb2d9104dbc" ], "type": "recordListMember" }, @@ -49699,8 +49995,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "896ece63-abe0-43d5-b229-420f2711f99c", - "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" + "a8ee6f28-242e-4168-8221-cf7b8e537c01", + "513d38f1-05d7-4db9-a681-4eb2d9104dbc" ], "type": "recordListMember" }, @@ -50524,8 +50820,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "896ece63-abe0-43d5-b229-420f2711f99c", - "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" + "a8ee6f28-242e-4168-8221-cf7b8e537c01", + "513d38f1-05d7-4db9-a681-4eb2d9104dbc" ], "type": "recordListMember" }, @@ -51427,8 +51723,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", - "61c36a89-d334-406a-9480-2239e4c1c82a" + "b339af51-5015-4c72-887d-cbd6875f0799", + "5fd9f980-d755-4c1d-a5bd-f59490f282f7" ], "type": "recordListMember" }, @@ -52252,8 +52548,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", - "61c36a89-d334-406a-9480-2239e4c1c82a" + "b339af51-5015-4c72-887d-cbd6875f0799", + "5fd9f980-d755-4c1d-a5bd-f59490f282f7" ], "type": "recordListMember" }, @@ -53077,8 +53373,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", - "61c36a89-d334-406a-9480-2239e4c1c82a" + "b339af51-5015-4c72-887d-cbd6875f0799", + "5fd9f980-d755-4c1d-a5bd-f59490f282f7" ], "type": "recordListMember" }, @@ -53902,8 +54198,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", - "61c36a89-d334-406a-9480-2239e4c1c82a" + "b339af51-5015-4c72-887d-cbd6875f0799", + "5fd9f980-d755-4c1d-a5bd-f59490f282f7" ], "type": "recordListMember" }, @@ -54796,8 +55092,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "63707538-5b9b-4ca6-856d-1fac13d3475e", - "ed1d4962-2a71-49e1-8d38-c2298a2010d1" + "23717047-f411-4fe7-9b21-cea2d3fb50fa", + "9303101c-153a-43c7-b35e-f3918a5417cc" ], "type": "recordListMember" }, @@ -55621,8 +55917,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "63707538-5b9b-4ca6-856d-1fac13d3475e", - "ed1d4962-2a71-49e1-8d38-c2298a2010d1" + "23717047-f411-4fe7-9b21-cea2d3fb50fa", + "9303101c-153a-43c7-b35e-f3918a5417cc" ], "type": "recordListMember" }, @@ -56446,8 +56742,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "63707538-5b9b-4ca6-856d-1fac13d3475e", - "ed1d4962-2a71-49e1-8d38-c2298a2010d1" + "23717047-f411-4fe7-9b21-cea2d3fb50fa", + "9303101c-153a-43c7-b35e-f3918a5417cc" ], "type": "recordListMember" }, @@ -57271,8 +57567,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "63707538-5b9b-4ca6-856d-1fac13d3475e", - "ed1d4962-2a71-49e1-8d38-c2298a2010d1" + "23717047-f411-4fe7-9b21-cea2d3fb50fa", + "9303101c-153a-43c7-b35e-f3918a5417cc" ], "type": "recordListMember" }, @@ -58141,8 +58437,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "86897e62-5944-43dd-ac1e-f85ba06ae18b", - "8fea942f-1b3c-45ae-b10f-c38f849dd769" + "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", + "4dc7440c-ff61-435e-b81c-ee6559250e7a" ], "type": "recordListMember" }, @@ -58966,8 +59262,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "86897e62-5944-43dd-ac1e-f85ba06ae18b", - "8fea942f-1b3c-45ae-b10f-c38f849dd769" + "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", + "4dc7440c-ff61-435e-b81c-ee6559250e7a" ], "type": "recordListMember" }, @@ -59791,8 +60087,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "86897e62-5944-43dd-ac1e-f85ba06ae18b", - "8fea942f-1b3c-45ae-b10f-c38f849dd769" + "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", + "4dc7440c-ff61-435e-b81c-ee6559250e7a" ], "type": "recordListMember" }, @@ -60616,8 +60912,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "86897e62-5944-43dd-ac1e-f85ba06ae18b", - "8fea942f-1b3c-45ae-b10f-c38f849dd769" + "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", + "4dc7440c-ff61-435e-b81c-ee6559250e7a" ], "type": "recordListMember" }, @@ -63096,9 +63392,6 @@ "type": "string", "nullable": true }, - "aboutAttribute": { - "$ref": "#/components/schemas/GsaSlimEntity" - }, "isHiddenFromSearchCriteria": { "type": "boolean", "description": "If true, the attribute should not be shown in search UIs.\r\nIt will still be included in text searches.\r\nIf not specified, it will be set to the default value for the attribute type.",