diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index 69527329..02a3bdb8 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 = "5.1.0.dev686" +version = "5.1.0.dev692" license = "MIT" authors = ["ANSYS, Inc. "] maintainers = ["ANSYS, Inc. "] diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py index 5ed8cf5e..ca51821e 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__ = "5.1.0.dev686" +__version__ = "5.1.0.dev692" diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py index a8908b83..27bf0312 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py @@ -886,6 +886,8 @@ GsaNumericRestrictedInterpolationParameterErrorDetail, ) from .models.gsa_object_identifier import GsaObjectIdentifier +from .models.gsa_orphaned_search_index import GsaOrphanedSearchIndex +from .models.gsa_orphaned_search_indexes_info import GsaOrphanedSearchIndexesInfo from .models.gsa_pagination_links import GsaPaginationLinks from .models.gsa_paging_options import GsaPagingOptions from .models.gsa_parameter import GsaParameter @@ -2041,6 +2043,8 @@ "GsaNumericParameterValue", "GsaNumericRestrictedInterpolationParameterErrorDetail", "GsaObjectIdentifier", + "GsaOrphanedSearchIndex", + "GsaOrphanedSearchIndexesInfo", "GsaPaginationLinks", "GsaPagingOptions", "GsaParameter", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/status_api.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/status_api.py index 05b3af21..ba7e7028 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/status_api.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/status_api.py @@ -181,6 +181,68 @@ def _get_database_status_with_http_info(self, database_key: "str", **kwargs: Any response_type_map=response_type_map, ) + def get_orphaned_search_indexes(self) -> "GsaOrphanedSearchIndexesInfo | None": + """Returns information about orphaned search indexes + + This method makes a synchronous HTTP request. + + Returns + ------- + GsaOrphanedSearchIndexesInfo | None + """ + data = self._get_orphaned_search_indexes_with_http_info(_return_http_data_only=True) + return data # type: ignore[no-any-return] + + def _get_orphaned_search_indexes_with_http_info(self, **kwargs: Any) -> Any: + all_params = ["_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 get_orphaned_search_indexes" + ) + params[key] = val + del params["kwargs"] + + collection_formats: dict[str, Any] = {} + + path_params: dict[str, Any] = {} + + query_params: list[Any] = [] + + header_params: dict[str, Any] = {} + + form_params: list[Any] = [] + local_var_files: dict[str, Any] = {} + + body_params = None + # HTTP header 'Accept' + header_params["Accept"] = self.api_client.select_header_accept( + ["text/plain", "application/json", "text/json"] + ) + + response_type_map: dict[int, Optional[str]] = { + 200: "GsaOrphanedSearchIndexesInfo", + 403: None, + } + + return self.api_client.call_api( + "/v1alpha/status/orphanedSearchIndexes", + "GET", + 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 get_search_cluster_status(self) -> "GsaSearchClusterStatus": """Returns disk status information for the search cluster diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py index a02d4584..d8edd06c 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py @@ -783,6 +783,8 @@ GsaNumericRestrictedInterpolationParameterErrorDetail, ) from .gsa_object_identifier import GsaObjectIdentifier +from .gsa_orphaned_search_index import GsaOrphanedSearchIndex +from .gsa_orphaned_search_indexes_info import GsaOrphanedSearchIndexesInfo from .gsa_pagination_links import GsaPaginationLinks from .gsa_paging_options import GsaPagingOptions from .gsa_parameter import GsaParameter @@ -1880,6 +1882,8 @@ "GsaNumericParameterValue", "GsaNumericRestrictedInterpolationParameterErrorDetail", "GsaObjectIdentifier", + "GsaOrphanedSearchIndex", + "GsaOrphanedSearchIndexesInfo", "GsaPaginationLinks", "GsaPagingOptions", "GsaParameter", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_orphaned_search_index.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_orphaned_search_index.py new file mode 100644 index 00000000..5bdc36b9 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_orphaned_search_index.py @@ -0,0 +1,147 @@ +# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates. +# SPDX-License-Identifier: MIT +# +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +""" +MI Server API + +No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + +OpenAPI spec version: v1 + +Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + +import re # noqa: F401 +from typing import TYPE_CHECKING, Any, BinaryIO, Optional # noqa: F401 + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaOrphanedSearchIndex(ModelBase): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes + ---------- + swagger_types: dict[str, str] + The key is attribute name and the value is attribute type. + attribute_map: dict[str, str] + The key is attribute name and the value is json key in definition. + subtype_mapping: dict[str, str] + The key is the unmangled property name and the value is the corresponding type. + discriminator: Optional[str] + Name of the property used as discriminator for subtypes. + """ + swagger_types: dict[str, str] = { + "index_name": "str", + } + + attribute_map: dict[str, str] = { + "index_name": "indexName", + } + + subtype_mapping: dict[str, str] = {} + + discriminator: Optional[str] = None + + def __init__( + self, + *, + index_name: "str", + ) -> None: + """GsaOrphanedSearchIndex - a model defined in Swagger + + Parameters + ---------- + index_name: str + """ + self._index_name: str + + self.index_name = index_name + + @property + def index_name(self) -> "str": + """Gets the index_name of this GsaOrphanedSearchIndex. + + Returns + ------- + str + The index_name of this GsaOrphanedSearchIndex. + """ + return self._index_name + + @index_name.setter + def index_name(self, index_name: "str") -> None: + """Sets the index_name of this GsaOrphanedSearchIndex. + + Parameters + ---------- + index_name: str + The index_name of this GsaOrphanedSearchIndex. + """ + # Field is not nullable + if index_name is None: + raise ValueError("Invalid value for 'index_name', must not be 'None'") + # Field is required + if index_name is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'index_name', must not be 'Unset'") + self._index_name = index_name + + @classmethod + def get_real_child_model(cls, data: dict[str, str]) -> str: + """Raises a NotImplementedError for a type without a discriminator defined. + + Parameters + ---------- + data: ModelBase + Object representing a subclass of this class + + Raises + ------ + NotImplementedError + This class has no discriminator, and hence no subclasses + """ + raise NotImplementedError() + + def __repr__(self) -> str: + """For 'print' and 'pprint'""" + return self.to_str() + + def __eq__(self, other: Any) -> bool: + """Returns true if both objects are equal""" + if not isinstance(other, GsaOrphanedSearchIndex): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other: Any) -> bool: + """Returns true if both objects are not equal""" + return not self == other diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_orphaned_search_indexes_info.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_orphaned_search_indexes_info.py new file mode 100644 index 00000000..409e2560 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_orphaned_search_indexes_info.py @@ -0,0 +1,185 @@ +# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates. +# SPDX-License-Identifier: MIT +# +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +""" +MI Server API + +No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + +OpenAPI spec version: v1 + +Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + +import re # noqa: F401 +from typing import TYPE_CHECKING, Any, BinaryIO, Optional # noqa: F401 + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaOrphanedSearchIndexesInfo(ModelBase): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes + ---------- + swagger_types: dict[str, str] + The key is attribute name and the value is attribute type. + attribute_map: dict[str, str] + The key is attribute name and the value is json key in definition. + subtype_mapping: dict[str, str] + The key is the unmangled property name and the value is the corresponding type. + discriminator: Optional[str] + Name of the property used as discriminator for subtypes. + """ + swagger_types: dict[str, str] = { + "disk_space_used_in_bytes": "int", + "orphaned_search_indexes": "list[GsaOrphanedSearchIndex]", + } + + attribute_map: dict[str, str] = { + "disk_space_used_in_bytes": "diskSpaceUsedInBytes", + "orphaned_search_indexes": "orphanedSearchIndexes", + } + + subtype_mapping: dict[str, str] = { + "orphanedSearchIndexes": "GsaOrphanedSearchIndex", + } + + discriminator: Optional[str] = None + + def __init__( + self, + *, + disk_space_used_in_bytes: "int", + orphaned_search_indexes: "list[GsaOrphanedSearchIndex]", + ) -> None: + """GsaOrphanedSearchIndexesInfo - a model defined in Swagger + + Parameters + ---------- + disk_space_used_in_bytes: int + orphaned_search_indexes: list[GsaOrphanedSearchIndex] + """ + self._orphaned_search_indexes: list[GsaOrphanedSearchIndex] + self._disk_space_used_in_bytes: int + + self.orphaned_search_indexes = orphaned_search_indexes + self.disk_space_used_in_bytes = disk_space_used_in_bytes + + @property + def orphaned_search_indexes(self) -> "list[GsaOrphanedSearchIndex]": + """Gets the orphaned_search_indexes of this GsaOrphanedSearchIndexesInfo. + + Returns + ------- + list[GsaOrphanedSearchIndex] + The orphaned_search_indexes of this GsaOrphanedSearchIndexesInfo. + """ + return self._orphaned_search_indexes + + @orphaned_search_indexes.setter + def orphaned_search_indexes( + self, orphaned_search_indexes: "list[GsaOrphanedSearchIndex]" + ) -> None: + """Sets the orphaned_search_indexes of this GsaOrphanedSearchIndexesInfo. + + Parameters + ---------- + orphaned_search_indexes: list[GsaOrphanedSearchIndex] + The orphaned_search_indexes of this GsaOrphanedSearchIndexesInfo. + """ + # Field is not nullable + if orphaned_search_indexes is None: + raise ValueError("Invalid value for 'orphaned_search_indexes', must not be 'None'") + # Field is required + if orphaned_search_indexes is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'orphaned_search_indexes', must not be 'Unset'") + self._orphaned_search_indexes = orphaned_search_indexes + + @property + def disk_space_used_in_bytes(self) -> "int": + """Gets the disk_space_used_in_bytes of this GsaOrphanedSearchIndexesInfo. + + Returns + ------- + int + The disk_space_used_in_bytes of this GsaOrphanedSearchIndexesInfo. + """ + return self._disk_space_used_in_bytes + + @disk_space_used_in_bytes.setter + def disk_space_used_in_bytes(self, disk_space_used_in_bytes: "int") -> None: + """Sets the disk_space_used_in_bytes of this GsaOrphanedSearchIndexesInfo. + + Parameters + ---------- + disk_space_used_in_bytes: int + The disk_space_used_in_bytes of this GsaOrphanedSearchIndexesInfo. + """ + # Field is not nullable + if disk_space_used_in_bytes is None: + raise ValueError("Invalid value for 'disk_space_used_in_bytes', must not be 'None'") + # Field is required + if disk_space_used_in_bytes is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'disk_space_used_in_bytes', must not be 'Unset'") + self._disk_space_used_in_bytes = disk_space_used_in_bytes + + @classmethod + def get_real_child_model(cls, data: dict[str, str]) -> str: + """Raises a NotImplementedError for a type without a discriminator defined. + + Parameters + ---------- + data: ModelBase + Object representing a subclass of this class + + Raises + ------ + NotImplementedError + This class has no discriminator, and hence no subclasses + """ + raise NotImplementedError() + + def __repr__(self) -> str: + """For 'print' and 'pprint'""" + return self.to_str() + + def __eq__(self, other: Any) -> bool: + """Returns true if both objects are equal""" + if not isinstance(other, GsaOrphanedSearchIndexesInfo): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other: Any) -> bool: + """Returns true if both objects are not equal""" + return not self == other diff --git a/yaml/server-api.json b/yaml/server-api.json index e25fae9b..d7171922 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -47,7 +47,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -58,7 +58,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -70,7 +70,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": false } } @@ -81,7 +81,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -91,9 +91,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -207,7 +207,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -240,7 +240,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -251,7 +251,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -263,7 +263,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": false } } @@ -274,7 +274,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -284,9 +284,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -400,7 +400,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -433,7 +433,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -444,7 +444,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -456,7 +456,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": false } } @@ -467,7 +467,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -477,9 +477,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -593,7 +593,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -626,7 +626,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -637,7 +637,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -649,7 +649,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": false } } @@ -660,7 +660,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -670,9 +670,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-18T00:00:00Z", + "dateTo": "2025-07-22T00:00:00Z", "dateToInclusive": true } } @@ -786,7 +786,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-16T00:00:00Z", + "dateFrom": "2025-07-20T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -826,7 +826,7 @@ "value": { "entries": [ { - "date": "2025-07-23T00:00:00+00:00", + "date": "2025-07-27T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Viewer" @@ -835,7 +835,7 @@ "usageMode": "edit" }, { - "date": "2025-07-22T00:00:00+00:00", + "date": "2025-07-26T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Explore", @@ -860,7 +860,7 @@ "value": { "entries": [ { - "date": "2025-07-23T00:00:00+00:00", + "date": "2025-07-27T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Viewer" @@ -869,7 +869,7 @@ "usageMode": "edit" }, { - "date": "2025-07-22T00:00:00+00:00", + "date": "2025-07-26T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Explore", @@ -894,7 +894,7 @@ "value": { "entries": [ { - "date": "2025-07-23T00:00:00+00:00", + "date": "2025-07-27T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Viewer" @@ -903,7 +903,7 @@ "usageMode": "edit" }, { - "date": "2025-07-22T00:00:00+00:00", + "date": "2025-07-26T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Explore", @@ -1096,7 +1096,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "39f58761-8af8-460c-9cd7-8dcfea60fb71", + "criterionGuid": "0d218810-3ea3-4654-8332-e4377fb86198", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1122,7 +1122,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d31fe531-5d79-43ad-9547-6767abf159ea", + "criterionGuid": "df4d842c-0cd3-4fe9-9fd2-07c566f6e7a7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1154,7 +1154,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d2a6ef8b-ce73-41ab-bea1-15f519909a34", + "criterionGuid": "5dc9db0f-3341-4b71-9503-5b9cc1cd61d9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1316,7 +1316,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "39f58761-8af8-460c-9cd7-8dcfea60fb71", + "criterionGuid": "0d218810-3ea3-4654-8332-e4377fb86198", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1342,7 +1342,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d31fe531-5d79-43ad-9547-6767abf159ea", + "criterionGuid": "df4d842c-0cd3-4fe9-9fd2-07c566f6e7a7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1374,7 +1374,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d2a6ef8b-ce73-41ab-bea1-15f519909a34", + "criterionGuid": "5dc9db0f-3341-4b71-9503-5b9cc1cd61d9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1536,7 +1536,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "39f58761-8af8-460c-9cd7-8dcfea60fb71", + "criterionGuid": "0d218810-3ea3-4654-8332-e4377fb86198", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1562,7 +1562,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d31fe531-5d79-43ad-9547-6767abf159ea", + "criterionGuid": "df4d842c-0cd3-4fe9-9fd2-07c566f6e7a7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1594,7 +1594,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d2a6ef8b-ce73-41ab-bea1-15f519909a34", + "criterionGuid": "5dc9db0f-3341-4b71-9503-5b9cc1cd61d9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1756,7 +1756,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "39f58761-8af8-460c-9cd7-8dcfea60fb71", + "criterionGuid": "0d218810-3ea3-4654-8332-e4377fb86198", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1782,7 +1782,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d31fe531-5d79-43ad-9547-6767abf159ea", + "criterionGuid": "df4d842c-0cd3-4fe9-9fd2-07c566f6e7a7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1814,7 +1814,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d2a6ef8b-ce73-41ab-bea1-15f519909a34", + "criterionGuid": "5dc9db0f-3341-4b71-9503-5b9cc1cd61d9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2062,7 +2062,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ded9410-51da-4898-88a5-f5dcaa262f24", + "criterionGuid": "ddcfa49f-b859-489e-903a-39b7029f4bc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2088,7 +2088,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62df8ca9-b0c0-4138-9d64-1c32597f481b", + "criterionGuid": "798dd748-c981-4ea7-8cfc-8e38b73b6eb6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2120,7 +2120,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fbac4310-9c4e-40c8-8000-9fc15ae9349b", + "criterionGuid": "4f4d0c14-289e-4359-b9b3-5b03b41b2df1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2282,7 +2282,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ded9410-51da-4898-88a5-f5dcaa262f24", + "criterionGuid": "ddcfa49f-b859-489e-903a-39b7029f4bc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2308,7 +2308,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62df8ca9-b0c0-4138-9d64-1c32597f481b", + "criterionGuid": "798dd748-c981-4ea7-8cfc-8e38b73b6eb6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2340,7 +2340,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fbac4310-9c4e-40c8-8000-9fc15ae9349b", + "criterionGuid": "4f4d0c14-289e-4359-b9b3-5b03b41b2df1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2502,7 +2502,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ded9410-51da-4898-88a5-f5dcaa262f24", + "criterionGuid": "ddcfa49f-b859-489e-903a-39b7029f4bc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2528,7 +2528,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62df8ca9-b0c0-4138-9d64-1c32597f481b", + "criterionGuid": "798dd748-c981-4ea7-8cfc-8e38b73b6eb6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2560,7 +2560,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fbac4310-9c4e-40c8-8000-9fc15ae9349b", + "criterionGuid": "4f4d0c14-289e-4359-b9b3-5b03b41b2df1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2722,7 +2722,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ded9410-51da-4898-88a5-f5dcaa262f24", + "criterionGuid": "ddcfa49f-b859-489e-903a-39b7029f4bc7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2748,7 +2748,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62df8ca9-b0c0-4138-9d64-1c32597f481b", + "criterionGuid": "798dd748-c981-4ea7-8cfc-8e38b73b6eb6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2780,7 +2780,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fbac4310-9c4e-40c8-8000-9fc15ae9349b", + "criterionGuid": "4f4d0c14-289e-4359-b9b3-5b03b41b2df1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3017,7 +3017,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0e0e2cf7-d2cd-47a8-866f-7341091e19be", + "criterionGuid": "489cffac-4f8a-4b8c-9896-2784c3497160", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3043,7 +3043,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0ddbf35a-64be-4885-ba0b-4df94cd7c538", + "criterionGuid": "a430db52-cd59-4f60-bc93-aeb91417d32c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3075,7 +3075,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1863c297-a3a0-4247-a281-7c3657c072e8", + "criterionGuid": "f1393cf9-5688-4f62-94ce-d01e747a819f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3237,7 +3237,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0e0e2cf7-d2cd-47a8-866f-7341091e19be", + "criterionGuid": "489cffac-4f8a-4b8c-9896-2784c3497160", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3263,7 +3263,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0ddbf35a-64be-4885-ba0b-4df94cd7c538", + "criterionGuid": "a430db52-cd59-4f60-bc93-aeb91417d32c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3295,7 +3295,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1863c297-a3a0-4247-a281-7c3657c072e8", + "criterionGuid": "f1393cf9-5688-4f62-94ce-d01e747a819f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3457,7 +3457,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0e0e2cf7-d2cd-47a8-866f-7341091e19be", + "criterionGuid": "489cffac-4f8a-4b8c-9896-2784c3497160", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3483,7 +3483,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0ddbf35a-64be-4885-ba0b-4df94cd7c538", + "criterionGuid": "a430db52-cd59-4f60-bc93-aeb91417d32c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3515,7 +3515,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1863c297-a3a0-4247-a281-7c3657c072e8", + "criterionGuid": "f1393cf9-5688-4f62-94ce-d01e747a819f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3677,7 +3677,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0e0e2cf7-d2cd-47a8-866f-7341091e19be", + "criterionGuid": "489cffac-4f8a-4b8c-9896-2784c3497160", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3703,7 +3703,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0ddbf35a-64be-4885-ba0b-4df94cd7c538", + "criterionGuid": "a430db52-cd59-4f60-bc93-aeb91417d32c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3735,7 +3735,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1863c297-a3a0-4247-a281-7c3657c072e8", + "criterionGuid": "f1393cf9-5688-4f62-94ce-d01e747a819f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3945,7 +3945,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "70a21f1c-bb5b-4f80-94b2-2cb16cf0fdb5", + "criterionGuid": "e26e833c-6049-428d-ac72-730747f9f4d7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3971,7 +3971,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e9dde4ed-c287-4273-aa1b-d48b6fa849f1", + "criterionGuid": "977684c7-7901-4291-846c-9acfe48bacad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4003,7 +4003,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5e5f4758-2f01-40e7-b40e-3eeac204d1c4", + "criterionGuid": "acdb0ca3-e785-4a56-836c-9c834783e20f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4165,7 +4165,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "70a21f1c-bb5b-4f80-94b2-2cb16cf0fdb5", + "criterionGuid": "e26e833c-6049-428d-ac72-730747f9f4d7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4191,7 +4191,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e9dde4ed-c287-4273-aa1b-d48b6fa849f1", + "criterionGuid": "977684c7-7901-4291-846c-9acfe48bacad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4223,7 +4223,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5e5f4758-2f01-40e7-b40e-3eeac204d1c4", + "criterionGuid": "acdb0ca3-e785-4a56-836c-9c834783e20f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4385,7 +4385,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "70a21f1c-bb5b-4f80-94b2-2cb16cf0fdb5", + "criterionGuid": "e26e833c-6049-428d-ac72-730747f9f4d7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4411,7 +4411,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e9dde4ed-c287-4273-aa1b-d48b6fa849f1", + "criterionGuid": "977684c7-7901-4291-846c-9acfe48bacad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4443,7 +4443,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5e5f4758-2f01-40e7-b40e-3eeac204d1c4", + "criterionGuid": "acdb0ca3-e785-4a56-836c-9c834783e20f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4605,7 +4605,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "70a21f1c-bb5b-4f80-94b2-2cb16cf0fdb5", + "criterionGuid": "e26e833c-6049-428d-ac72-730747f9f4d7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4631,7 +4631,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e9dde4ed-c287-4273-aa1b-d48b6fa849f1", + "criterionGuid": "977684c7-7901-4291-846c-9acfe48bacad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4663,7 +4663,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5e5f4758-2f01-40e7-b40e-3eeac204d1c4", + "criterionGuid": "acdb0ca3-e785-4a56-836c-9c834783e20f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -8332,7 +8332,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0495411+00:00" + "value": "2025-07-27T00:04:57.6525351+00:00" } }, "Example 11": { @@ -8555,7 +8555,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0495411+00:00" + "value": "2025-07-27T00:04:57.6525351+00:00" } }, "Example 11": { @@ -8778,7 +8778,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0495411+00:00" + "value": "2025-07-27T00:04:57.6525351+00:00" } }, "Example 11": { @@ -9001,7 +9001,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0495411+00:00" + "value": "2025-07-27T00:04:57.6525351+00:00" } }, "Example 11": { @@ -9550,7 +9550,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0651656+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 25": { @@ -9773,7 +9773,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0651656+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 25": { @@ -9996,7 +9996,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0651656+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 25": { @@ -10219,7 +10219,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0651656+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 25": { @@ -10696,7 +10696,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 8": { @@ -10793,7 +10793,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 8": { @@ -10890,7 +10890,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 8": { @@ -10987,7 +10987,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 8": { @@ -11443,7 +11443,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 17": { @@ -11540,7 +11540,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 17": { @@ -11637,7 +11637,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 17": { @@ -11734,7 +11734,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-23T23:52:29.0807929+00:00" + "value": "2025-07-27T00:04:57.6681596+00:00" } }, "Example 17": { @@ -21158,7 +21158,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "5e9c61f0-1122-4285-a6fa-5cb186caffcb" + "40149592-3863-457d-a617-ba72aae4c01a" ], "listActionsToInclude": [ "ItemAdded", @@ -21182,7 +21182,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "5e9c61f0-1122-4285-a6fa-5cb186caffcb" + "40149592-3863-457d-a617-ba72aae4c01a" ], "listActionsToInclude": [ "ItemAdded", @@ -21206,7 +21206,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "5e9c61f0-1122-4285-a6fa-5cb186caffcb" + "40149592-3863-457d-a617-ba72aae4c01a" ], "listActionsToInclude": [ "ItemAdded", @@ -21230,7 +21230,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "5e9c61f0-1122-4285-a6fa-5cb186caffcb" + "40149592-3863-457d-a617-ba72aae4c01a" ], "listActionsToInclude": [ "ItemAdded", @@ -22725,15 +22725,15 @@ "categories": [ { "name": "Geo", - "guid": "1e8ca270-99fe-4f3e-8fc9-3180f23c0d1f" + "guid": "5024f18a-85af-4fb4-8d8d-54c0debbaa80" }, { "name": "Sensitivity", - "guid": "f966d2af-7493-4dd0-8456-2a9a9510cb2b" + "guid": "b32400a7-8f12-4bfe-9df3-7c86f0a23b78" }, { "name": "Division", - "guid": "4f0f1683-47b0-4381-a832-a37c82cb24b1" + "guid": "ba63343d-489b-424e-98c6-93ea97d5d4fa" } ] } @@ -22793,19 +22793,19 @@ "permissions": [ { "name": "US", - "guid": "3e5fb1c8-2da3-4290-aa3b-865a79e71a64" + "guid": "46dd2daa-694b-46a1-ac01-8455306ee708" }, { "name": "EMEA", - "guid": "47ed44f7-dc4d-485f-8515-32d7a8ed08ee" + "guid": "41efb303-1207-4654-a30a-24a46b9549ca" }, { "name": "APAC", - "guid": "f83e724b-74ab-4b57-96a6-901eddfcb6e1" + "guid": "b07d477e-4225-42e4-b534-55a85f0d30b5" } ], "name": "Geo", - "guid": "1e8ca270-99fe-4f3e-8fc9-3180f23c0d1f" + "guid": "5024f18a-85af-4fb4-8d8d-54c0debbaa80" } } } @@ -22863,15 +22863,15 @@ "permissions": [ { "name": "US", - "guid": "3e5fb1c8-2da3-4290-aa3b-865a79e71a64" + "guid": "46dd2daa-694b-46a1-ac01-8455306ee708" }, { "name": "EMEA", - "guid": "47ed44f7-dc4d-485f-8515-32d7a8ed08ee" + "guid": "41efb303-1207-4654-a30a-24a46b9549ca" }, { "name": "APAC", - "guid": "f83e724b-74ab-4b57-96a6-901eddfcb6e1" + "guid": "b07d477e-4225-42e4-b534-55a85f0d30b5" } ] } @@ -22942,7 +22942,7 @@ "setMessage": "Permission set", "unsetMessage": "No permission set", "name": "US", - "guid": "3e5fb1c8-2da3-4290-aa3b-865a79e71a64" + "guid": "46dd2daa-694b-46a1-ac01-8455306ee708" } } } @@ -23235,7 +23235,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "5cce1128-6fe4-4ab0-94bb-38cdca326f6c" + "guid": "5189b4ec-6839-482d-a2e0-08b6f3e36975" } }, "Example 4": { @@ -23297,7 +23297,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "5cce1128-6fe4-4ab0-94bb-38cdca326f6c" + "guid": "5189b4ec-6839-482d-a2e0-08b6f3e36975" } }, "Example 4": { @@ -23359,7 +23359,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "5cce1128-6fe4-4ab0-94bb-38cdca326f6c" + "guid": "5189b4ec-6839-482d-a2e0-08b6f3e36975" } }, "Example 4": { @@ -23421,7 +23421,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "5cce1128-6fe4-4ab0-94bb-38cdca326f6c" + "guid": "5189b4ec-6839-482d-a2e0-08b6f3e36975" } }, "Example 4": { @@ -23477,11 +23477,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "bcef4d5d-fc9d-4caf-af60-ee9357e8e376" + "guid": "102532e1-5bb8-4ba5-88b2-87f950ba02dc" } ], "subsets": [], - "guid": "7b70f4f9-ea75-4c2c-91d4-4295da5842c1" + "guid": "62d356c5-16e7-425d-b2ec-70eb18dd0859" } } } @@ -24218,7 +24218,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "565c48c6-10c1-4e6e-b719-c3e13d30115e" + "guid": "28d69f69-78ef-4901-8514-c60839507440" } } } @@ -24508,7 +24508,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "a7888fc7-e7cd-404f-b123-f163c1f59096" + "guid": "e588c517-6675-49da-95fb-7ddc79103faa" } } } @@ -25118,7 +25118,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID 'abe0a9a4-a7b8-463f-bd2c-49de2976de95'.", + "message": "Cannot release record version with GUID '5317dc4b-bb07-4a96-a24b-01c34ea86a4a'.", "code": "releaseRecordVersionControl", "errors": [ { @@ -25273,7 +25273,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID 'b5681a71-894d-4c7a-af32-0e2680dd4a8c'.", + "message": "Cannot create a new version from the record version with GUID '57ee95d2-da19-46b6-8c22-f17a3d96e8cc'.", "code": "getModifiableRecordVersionControl", "errors": [ { @@ -25283,7 +25283,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "b4b83020-547e-4302-bcd4-e233e72a7e98" + "guid": "22035ef8-f53f-4771-a47a-67a5d1e9f203" } } ] @@ -25777,8 +25777,8 @@ "resolvedLinkTargets": [ { "linkTarget": { - "databaseGuid": "b3e27ad4-e37c-4a8d-a414-9f213fcbaaf2", - "tableGuid": "0f555d7f-9b5d-4aae-9553-fd23cd0f6dd2" + "databaseGuid": "600c5fbd-e70c-4f85-aaac-19612a590d30", + "tableGuid": "5872f40a-d5fa-4368-8ff2-ad95da3e26fd" }, "tables": [] }, @@ -25979,7 +25979,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "f8e9c090-937e-4747-8112-0b2649e41433" + "guid": "0fac8a77-8cc3-4d49-abd4-ddf75f0ccdb8" } }, "Example 4": { @@ -26392,7 +26392,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "f8e9c090-937e-4747-8112-0b2649e41433" + "guid": "0fac8a77-8cc3-4d49-abd4-ddf75f0ccdb8" } }, "Example 4": { @@ -26805,7 +26805,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "f8e9c090-937e-4747-8112-0b2649e41433" + "guid": "0fac8a77-8cc3-4d49-abd4-ddf75f0ccdb8" } }, "Example 4": { @@ -27218,7 +27218,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "f8e9c090-937e-4747-8112-0b2649e41433" + "guid": "0fac8a77-8cc3-4d49-abd4-ddf75f0ccdb8" } }, "Example 4": { @@ -27707,7 +27707,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "7ceb96b9-f95b-40d3-8f84-c9b81505862d" + "guid": "7296f376-9949-4103-9575-7278eb2b1402" } ], "primarySmartLinkGroups": [], @@ -27875,8 +27875,8 @@ "code": "attributeCreation", "errors": [ { - "message": "Could not find discrete type with GUID '8a4fd2f8-0d06-4d6f-9047-2963a5dd9a4d' in database 'MI_Training'.", - "guid": "8a4fd2f8-0d06-4d6f-9047-2963a5dd9a4d", + "message": "Could not find discrete type with GUID '4f599426-5951-465a-883c-324b81b67d88' in database 'MI_Training'.", + "guid": "4f599426-5951-465a-883c-324b81b67d88", "databaseKey": "MI_Training", "entityType": "discreteType", "reason": "noSuchEntity" @@ -27892,8 +27892,8 @@ "code": "attributeCreation", "errors": [ { - "message": "Could not find unit with GUID '5e76e758-64f7-4f2c-849b-06e0767e37e0' in database 'MI_Training'.", - "guid": "5e76e758-64f7-4f2c-849b-06e0767e37e0", + "message": "Could not find unit with GUID '1f57b894-2bef-4025-a896-49eba3779294' in database 'MI_Training'.", + "guid": "1f57b894-2bef-4025-a896-49eba3779294", "databaseKey": "MI_Training", "entityType": "unit", "reason": "noSuchEntity" @@ -27906,9 +27906,9 @@ "reason": "noExpressions" }, { - "message": "Parameters in parameter contents must be from this attribute's parameters. GUIDs not found in attribute's parameters: '70d20611-e80e-497c-a9fd-4bb027414e28'.", + "message": "Parameters in parameter contents must be from this attribute's parameters. GUIDs not found in attribute's parameters: '7ac4433e-0c66-45cc-a438-f12d420c8636'.", "parameterGuids": [ - "70d20611-e80e-497c-a9fd-4bb027414e28" + "7ac4433e-0c66-45cc-a438-f12d420c8636" ], "reason": "parameterContentUnknownParameters" } @@ -28111,7 +28111,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "e9587185-a1a0-46fa-8a8b-092ce880e68f" + "guid": "62554202-0e86-40b3-823a-88b70048f88e" } ], "primarySmartLinkGroups": [], @@ -29607,7 +29607,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "daf55fe1-0f73-48da-bcef-d1d169f895a8" + "guid": "6b2a8990-aa1a-4063-b292-df4dad429cf4" } ], "primarySmartLinkGroups": [], @@ -30098,7 +30098,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "40c3063e-fa58-4669-bfb0-c82b1067ee99" + "guid": "0b3c2175-b27d-47ea-8002-e23bd2510301" } ], "primarySmartLinkGroups": [], @@ -30594,7 +30594,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "56851441-bee1-4ed8-8b1e-2c1aa829fe44" + "guid": "f8536741-2302-4a9f-ba14-20548f6af182" } ], "primarySmartLinkGroups": [], @@ -30805,7 +30805,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute with GUID '609f25ac-d626-4f58-a2ec-60251c8cefea'.", + "message": "Cannot delete attribute with GUID '3e7b4b87-6ba7-4b62-a9ff-44366472e54b'.", "code": "deletion", "errors": [ { @@ -30820,7 +30820,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "679b7bce-3060-41ba-92b7-f44a9a29a1b5" + "guid": "199e08b1-5995-440f-8011-63daac8fc583" } ] } @@ -31140,7 +31140,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "74c191fa-5368-4c80-878d-88b0e623ca75" + "guid": "9d7f6c36-c564-4fd8-a371-c489fab5b383" } ], "primarySmartLinkGroups": [], @@ -31307,8 +31307,8 @@ "message": "The name or GUID is not valid.", "errors": [ { - "message": "MetaAttribute with GUID 'ca9c5547-eb6a-4997-8edd-4f576c5d76b8' already exists.", - "guid": "ca9c5547-eb6a-4997-8edd-4f576c5d76b8", + "message": "MetaAttribute with GUID 'a0ba0b69-2780-4435-9b09-b191c79633e1' already exists.", + "guid": "a0ba0b69-2780-4435-9b09-b191c79633e1", "reason": "entityAlreadyExists", "entityType": "metaAttribute" } @@ -33801,7 +33801,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": "f103b8a7-6f3d-43e6-aab0-e2ec50246f9e" + "guid": "9ef3203f-b0ba-4e4b-a31c-2fa3205e2566" } } } @@ -33826,7 +33826,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": "f103b8a7-6f3d-43e6-aab0-e2ec50246f9e" + "guid": "9ef3203f-b0ba-4e4b-a31c-2fa3205e2566" } } } @@ -33851,7 +33851,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": "f103b8a7-6f3d-43e6-aab0-e2ec50246f9e" + "guid": "9ef3203f-b0ba-4e4b-a31c-2fa3205e2566" } } } @@ -33876,7 +33876,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": "f103b8a7-6f3d-43e6-aab0-e2ec50246f9e" + "guid": "9ef3203f-b0ba-4e4b-a31c-2fa3205e2566" } } } @@ -34067,7 +34067,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": "c1428a1f-41d9-430a-b3a6-38e9d2d9c18a" + "guid": "9cb8097c-10e7-4889-8875-6463eea1a3a7" } }, "Example 2": { @@ -34091,7 +34091,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": "c1428a1f-41d9-430a-b3a6-38e9d2d9c18a" + "guid": "9cb8097c-10e7-4889-8875-6463eea1a3a7" } }, "Example 2": { @@ -34115,7 +34115,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": "c1428a1f-41d9-430a-b3a6-38e9d2d9c18a" + "guid": "9cb8097c-10e7-4889-8875-6463eea1a3a7" } }, "Example 2": { @@ -34139,7 +34139,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": "c1428a1f-41d9-430a-b3a6-38e9d2d9c18a" + "guid": "9cb8097c-10e7-4889-8875-6463eea1a3a7" } }, "Example 2": { @@ -34181,9 +34181,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a Configuration file to ''.", "value": { - "message": "Cannot update Configuration file with GUID '3257598e-3806-4418-88df-6107a1be6d9e'.", + "message": "Cannot update Configuration file with GUID '984348a1-3a60-405d-a537-a5cd28dbb8b8'.", "code": "fileUpdate", - "fileGuid": "3257598e-3806-4418-88df-6107a1be6d9e", + "fileGuid": "984348a1-3a60-405d-a537-a5cd28dbb8b8", "folderType": "configuration", "errors": [ { @@ -34413,7 +34413,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "7d263de4-1a0c-4804-8bd3-7f6bff34a91d" + "guid": "5f20d65d-0c10-4cd0-9fc4-f075b5b589f1" } }, "Example 3": { @@ -34446,7 +34446,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "7d263de4-1a0c-4804-8bd3-7f6bff34a91d" + "guid": "5f20d65d-0c10-4cd0-9fc4-f075b5b589f1" } }, "Example 3": { @@ -34479,7 +34479,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "7d263de4-1a0c-4804-8bd3-7f6bff34a91d" + "guid": "5f20d65d-0c10-4cd0-9fc4-f075b5b589f1" } }, "Example 3": { @@ -34512,7 +34512,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "7d263de4-1a0c-4804-8bd3-7f6bff34a91d" + "guid": "5f20d65d-0c10-4cd0-9fc4-f075b5b589f1" } }, "Example 3": { @@ -34659,7 +34659,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "889abf1a-7358-4efe-864c-16910c2d7083" + "guid": "bb5d2b80-356f-477a-ba26-a0d090d4fcf6" } }, "Example 2": { @@ -34674,7 +34674,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": "409b8821-1dfe-4f0f-9a1f-84c9b31180f2" + "guid": "87999d86-bab8-476e-86bb-53571bddbdec" } } } @@ -34691,7 +34691,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "889abf1a-7358-4efe-864c-16910c2d7083" + "guid": "bb5d2b80-356f-477a-ba26-a0d090d4fcf6" } }, "Example 2": { @@ -34706,7 +34706,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": "409b8821-1dfe-4f0f-9a1f-84c9b31180f2" + "guid": "87999d86-bab8-476e-86bb-53571bddbdec" } } } @@ -34723,7 +34723,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "889abf1a-7358-4efe-864c-16910c2d7083" + "guid": "bb5d2b80-356f-477a-ba26-a0d090d4fcf6" } }, "Example 2": { @@ -34738,7 +34738,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": "409b8821-1dfe-4f0f-9a1f-84c9b31180f2" + "guid": "87999d86-bab8-476e-86bb-53571bddbdec" } } } @@ -34755,7 +34755,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "889abf1a-7358-4efe-864c-16910c2d7083" + "guid": "bb5d2b80-356f-477a-ba26-a0d090d4fcf6" } }, "Example 2": { @@ -34770,7 +34770,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": "409b8821-1dfe-4f0f-9a1f-84c9b31180f2" + "guid": "87999d86-bab8-476e-86bb-53571bddbdec" } } } @@ -35400,8 +35400,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": "b08b05cb-723f-4710-91ee-8e8df4d1e4e8", - "guid": "1fdcd2ec-6ded-43f9-be84-1628dae18066", + "versionGuid": "3656e227-9b76-4ed9-81ee-bd2a5ecceebf", + "guid": "3c7c704a-1d97-4d7e-aa24-52c1d8370a9e", "name": "MI Training (Updated)" } }, @@ -35426,8 +35426,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": "b08b05cb-723f-4710-91ee-8e8df4d1e4e8", - "guid": "1fdcd2ec-6ded-43f9-be84-1628dae18066", + "versionGuid": "3656e227-9b76-4ed9-81ee-bd2a5ecceebf", + "guid": "3c7c704a-1d97-4d7e-aa24-52c1d8370a9e", "name": "MI Training (Updated)" } }, @@ -35452,8 +35452,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": "b08b05cb-723f-4710-91ee-8e8df4d1e4e8", - "guid": "1fdcd2ec-6ded-43f9-be84-1628dae18066", + "versionGuid": "3656e227-9b76-4ed9-81ee-bd2a5ecceebf", + "guid": "3c7c704a-1d97-4d7e-aa24-52c1d8370a9e", "name": "MI Training (Updated)" } }, @@ -35478,8 +35478,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": "b08b05cb-723f-4710-91ee-8e8df4d1e4e8", - "guid": "1fdcd2ec-6ded-43f9-be84-1628dae18066", + "versionGuid": "3656e227-9b76-4ed9-81ee-bd2a5ecceebf", + "guid": "3c7c704a-1d97-4d7e-aa24-52c1d8370a9e", "name": "MI Training (Updated)" } }, @@ -35905,13 +35905,13 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "e2ee8dc5-fb94-4a34-b788-69c8bf63df36", - "tableGuid": "61b73381-58fd-453e-9b1d-c8d6c0d765f1" + "databaseGuid": "1ebba501-d346-481f-af32-f2891c6b4908", + "tableGuid": "c1307861-8ed5-4314-87a6-8291df648318" } }, "displayNames": {}, "name": "Cross database link group : MI Training MaterialUniverse - Second Training Database And Table", - "guid": "2aefc50b-00e5-4ea0-9ebc-358e1ae08666" + "guid": "6d5f01ec-24c7-498f-af82-82e738bff147" }, { "type": "tabularAttribute", @@ -36902,7 +36902,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "2d5c763b-271c-4f5c-b43d-94f3356bf682" + "guid": "5ed62ab7-99fa-4380-b0d4-f3b2636e9922" } } } @@ -36924,7 +36924,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "2d5c763b-271c-4f5c-b43d-94f3356bf682" + "guid": "5ed62ab7-99fa-4380-b0d4-f3b2636e9922" } } } @@ -36946,7 +36946,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "2d5c763b-271c-4f5c-b43d-94f3356bf682" + "guid": "5ed62ab7-99fa-4380-b0d4-f3b2636e9922" } } } @@ -36968,7 +36968,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "2d5c763b-271c-4f5c-b43d-94f3356bf682" + "guid": "5ed62ab7-99fa-4380-b0d4-f3b2636e9922" } } } @@ -38312,7 +38312,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2b87c0a8-3f71-4823-ac8e-b56d1514108f" + "guid": "b11541cb-9dfa-43dc-bde7-3a52e9238928" } } } @@ -38333,7 +38333,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2b87c0a8-3f71-4823-ac8e-b56d1514108f" + "guid": "b11541cb-9dfa-43dc-bde7-3a52e9238928" } } } @@ -38354,7 +38354,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2b87c0a8-3f71-4823-ac8e-b56d1514108f" + "guid": "b11541cb-9dfa-43dc-bde7-3a52e9238928" } } } @@ -38375,7 +38375,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2b87c0a8-3f71-4823-ac8e-b56d1514108f" + "guid": "b11541cb-9dfa-43dc-bde7-3a52e9238928" } } } @@ -39033,11 +39033,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "d8179608-b51f-48fb-960a-441bfb63c03a" + "guid": "fd82ec45-1142-4f39-afdd-7df53fd47b1a" }, { "name": "no-transform.xslt", - "guid": "dc8cacd1-3d89-4611-af59-69bbca090244" + "guid": "d251cf57-5e1e-4f5f-9db4-c75b2ff6dc78" } ] } @@ -39050,11 +39050,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "d8179608-b51f-48fb-960a-441bfb63c03a" + "guid": "fd82ec45-1142-4f39-afdd-7df53fd47b1a" }, { "name": "no-transform.xslt", - "guid": "dc8cacd1-3d89-4611-af59-69bbca090244" + "guid": "d251cf57-5e1e-4f5f-9db4-c75b2ff6dc78" } ] } @@ -39067,11 +39067,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "d8179608-b51f-48fb-960a-441bfb63c03a" + "guid": "fd82ec45-1142-4f39-afdd-7df53fd47b1a" }, { "name": "no-transform.xslt", - "guid": "dc8cacd1-3d89-4611-af59-69bbca090244" + "guid": "d251cf57-5e1e-4f5f-9db4-c75b2ff6dc78" } ] } @@ -39152,7 +39152,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d523e19b-806e-4b20-b26c-d55c3da5b11d" + "guid": "1b0b3fbc-9cfc-472e-bf0f-703e2f4a11d7" } }, "application/json": { @@ -39166,7 +39166,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d523e19b-806e-4b20-b26c-d55c3da5b11d" + "guid": "1b0b3fbc-9cfc-472e-bf0f-703e2f4a11d7" } }, "text/json": { @@ -39180,7 +39180,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d523e19b-806e-4b20-b26c-d55c3da5b11d" + "guid": "1b0b3fbc-9cfc-472e-bf0f-703e2f4a11d7" } } } @@ -39348,7 +39348,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "28bd96f1-fe36-4ed0-87e1-337dcfe60c11" + "guid": "20670930-bd2a-412b-a4b8-fa5753236d83" } }, "application/json": { @@ -39362,7 +39362,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "28bd96f1-fe36-4ed0-87e1-337dcfe60c11" + "guid": "20670930-bd2a-412b-a4b8-fa5753236d83" } }, "text/json": { @@ -39376,7 +39376,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "28bd96f1-fe36-4ed0-87e1-337dcfe60c11" + "guid": "20670930-bd2a-412b-a4b8-fa5753236d83" } } } @@ -39448,7 +39448,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "0a4f0892-15bf-444d-abdc-d1d8c79622a6" + "guid": "cb3f8009-0720-4652-8b15-27cbf911687b" } } } @@ -39476,7 +39476,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "0a4f0892-15bf-444d-abdc-d1d8c79622a6" + "guid": "cb3f8009-0720-4652-8b15-27cbf911687b" } } } @@ -39504,7 +39504,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "0a4f0892-15bf-444d-abdc-d1d8c79622a6" + "guid": "cb3f8009-0720-4652-8b15-27cbf911687b" } } } @@ -39532,7 +39532,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "0a4f0892-15bf-444d-abdc-d1d8c79622a6" + "guid": "cb3f8009-0720-4652-8b15-27cbf911687b" } } } @@ -39554,7 +39554,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "dd905c23-9ba7-490a-9e12-c9093f3ba237" + "guid": "a3828747-cac2-44bc-b42c-cbfef0586673" } }, "application/json": { @@ -39568,7 +39568,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "dd905c23-9ba7-490a-9e12-c9093f3ba237" + "guid": "a3828747-cac2-44bc-b42c-cbfef0586673" } }, "text/json": { @@ -39582,7 +39582,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "dd905c23-9ba7-490a-9e12-c9093f3ba237" + "guid": "a3828747-cac2-44bc-b42c-cbfef0586673" } } } @@ -39599,9 +39599,9 @@ "summary": "File with same name already exists", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename an Exporter file in the 'Abaqus' folder (GUID '41aba877-8fe0-4295-bddb-6f8b270a40ff') to have name 'AbaqusFunctions.xsl', but there is already a file with that name and parent.", "value": { - "message": "Cannot update Exporter file with GUID '4a56d99f-4896-4ba7-bc5b-a3f54317c77f'.", + "message": "Cannot update Exporter file with GUID '8a67a626-d6fc-42ff-a808-f9a835fed74a'.", "code": "fileUpdate", - "fileGuid": "4a56d99f-4896-4ba7-bc5b-a3f54317c77f", + "fileGuid": "8a67a626-d6fc-42ff-a808-f9a835fed74a", "folderType": "exporter", "errors": [ { @@ -39631,9 +39631,9 @@ "summary": "File with same name already exists", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename an Exporter file in the 'Abaqus' folder (GUID '41aba877-8fe0-4295-bddb-6f8b270a40ff') to have name 'AbaqusFunctions.xsl', but there is already a file with that name and parent.", "value": { - "message": "Cannot update Exporter file with GUID '4a56d99f-4896-4ba7-bc5b-a3f54317c77f'.", + "message": "Cannot update Exporter file with GUID '8a67a626-d6fc-42ff-a808-f9a835fed74a'.", "code": "fileUpdate", - "fileGuid": "4a56d99f-4896-4ba7-bc5b-a3f54317c77f", + "fileGuid": "8a67a626-d6fc-42ff-a808-f9a835fed74a", "folderType": "exporter", "errors": [ { @@ -39663,9 +39663,9 @@ "summary": "File with same name already exists", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename an Exporter file in the 'Abaqus' folder (GUID '41aba877-8fe0-4295-bddb-6f8b270a40ff') to have name 'AbaqusFunctions.xsl', but there is already a file with that name and parent.", "value": { - "message": "Cannot update Exporter file with GUID '4a56d99f-4896-4ba7-bc5b-a3f54317c77f'.", + "message": "Cannot update Exporter file with GUID '8a67a626-d6fc-42ff-a808-f9a835fed74a'.", "code": "fileUpdate", - "fileGuid": "4a56d99f-4896-4ba7-bc5b-a3f54317c77f", + "fileGuid": "8a67a626-d6fc-42ff-a808-f9a835fed74a", "folderType": "exporter", "errors": [ { @@ -39962,7 +39962,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "db36e011-a905-48bf-bd38-ee230f3b7b3a" + "guid": "08bf15b8-3ec6-4090-9e59-50e37a004365" } }, "application/json": { @@ -39976,7 +39976,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "db36e011-a905-48bf-bd38-ee230f3b7b3a" + "guid": "08bf15b8-3ec6-4090-9e59-50e37a004365" } }, "text/json": { @@ -39990,7 +39990,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "db36e011-a905-48bf-bd38-ee230f3b7b3a" + "guid": "08bf15b8-3ec6-4090-9e59-50e37a004365" } } } @@ -40005,16 +40005,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'd6b60dd7-2e9e-4dc4-9e6c-1e2316e41885', but there is no Exporter folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '8dbb3b7f-e035-4e48-b357-9d0ddd22ddab', but there is no Exporter folder with that GUID.", "value": { - "message": "Cannot move Exporter file with GUID '860e9037-af19-42df-898f-0d94f20ad181'.", + "message": "Cannot move Exporter file with GUID '4a719640-588e-4690-acdf-52b2b77e68e7'.", "code": "fileMove", - "fileGuid": "860e9037-af19-42df-898f-0d94f20ad181", + "fileGuid": "4a719640-588e-4690-acdf-52b2b77e68e7", "folderType": "exporter", "errors": [ { - "message": "A Exporter folder with GUID 'd6b60dd7-2e9e-4dc4-9e6c-1e2316e41885' does not exist in database MI_Training.", - "folderGuid": "d6b60dd7-2e9e-4dc4-9e6c-1e2316e41885", + "message": "A Exporter folder with GUID '8dbb3b7f-e035-4e48-b357-9d0ddd22ddab' does not exist in database MI_Training.", + "folderGuid": "8dbb3b7f-e035-4e48-b357-9d0ddd22ddab", "folderType": "exporter", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -40031,16 +40031,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'd6b60dd7-2e9e-4dc4-9e6c-1e2316e41885', but there is no Exporter folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '8dbb3b7f-e035-4e48-b357-9d0ddd22ddab', but there is no Exporter folder with that GUID.", "value": { - "message": "Cannot move Exporter file with GUID '860e9037-af19-42df-898f-0d94f20ad181'.", + "message": "Cannot move Exporter file with GUID '4a719640-588e-4690-acdf-52b2b77e68e7'.", "code": "fileMove", - "fileGuid": "860e9037-af19-42df-898f-0d94f20ad181", + "fileGuid": "4a719640-588e-4690-acdf-52b2b77e68e7", "folderType": "exporter", "errors": [ { - "message": "A Exporter folder with GUID 'd6b60dd7-2e9e-4dc4-9e6c-1e2316e41885' does not exist in database MI_Training.", - "folderGuid": "d6b60dd7-2e9e-4dc4-9e6c-1e2316e41885", + "message": "A Exporter folder with GUID '8dbb3b7f-e035-4e48-b357-9d0ddd22ddab' does not exist in database MI_Training.", + "folderGuid": "8dbb3b7f-e035-4e48-b357-9d0ddd22ddab", "folderType": "exporter", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -40057,16 +40057,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'd6b60dd7-2e9e-4dc4-9e6c-1e2316e41885', but there is no Exporter folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '8dbb3b7f-e035-4e48-b357-9d0ddd22ddab', but there is no Exporter folder with that GUID.", "value": { - "message": "Cannot move Exporter file with GUID '860e9037-af19-42df-898f-0d94f20ad181'.", + "message": "Cannot move Exporter file with GUID '4a719640-588e-4690-acdf-52b2b77e68e7'.", "code": "fileMove", - "fileGuid": "860e9037-af19-42df-898f-0d94f20ad181", + "fileGuid": "4a719640-588e-4690-acdf-52b2b77e68e7", "folderType": "exporter", "errors": [ { - "message": "A Exporter folder with GUID 'd6b60dd7-2e9e-4dc4-9e6c-1e2316e41885' does not exist in database MI_Training.", - "folderGuid": "d6b60dd7-2e9e-4dc4-9e6c-1e2316e41885", + "message": "A Exporter folder with GUID '8dbb3b7f-e035-4e48-b357-9d0ddd22ddab' does not exist in database MI_Training.", + "folderGuid": "8dbb3b7f-e035-4e48-b357-9d0ddd22ddab", "folderType": "exporter", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -40223,7 +40223,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "c74ac5fd-8335-473b-9273-115260ab7c29" + "guid": "92fbd904-3f52-40ce-9a50-4fc77ebec7c5" } }, "Example 3": { @@ -40258,7 +40258,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "c74ac5fd-8335-473b-9273-115260ab7c29" + "guid": "92fbd904-3f52-40ce-9a50-4fc77ebec7c5" } }, "Example 3": { @@ -40293,7 +40293,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "c74ac5fd-8335-473b-9273-115260ab7c29" + "guid": "92fbd904-3f52-40ce-9a50-4fc77ebec7c5" } }, "Example 3": { @@ -40328,7 +40328,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "c74ac5fd-8335-473b-9273-115260ab7c29" + "guid": "92fbd904-3f52-40ce-9a50-4fc77ebec7c5" } }, "Example 3": { @@ -40660,7 +40660,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "e10c1509-dbda-406d-b311-9f59a22a1329" + "guid": "af13929c-d4ec-4cfc-9b31-5bb94597d97b" } }, "Example 2": { @@ -40686,7 +40686,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "e10c1509-dbda-406d-b311-9f59a22a1329" + "guid": "af13929c-d4ec-4cfc-9b31-5bb94597d97b" } }, "Example 2": { @@ -40712,7 +40712,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "e10c1509-dbda-406d-b311-9f59a22a1329" + "guid": "af13929c-d4ec-4cfc-9b31-5bb94597d97b" } }, "Example 2": { @@ -40738,7 +40738,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "e10c1509-dbda-406d-b311-9f59a22a1329" + "guid": "af13929c-d4ec-4cfc-9b31-5bb94597d97b" } }, "Example 2": { @@ -41541,7 +41541,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": "93ab579f-b27a-442f-ba3f-3606818877c0" + "guid": "8dce263e-8619-4131-aa07-aecde6d902df" } } } @@ -41562,7 +41562,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": "93ab579f-b27a-442f-ba3f-3606818877c0" + "guid": "8dce263e-8619-4131-aa07-aecde6d902df" } } } @@ -41583,7 +41583,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": "93ab579f-b27a-442f-ba3f-3606818877c0" + "guid": "8dce263e-8619-4131-aa07-aecde6d902df" } } } @@ -41604,7 +41604,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": "93ab579f-b27a-442f-ba3f-3606818877c0" + "guid": "8dce263e-8619-4131-aa07-aecde6d902df" } } } @@ -42328,7 +42328,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9f4afda9-b20e-44d3-ae3c-12f68ee8bef8" + "guid": "f4ac9665-3ee5-42ec-9b9c-fe96a8ee6434" } }, "application/json": { @@ -42342,7 +42342,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9f4afda9-b20e-44d3-ae3c-12f68ee8bef8" + "guid": "f4ac9665-3ee5-42ec-9b9c-fe96a8ee6434" } }, "text/json": { @@ -42356,7 +42356,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9f4afda9-b20e-44d3-ae3c-12f68ee8bef8" + "guid": "f4ac9665-3ee5-42ec-9b9c-fe96a8ee6434" } } } @@ -42600,7 +42600,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "8e44a64a-6e95-4dcf-902c-0db83b320f84" + "guid": "0a6d6d1e-5e99-4960-852d-cf832965817e" } } } @@ -42628,7 +42628,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "8e44a64a-6e95-4dcf-902c-0db83b320f84" + "guid": "0a6d6d1e-5e99-4960-852d-cf832965817e" } } } @@ -42656,7 +42656,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "8e44a64a-6e95-4dcf-902c-0db83b320f84" + "guid": "0a6d6d1e-5e99-4960-852d-cf832965817e" } } } @@ -42684,7 +42684,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "8e44a64a-6e95-4dcf-902c-0db83b320f84" + "guid": "0a6d6d1e-5e99-4960-852d-cf832965817e" } } } @@ -42706,7 +42706,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0fd478ae-6279-4a4b-b193-36456b4eb84d" + "guid": "48b2c6a8-e146-429d-91c8-347800e14577" } }, "application/json": { @@ -42720,7 +42720,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0fd478ae-6279-4a4b-b193-36456b4eb84d" + "guid": "48b2c6a8-e146-429d-91c8-347800e14577" } }, "text/json": { @@ -42734,7 +42734,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0fd478ae-6279-4a4b-b193-36456b4eb84d" + "guid": "48b2c6a8-e146-429d-91c8-347800e14577" } } } @@ -42751,9 +42751,9 @@ "summary": "Invalid FIle name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HelpPage file to ''.", "value": { - "message": "Cannot update HelpPage file with GUID '8acf84ff-59a9-4317-86e2-ed5d1aa7fbe6'.", + "message": "Cannot update HelpPage file with GUID 'da381e33-a20d-484e-a0cb-33ba6472c478'.", "code": "fileUpdate", - "fileGuid": "8acf84ff-59a9-4317-86e2-ed5d1aa7fbe6", + "fileGuid": "da381e33-a20d-484e-a0cb-33ba6472c478", "folderType": "helpPage", "errors": [ { @@ -42775,9 +42775,9 @@ "summary": "Invalid FIle name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HelpPage file to ''.", "value": { - "message": "Cannot update HelpPage file with GUID '8acf84ff-59a9-4317-86e2-ed5d1aa7fbe6'.", + "message": "Cannot update HelpPage file with GUID 'da381e33-a20d-484e-a0cb-33ba6472c478'.", "code": "fileUpdate", - "fileGuid": "8acf84ff-59a9-4317-86e2-ed5d1aa7fbe6", + "fileGuid": "da381e33-a20d-484e-a0cb-33ba6472c478", "folderType": "helpPage", "errors": [ { @@ -42799,9 +42799,9 @@ "summary": "Invalid FIle name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HelpPage file to ''.", "value": { - "message": "Cannot update HelpPage file with GUID '8acf84ff-59a9-4317-86e2-ed5d1aa7fbe6'.", + "message": "Cannot update HelpPage file with GUID 'da381e33-a20d-484e-a0cb-33ba6472c478'.", "code": "fileUpdate", - "fileGuid": "8acf84ff-59a9-4317-86e2-ed5d1aa7fbe6", + "fileGuid": "da381e33-a20d-484e-a0cb-33ba6472c478", "folderType": "helpPage", "errors": [ { @@ -43090,7 +43090,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "6a051c06-02ca-4351-963b-a5bd33ffe027" + "guid": "26a8b4c7-ebd8-4935-a58d-12b575f98ec9" } }, "application/json": { @@ -43104,7 +43104,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "6a051c06-02ca-4351-963b-a5bd33ffe027" + "guid": "26a8b4c7-ebd8-4935-a58d-12b575f98ec9" } }, "text/json": { @@ -43118,7 +43118,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "6a051c06-02ca-4351-963b-a5bd33ffe027" + "guid": "26a8b4c7-ebd8-4935-a58d-12b575f98ec9" } } } @@ -43133,16 +43133,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '6e6661a0-7430-4a82-916b-e88fb6337f0f', but there is no HelpPage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'b421992e-57a4-4995-9f76-8d55f4385ad3', but there is no HelpPage folder with that GUID.", "value": { - "message": "Cannot move HelpPage file with GUID '1fe8d593-d970-451d-b3a1-72186769cd6d'.", + "message": "Cannot move HelpPage file with GUID 'd54ae7d9-a684-4062-817d-5f094beb6a9b'.", "code": "fileMove", - "fileGuid": "1fe8d593-d970-451d-b3a1-72186769cd6d", + "fileGuid": "d54ae7d9-a684-4062-817d-5f094beb6a9b", "folderType": "helpPage", "errors": [ { - "message": "A HelpPage folder with GUID '6e6661a0-7430-4a82-916b-e88fb6337f0f' does not exist in database MI_Training.", - "folderGuid": "6e6661a0-7430-4a82-916b-e88fb6337f0f", + "message": "A HelpPage folder with GUID 'b421992e-57a4-4995-9f76-8d55f4385ad3' does not exist in database MI_Training.", + "folderGuid": "b421992e-57a4-4995-9f76-8d55f4385ad3", "folderType": "helpPage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -43159,16 +43159,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '6e6661a0-7430-4a82-916b-e88fb6337f0f', but there is no HelpPage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'b421992e-57a4-4995-9f76-8d55f4385ad3', but there is no HelpPage folder with that GUID.", "value": { - "message": "Cannot move HelpPage file with GUID '1fe8d593-d970-451d-b3a1-72186769cd6d'.", + "message": "Cannot move HelpPage file with GUID 'd54ae7d9-a684-4062-817d-5f094beb6a9b'.", "code": "fileMove", - "fileGuid": "1fe8d593-d970-451d-b3a1-72186769cd6d", + "fileGuid": "d54ae7d9-a684-4062-817d-5f094beb6a9b", "folderType": "helpPage", "errors": [ { - "message": "A HelpPage folder with GUID '6e6661a0-7430-4a82-916b-e88fb6337f0f' does not exist in database MI_Training.", - "folderGuid": "6e6661a0-7430-4a82-916b-e88fb6337f0f", + "message": "A HelpPage folder with GUID 'b421992e-57a4-4995-9f76-8d55f4385ad3' does not exist in database MI_Training.", + "folderGuid": "b421992e-57a4-4995-9f76-8d55f4385ad3", "folderType": "helpPage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -43185,16 +43185,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '6e6661a0-7430-4a82-916b-e88fb6337f0f', but there is no HelpPage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'b421992e-57a4-4995-9f76-8d55f4385ad3', but there is no HelpPage folder with that GUID.", "value": { - "message": "Cannot move HelpPage file with GUID '1fe8d593-d970-451d-b3a1-72186769cd6d'.", + "message": "Cannot move HelpPage file with GUID 'd54ae7d9-a684-4062-817d-5f094beb6a9b'.", "code": "fileMove", - "fileGuid": "1fe8d593-d970-451d-b3a1-72186769cd6d", + "fileGuid": "d54ae7d9-a684-4062-817d-5f094beb6a9b", "folderType": "helpPage", "errors": [ { - "message": "A HelpPage folder with GUID '6e6661a0-7430-4a82-916b-e88fb6337f0f' does not exist in database MI_Training.", - "folderGuid": "6e6661a0-7430-4a82-916b-e88fb6337f0f", + "message": "A HelpPage folder with GUID 'b421992e-57a4-4995-9f76-8d55f4385ad3' does not exist in database MI_Training.", + "folderGuid": "b421992e-57a4-4995-9f76-8d55f4385ad3", "folderType": "helpPage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -43256,7 +43256,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "98196d75-94a3-46a1-9ec4-83192029430b" + "guid": "43fe0b1f-4cd2-439c-87f6-c0bd1dc9937c" } ] } @@ -43278,7 +43278,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "98196d75-94a3-46a1-9ec4-83192029430b" + "guid": "43fe0b1f-4cd2-439c-87f6-c0bd1dc9937c" } ] } @@ -43300,7 +43300,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "98196d75-94a3-46a1-9ec4-83192029430b" + "guid": "43fe0b1f-4cd2-439c-87f6-c0bd1dc9937c" } ] } @@ -43651,7 +43651,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "f1e1bc72-8735-4d97-9038-22812d5ee318" + "guid": "a722f062-77ad-4153-8223-f0cbde9372e3" } }, "application/json": { @@ -43663,7 +43663,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "f1e1bc72-8735-4d97-9038-22812d5ee318" + "guid": "a722f062-77ad-4153-8223-f0cbde9372e3" } }, "text/json": { @@ -43675,7 +43675,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "f1e1bc72-8735-4d97-9038-22812d5ee318" + "guid": "a722f062-77ad-4153-8223-f0cbde9372e3" } } } @@ -43731,7 +43731,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": "ad0f90d4-e6d5-4ca5-b534-3c96170fb742" + "guid": "8964b7a2-8519-4d13-bd55-c6c99aa2270e" } } } @@ -43752,7 +43752,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": "ad0f90d4-e6d5-4ca5-b534-3c96170fb742" + "guid": "8964b7a2-8519-4d13-bd55-c6c99aa2270e" } } } @@ -43773,7 +43773,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": "ad0f90d4-e6d5-4ca5-b534-3c96170fb742" + "guid": "8964b7a2-8519-4d13-bd55-c6c99aa2270e" } } } @@ -43794,7 +43794,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": "ad0f90d4-e6d5-4ca5-b534-3c96170fb742" + "guid": "8964b7a2-8519-4d13-bd55-c6c99aa2270e" } } } @@ -44081,7 +44081,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "33ad3669-4326-4ba2-80d6-a3e6813c682e" + "guid": "2ef86296-fa20-4250-a28e-498d0e308777" } ] } @@ -44097,7 +44097,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "33ad3669-4326-4ba2-80d6-a3e6813c682e" + "guid": "2ef86296-fa20-4250-a28e-498d0e308777" } ] } @@ -44113,7 +44113,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "33ad3669-4326-4ba2-80d6-a3e6813c682e" + "guid": "2ef86296-fa20-4250-a28e-498d0e308777" } ] } @@ -44378,11 +44378,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "8cc24f72-aa84-4684-a853-a83024e7d015" + "guid": "a11de88b-0aab-4bf8-a33c-1bb021dabf31" }, { "name": "home-page-2.html", - "guid": "fc9fd7e5-7206-499a-83f1-3630dd6b4f3d" + "guid": "2dd5f5a2-4e92-40a6-9223-cff180410b4b" } ] } @@ -44395,11 +44395,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "8cc24f72-aa84-4684-a853-a83024e7d015" + "guid": "a11de88b-0aab-4bf8-a33c-1bb021dabf31" }, { "name": "home-page-2.html", - "guid": "fc9fd7e5-7206-499a-83f1-3630dd6b4f3d" + "guid": "2dd5f5a2-4e92-40a6-9223-cff180410b4b" } ] } @@ -44412,11 +44412,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "8cc24f72-aa84-4684-a853-a83024e7d015" + "guid": "a11de88b-0aab-4bf8-a33c-1bb021dabf31" }, { "name": "home-page-2.html", - "guid": "fc9fd7e5-7206-499a-83f1-3630dd6b4f3d" + "guid": "2dd5f5a2-4e92-40a6-9223-cff180410b4b" } ] } @@ -44497,7 +44497,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "34ba2376-3dea-422e-8def-8530ec0ba08a" + "guid": "f65167e1-8808-43a9-9ed4-133a012104fe" } }, "application/json": { @@ -44511,7 +44511,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "34ba2376-3dea-422e-8def-8530ec0ba08a" + "guid": "f65167e1-8808-43a9-9ed4-133a012104fe" } }, "text/json": { @@ -44525,7 +44525,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "34ba2376-3dea-422e-8def-8530ec0ba08a" + "guid": "f65167e1-8808-43a9-9ed4-133a012104fe" } } } @@ -44669,7 +44669,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "d15ec4a1-5a09-412e-a25d-1c4f820ce83f" + "guid": "6a6e12d8-0c6f-4f8a-b8be-08dd275bc3b7" } }, "application/json": { @@ -44683,7 +44683,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "d15ec4a1-5a09-412e-a25d-1c4f820ce83f" + "guid": "6a6e12d8-0c6f-4f8a-b8be-08dd275bc3b7" } }, "text/json": { @@ -44697,7 +44697,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "d15ec4a1-5a09-412e-a25d-1c4f820ce83f" + "guid": "6a6e12d8-0c6f-4f8a-b8be-08dd275bc3b7" } } } @@ -44769,7 +44769,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": "50fd229f-4a5c-4235-80b0-685d00056900" + "guid": "b8ab6290-fb22-4330-81bc-bb27b301ec4e" } } } @@ -44797,7 +44797,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": "50fd229f-4a5c-4235-80b0-685d00056900" + "guid": "b8ab6290-fb22-4330-81bc-bb27b301ec4e" } } } @@ -44825,7 +44825,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": "50fd229f-4a5c-4235-80b0-685d00056900" + "guid": "b8ab6290-fb22-4330-81bc-bb27b301ec4e" } } } @@ -44853,7 +44853,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": "50fd229f-4a5c-4235-80b0-685d00056900" + "guid": "b8ab6290-fb22-4330-81bc-bb27b301ec4e" } } } @@ -44875,7 +44875,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "b6cfbe1c-39f1-4b9f-9d80-36bc549d71dd" + "guid": "e53bbf01-292a-46c1-9c0b-144e41096a3f" } }, "application/json": { @@ -44889,7 +44889,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "b6cfbe1c-39f1-4b9f-9d80-36bc549d71dd" + "guid": "e53bbf01-292a-46c1-9c0b-144e41096a3f" } }, "text/json": { @@ -44903,7 +44903,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "b6cfbe1c-39f1-4b9f-9d80-36bc549d71dd" + "guid": "e53bbf01-292a-46c1-9c0b-144e41096a3f" } } } @@ -44920,9 +44920,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HomePage file to ''.", "value": { - "message": "Cannot update HomePage file with GUID '1649adef-3696-4909-b014-3282e6c70e4f'.", + "message": "Cannot update HomePage file with GUID '372d9be6-37e0-4b5b-bd85-050775454c5d'.", "code": "fileUpdate", - "fileGuid": "1649adef-3696-4909-b014-3282e6c70e4f", + "fileGuid": "372d9be6-37e0-4b5b-bd85-050775454c5d", "folderType": "homePage", "errors": [ { @@ -44944,9 +44944,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HomePage file to ''.", "value": { - "message": "Cannot update HomePage file with GUID '1649adef-3696-4909-b014-3282e6c70e4f'.", + "message": "Cannot update HomePage file with GUID '372d9be6-37e0-4b5b-bd85-050775454c5d'.", "code": "fileUpdate", - "fileGuid": "1649adef-3696-4909-b014-3282e6c70e4f", + "fileGuid": "372d9be6-37e0-4b5b-bd85-050775454c5d", "folderType": "homePage", "errors": [ { @@ -44968,9 +44968,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HomePage file to ''.", "value": { - "message": "Cannot update HomePage file with GUID '1649adef-3696-4909-b014-3282e6c70e4f'.", + "message": "Cannot update HomePage file with GUID '372d9be6-37e0-4b5b-bd85-050775454c5d'.", "code": "fileUpdate", - "fileGuid": "1649adef-3696-4909-b014-3282e6c70e4f", + "fileGuid": "372d9be6-37e0-4b5b-bd85-050775454c5d", "folderType": "homePage", "errors": [ { @@ -45259,7 +45259,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "4696e80f-287e-493d-a300-7202bf3324c1" + "guid": "7efecaf0-d7fe-46e3-81be-938f93921a15" } }, "application/json": { @@ -45273,7 +45273,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "4696e80f-287e-493d-a300-7202bf3324c1" + "guid": "7efecaf0-d7fe-46e3-81be-938f93921a15" } }, "text/json": { @@ -45287,7 +45287,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "4696e80f-287e-493d-a300-7202bf3324c1" + "guid": "7efecaf0-d7fe-46e3-81be-938f93921a15" } } } @@ -45302,16 +45302,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '8ffb3724-3930-40ad-85db-b7d1c74aabd7', but there is no HomePage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'ee80c471-2025-4f58-9253-0efebb36250d', but there is no HomePage folder with that GUID.", "value": { - "message": "Cannot move HomePage file with GUID 'e926aa36-75c6-4762-9349-c22753c0e555'.", + "message": "Cannot move HomePage file with GUID 'c23aa6f3-c1ce-4dec-a9e2-91da21565c52'.", "code": "fileMove", - "fileGuid": "e926aa36-75c6-4762-9349-c22753c0e555", + "fileGuid": "c23aa6f3-c1ce-4dec-a9e2-91da21565c52", "folderType": "homePage", "errors": [ { - "message": "A HomePage folder with GUID '8ffb3724-3930-40ad-85db-b7d1c74aabd7' does not exist in database MI_Training.", - "folderGuid": "8ffb3724-3930-40ad-85db-b7d1c74aabd7", + "message": "A HomePage folder with GUID 'ee80c471-2025-4f58-9253-0efebb36250d' does not exist in database MI_Training.", + "folderGuid": "ee80c471-2025-4f58-9253-0efebb36250d", "folderType": "homePage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -45328,16 +45328,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '8ffb3724-3930-40ad-85db-b7d1c74aabd7', but there is no HomePage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'ee80c471-2025-4f58-9253-0efebb36250d', but there is no HomePage folder with that GUID.", "value": { - "message": "Cannot move HomePage file with GUID 'e926aa36-75c6-4762-9349-c22753c0e555'.", + "message": "Cannot move HomePage file with GUID 'c23aa6f3-c1ce-4dec-a9e2-91da21565c52'.", "code": "fileMove", - "fileGuid": "e926aa36-75c6-4762-9349-c22753c0e555", + "fileGuid": "c23aa6f3-c1ce-4dec-a9e2-91da21565c52", "folderType": "homePage", "errors": [ { - "message": "A HomePage folder with GUID '8ffb3724-3930-40ad-85db-b7d1c74aabd7' does not exist in database MI_Training.", - "folderGuid": "8ffb3724-3930-40ad-85db-b7d1c74aabd7", + "message": "A HomePage folder with GUID 'ee80c471-2025-4f58-9253-0efebb36250d' does not exist in database MI_Training.", + "folderGuid": "ee80c471-2025-4f58-9253-0efebb36250d", "folderType": "homePage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -45354,16 +45354,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '8ffb3724-3930-40ad-85db-b7d1c74aabd7', but there is no HomePage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'ee80c471-2025-4f58-9253-0efebb36250d', but there is no HomePage folder with that GUID.", "value": { - "message": "Cannot move HomePage file with GUID 'e926aa36-75c6-4762-9349-c22753c0e555'.", + "message": "Cannot move HomePage file with GUID 'c23aa6f3-c1ce-4dec-a9e2-91da21565c52'.", "code": "fileMove", - "fileGuid": "e926aa36-75c6-4762-9349-c22753c0e555", + "fileGuid": "c23aa6f3-c1ce-4dec-a9e2-91da21565c52", "folderType": "homePage", "errors": [ { - "message": "A HomePage folder with GUID '8ffb3724-3930-40ad-85db-b7d1c74aabd7' does not exist in database MI_Training.", - "folderGuid": "8ffb3724-3930-40ad-85db-b7d1c74aabd7", + "message": "A HomePage folder with GUID 'ee80c471-2025-4f58-9253-0efebb36250d' does not exist in database MI_Training.", + "folderGuid": "ee80c471-2025-4f58-9253-0efebb36250d", "folderType": "homePage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -45504,9 +45504,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "2a8e4f28-bb8b-4096-9e19-13148f7d241d", + "underlyingEntityGuid": "24cd215b-1d1d-454b-9077-0df49e07e733", "name": "Price", - "guid": "cffd4a01-eb47-4819-8e0c-2851cc4c60c9" + "guid": "f53d69a9-126a-4ef5-9a80-4f05575c6cf1" }, { "itemType": "attribute", @@ -45514,9 +45514,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "ac4db64b-5a90-4d2a-abdc-4b6f4ec088f7", + "underlyingEntityGuid": "cdeed35b-b572-4cb3-b91d-e21e09cfe54f", "name": "Density", - "guid": "8841ee30-d662-4f89-9563-ae0db0c71a63" + "guid": "fe6d65c4-ea29-4523-b8d4-3854a4a9256d" } ], "displayNames": { @@ -45535,9 +45535,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "be76586c-f164-48a7-a0e4-f58aaf6fa913", + "underlyingEntityGuid": "b58a94fc-0c53-4fe7-83d8-61de21d95d45", "name": "Young's modulus", - "guid": "363ea816-b9a8-440e-9487-e3e374adbc6e" + "guid": "ce4ed04c-ab70-4deb-b5cd-a03a280c3f29" }, { "itemType": "attribute", @@ -45545,9 +45545,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "88c01206-62ac-4863-96ac-b56c5af99fc1", + "underlyingEntityGuid": "a8594a89-bdf0-4f2b-b1a1-6fbb6438873a", "name": "Tensile strength", - "guid": "32d20b44-75aa-4dd0-8c0a-1eaeb10b77c1" + "guid": "75eef583-7ec7-40ad-b304-4541c02a7645" }, { "itemType": "attribute", @@ -45555,9 +45555,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "c525bb55-6bef-48a2-b324-2a6a9bcccb49", + "underlyingEntityGuid": "81acdf10-a58a-4fc4-8050-8a4b167ee9d3", "name": "Shape factor", - "guid": "d985834e-2b8e-4e55-888a-e5c6509cf072" + "guid": "b6cf73c8-27a2-4e29-a89e-04e4efe55079" } ], "displayNames": { @@ -45637,7 +45637,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": "223045f5-6c14-4de3-80f7-802f36a61422" + "guid": "82704afa-4e44-4bd0-8688-927cef09d50a" } } } @@ -45659,7 +45659,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": "223045f5-6c14-4de3-80f7-802f36a61422" + "guid": "82704afa-4e44-4bd0-8688-927cef09d50a" } } } @@ -45681,7 +45681,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": "223045f5-6c14-4de3-80f7-802f36a61422" + "guid": "82704afa-4e44-4bd0-8688-927cef09d50a" } } } @@ -45703,7 +45703,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": "223045f5-6c14-4de3-80f7-802f36a61422" + "guid": "82704afa-4e44-4bd0-8688-927cef09d50a" } } } @@ -45722,7 +45722,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "257132bd-3e45-4cb9-a13e-3d664c3c74b2" + "guid": "627a73ba-d066-4a59-bd99-125f7c8407fb" } } } @@ -46375,7 +46375,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "0a942871-13aa-44a2-bb66-59569cea58e0" + "guid": "75dddb74-c2c2-4397-8e79-0b5abfc83d48" } }, "Example 2": { @@ -46390,9 +46390,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "753594d2-f248-4cec-a90c-fd00ec9883ea", + "underlyingEntityGuid": "719df61c-45ab-4796-8636-a5a884d75be8", "name": "Form", - "guid": "0bc62bac-7a5b-49df-9014-3d7a3344460d" + "guid": "c9f2c71e-9b9d-4ad2-a841-4207e7ba754c" }, { "itemType": "attribute", @@ -46405,34 +46405,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "68192957-f8a6-427e-ad7d-19f7ce9f953d", + "underlyingEntityGuid": "0126b437-0d34-452c-9cc3-042f005281df", "name": "Sources", - "guid": "70fa7591-4b7f-4534-a102-e894ed1a438d" + "guid": "b8571e28-9c72-4f17-aad2-e3a0808da3aa" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "67bab7e7-7c46-4fdd-a278-3666b22a4169", + "underlyingEntityGuid": "32dafd49-8db8-4fc2-8dee-cfbd34b01c29", "name": "Notes", - "guid": "8cfa3897-94ef-46ad-a448-9368b958925a" + "guid": "098a2b19-c4e0-4efc-a455-8603d7826b33" } ], - "underlyingEntityGuid": "7dbe9672-39aa-45a7-b64c-dcb4d518d280", + "underlyingEntityGuid": "2c9b9ee4-da9c-4659-84f5-12443eded688", "name": "Chemical resistance", - "guid": "cf6a246b-8a45-48b2-9813-53c82f692289" + "guid": "eac27322-4966-4e3c-8439-982b7975dd3d" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "977e5151-0533-4d63-b44d-d44a490abaaa", - "targetDatabaseVersion": "e74f53ff-a5aa-441e-a48b-8db77c213c0e", - "targetTable": "0360931a-f831-400c-9f4b-f221dd014715", + "targetDatabase": "fa1033d7-7a8e-461a-a503-ecf0be0acac1", + "targetDatabaseVersion": "9ceef843-aed6-4925-9e3d-50d5e4c00baa", + "targetTable": "a64c7b35-e233-4caf-b5f9-23a0f78bc754", "forwards": true, - "underlyingEntityGuid": "e72660ca-5ae9-4bfe-aad6-bba754dbc34d", + "underlyingEntityGuid": "8b77eb35-9f27-4f97-aa4d-9b884f9c51d4", "name": "Material Pedigree", - "guid": "28abded7-efce-4e0a-87f0-67d0232e0945" + "guid": "79a03b78-a681-4430-b106-9d9d47f2a723" }, { "itemType": "attribute", @@ -46443,42 +46443,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "9f525bc6-7649-4d61-b084-f0da25cdd756", + "tabularColumnGuid": "482400e3-3899-443e-b0d5-338ac7d2ca13", "name": "Offset Yield Stress", - "guid": "a76bad5b-b9e9-4022-b326-f20fd6243a06" + "guid": "5283e8b7-4875-4192-b946-d7a9c360dae2" }, { "columnType": "localShortText", - "tabularColumnGuid": "fb8bbb37-db51-4eb3-b076-03f194b151c2", + "tabularColumnGuid": "8bf394a2-5bfe-40d6-bd58-004c27bd8272", "name": "Young's Modulus Notes", - "guid": "52049b16-79c2-4116-b764-363fb684f174" + "guid": "242acc7e-1e9c-4154-a04e-2d939d213481" } ], - "underlyingEntityGuid": "53b6fc4c-19f2-408e-94c8-a94c75270720", + "underlyingEntityGuid": "84114c56-6f8c-4609-9f4d-36844c69fa29", "name": "Reference Characteristics", - "guid": "fdb9fad0-1a2b-4bba-b858-2e612bee0096" + "guid": "93b08e2f-7a51-429f-961e-ed99331db914" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "977e5151-0533-4d63-b44d-d44a490abaaa", - "targetDatabaseVersion": "e74f53ff-a5aa-441e-a48b-8db77c213c0e", - "targetTable": "efe89aed-ba26-4a98-bfb8-d43ba2395604", + "targetDatabase": "fa1033d7-7a8e-461a-a503-ecf0be0acac1", + "targetDatabaseVersion": "9ceef843-aed6-4925-9e3d-50d5e4c00baa", + "targetTable": "c562866f-aba2-4b7a-8fd9-04585e44a060", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "977e5151-0533-4d63-b44d-d44a490abaaa", - "targetDatabaseVersion": "e74f53ff-a5aa-441e-a48b-8db77c213c0e", - "targetTable": "82d61237-ecea-44d6-9591-c7b1240d97c0", + "targetDatabase": "fa1033d7-7a8e-461a-a503-ecf0be0acac1", + "targetDatabaseVersion": "9ceef843-aed6-4925-9e3d-50d5e4c00baa", + "targetTable": "5ef2355d-3437-4bc3-b545-db6565cff4db", "forwards": false, - "underlyingEntityGuid": "ae3caf24-3641-4edf-be2a-9f3c483aadbe", + "underlyingEntityGuid": "a96bcf17-acce-4219-9cbb-2e46f2b53e2a", "name": "Pedigree information", - "guid": "9f669e82-0e07-4fae-b38d-37e8e0f1fd95" + "guid": "d208b404-453d-4b6b-a581-c55a1705da1e" }, - "underlyingEntityGuid": "9eacf5ac-a36e-4d94-a4a7-061183678d97", + "underlyingEntityGuid": "3175bb16-3de3-4411-a961-f3dcb9ec63a5", "name": "To Pedigree from Producers", - "guid": "2781a5b6-fc2b-4455-8485-dd837e30d5ca" + "guid": "4095f0c7-b6de-4ab7-a515-662c58adf7c9" } ], "displayNames": { @@ -46486,7 +46486,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "051fc976-fb10-4017-bd15-beae0125ae98" + "guid": "d2289eec-d13b-4746-9591-6d8e0d96a003" } } } @@ -46686,9 +46686,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": "6fac8f3c-c313-47d8-a936-49955a60efa9", - "sourceTableGuid": "b7057a93-50cd-4de4-aa23-639a69866b85", - "linkGroupGuid": "8cfa67b7-c2be-45fa-92b6-67a12ddadb1f" + "sourceDatabaseGuid": "c7512d7f-b4f1-44cd-bf1c-cce8f6137757", + "sourceTableGuid": "f238fbb4-cc81-4a7f-9ef5-e7360ad472dc", + "linkGroupGuid": "5dd233e1-848c-46af-a7f4-34b8d172ec7f" } }, "Example 8": { @@ -46700,13 +46700,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "54979dbb-55db-494a-af99-a9f69d6dddcc", - "tabularAttributeGuid": "b65c5b15-6e6e-4ff6-85e8-a637a0e12887" + "sourceDatabaseVersionGuid": "62454640-9838-4908-8d76-83e97c2b8e17", + "tabularAttributeGuid": "f5bfc368-757b-4ab2-a806-65813ed0986a" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0a1cb89b-8c65-4651-a39c-a5f26060bb45", - "tabularAttributeGuid": "1c1ecbb0-9b60-4357-807e-c7036e0186e8" + "sourceDatabaseVersionGuid": "3e856fa5-ab70-47f8-a78e-6dd2df8ef7c6", + "tabularAttributeGuid": "cccd40ec-54df-48d7-b052-43bde9a63619" } ] } @@ -46786,9 +46786,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": "6fac8f3c-c313-47d8-a936-49955a60efa9", - "sourceTableGuid": "b7057a93-50cd-4de4-aa23-639a69866b85", - "linkGroupGuid": "8cfa67b7-c2be-45fa-92b6-67a12ddadb1f" + "sourceDatabaseGuid": "c7512d7f-b4f1-44cd-bf1c-cce8f6137757", + "sourceTableGuid": "f238fbb4-cc81-4a7f-9ef5-e7360ad472dc", + "linkGroupGuid": "5dd233e1-848c-46af-a7f4-34b8d172ec7f" } }, "Example 8": { @@ -46800,13 +46800,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "54979dbb-55db-494a-af99-a9f69d6dddcc", - "tabularAttributeGuid": "b65c5b15-6e6e-4ff6-85e8-a637a0e12887" + "sourceDatabaseVersionGuid": "62454640-9838-4908-8d76-83e97c2b8e17", + "tabularAttributeGuid": "f5bfc368-757b-4ab2-a806-65813ed0986a" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0a1cb89b-8c65-4651-a39c-a5f26060bb45", - "tabularAttributeGuid": "1c1ecbb0-9b60-4357-807e-c7036e0186e8" + "sourceDatabaseVersionGuid": "3e856fa5-ab70-47f8-a78e-6dd2df8ef7c6", + "tabularAttributeGuid": "cccd40ec-54df-48d7-b052-43bde9a63619" } ] } @@ -46886,9 +46886,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": "6fac8f3c-c313-47d8-a936-49955a60efa9", - "sourceTableGuid": "b7057a93-50cd-4de4-aa23-639a69866b85", - "linkGroupGuid": "8cfa67b7-c2be-45fa-92b6-67a12ddadb1f" + "sourceDatabaseGuid": "c7512d7f-b4f1-44cd-bf1c-cce8f6137757", + "sourceTableGuid": "f238fbb4-cc81-4a7f-9ef5-e7360ad472dc", + "linkGroupGuid": "5dd233e1-848c-46af-a7f4-34b8d172ec7f" } }, "Example 8": { @@ -46900,13 +46900,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "54979dbb-55db-494a-af99-a9f69d6dddcc", - "tabularAttributeGuid": "b65c5b15-6e6e-4ff6-85e8-a637a0e12887" + "sourceDatabaseVersionGuid": "62454640-9838-4908-8d76-83e97c2b8e17", + "tabularAttributeGuid": "f5bfc368-757b-4ab2-a806-65813ed0986a" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0a1cb89b-8c65-4651-a39c-a5f26060bb45", - "tabularAttributeGuid": "1c1ecbb0-9b60-4357-807e-c7036e0186e8" + "sourceDatabaseVersionGuid": "3e856fa5-ab70-47f8-a78e-6dd2df8ef7c6", + "tabularAttributeGuid": "cccd40ec-54df-48d7-b052-43bde9a63619" } ] } @@ -46986,9 +46986,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": "6fac8f3c-c313-47d8-a936-49955a60efa9", - "sourceTableGuid": "b7057a93-50cd-4de4-aa23-639a69866b85", - "linkGroupGuid": "8cfa67b7-c2be-45fa-92b6-67a12ddadb1f" + "sourceDatabaseGuid": "c7512d7f-b4f1-44cd-bf1c-cce8f6137757", + "sourceTableGuid": "f238fbb4-cc81-4a7f-9ef5-e7360ad472dc", + "linkGroupGuid": "5dd233e1-848c-46af-a7f4-34b8d172ec7f" } }, "Example 8": { @@ -47000,13 +47000,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "54979dbb-55db-494a-af99-a9f69d6dddcc", - "tabularAttributeGuid": "b65c5b15-6e6e-4ff6-85e8-a637a0e12887" + "sourceDatabaseVersionGuid": "62454640-9838-4908-8d76-83e97c2b8e17", + "tabularAttributeGuid": "f5bfc368-757b-4ab2-a806-65813ed0986a" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0a1cb89b-8c65-4651-a39c-a5f26060bb45", - "tabularAttributeGuid": "1c1ecbb0-9b60-4357-807e-c7036e0186e8" + "sourceDatabaseVersionGuid": "3e856fa5-ab70-47f8-a78e-6dd2df8ef7c6", + "tabularAttributeGuid": "cccd40ec-54df-48d7-b052-43bde9a63619" } ] } @@ -47034,7 +47034,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "60cde9c1-a550-452f-86e4-5e95a59fe15b" + "guid": "b91c3168-19c2-4a88-ab2c-29c11d8ebe36" } }, "Example 2": { @@ -47054,7 +47054,7 @@ } ], "tabularColumnGuids": null, - "guid": "10244891-24da-443d-86b3-35e78b2aab18" + "guid": "f08d90b4-ca04-4db5-b8df-831d100f42fc" } }, "Example 3": { @@ -47098,9 +47098,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": "a7449d29-4f5b-4118-add6-441cbb51d85f", - "sourceTableGuid": "7350862d-fa4b-4bff-b46d-9220a86e5dbd", - "linkGroupGuid": "754480a7-6613-4d56-840b-11934a7fa5e2", + "sourceDatabaseGuid": "12cadcad-95e3-4deb-9eb6-f51272ea59cc", + "sourceTableGuid": "7511c4fd-6c68-4d70-a872-d2d64e8f8d17", + "linkGroupGuid": "fe6bddda-2395-487c-87f3-79ab45ee86f5", "guid": null } }, @@ -47114,12 +47114,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "c0bcf5c7-57ba-4610-a382-b92e3794ee55" + "tabularAttributeGuid": "a0fc386e-41f0-40e3-af97-23311d7b7125" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "219ba5d5-5e4c-471c-a233-d8565dfbd9dc" + "tabularAttributeGuid": "bfceb50c-1439-4167-b23f-ba5cb6ad92de" } ], "guid": null @@ -47365,7 +47365,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": "a0c19eb1-b0d4-46be-a152-6081bb46d10e" + "guid": "1edb01e9-13d9-4109-bedc-231ffebfeb53" } }, "Example 3": { @@ -47398,7 +47398,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": "a0c19eb1-b0d4-46be-a152-6081bb46d10e" + "guid": "1edb01e9-13d9-4109-bedc-231ffebfeb53" } }, "Example 3": { @@ -47431,7 +47431,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": "a0c19eb1-b0d4-46be-a152-6081bb46d10e" + "guid": "1edb01e9-13d9-4109-bedc-231ffebfeb53" } }, "Example 3": { @@ -47464,7 +47464,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": "a0c19eb1-b0d4-46be-a152-6081bb46d10e" + "guid": "1edb01e9-13d9-4109-bedc-231ffebfeb53" } }, "Example 3": { @@ -47494,7 +47494,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "483418bb-dad3-418f-80bb-c7d382706400" + "guid": "19778f69-4d1e-4868-b294-2521a98a831d" } } } @@ -47638,9 +47638,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "e29f2fc8-9ec9-4ba5-91a2-8cc0c7770db0", + "underlyingEntityGuid": "b46eb1a5-b263-47b1-8a4b-ab5f0e9f0be6", "name": "Price", - "guid": "bb724202-dbbf-47f3-be4b-ea50b51b601c" + "guid": "93ce1b51-d3cf-4bac-ac82-005ba813b5dd" }, { "itemType": "attribute", @@ -47648,9 +47648,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "9b90b827-8738-443e-a9c9-f265f7d8c9da", + "underlyingEntityGuid": "0ee3155a-5ea9-44f0-8c0f-5bf2ba4767b7", "name": "Density", - "guid": "4b81bf54-074b-497f-b9f3-78dae49ee4b0" + "guid": "e411bfc1-afc0-4f2f-a3d3-e935fa6df7d5" } ], "displayNames": { @@ -47669,9 +47669,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "51e92a21-4d4f-4797-a559-fab0b5718deb", + "underlyingEntityGuid": "5da4bee2-2550-4eb0-bdd0-45b6fbba87c3", "name": "Young's modulus", - "guid": "458d3665-db8d-4d0a-9606-df383c9f7e01" + "guid": "45907a5e-70cc-48ac-94c0-7fdb2efa2f89" }, { "itemType": "attribute", @@ -47679,9 +47679,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "901ccee3-bd1c-4037-bdc0-ad798ae78b3d", + "underlyingEntityGuid": "0d6f1943-7d3a-4170-bed9-103447611baa", "name": "Tensile strength", - "guid": "c77a887a-6e81-4ee5-b887-b55d79a283de" + "guid": "379b815f-fdd1-41f3-ad17-11ff8f5af0b2" }, { "itemType": "attribute", @@ -47689,9 +47689,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "f12915a0-9b8b-4e47-a04c-72ee377c0465", + "underlyingEntityGuid": "681da3d6-f730-44d1-b2a2-2a3664ba71cc", "name": "Shape factor", - "guid": "8691f3f0-6547-4235-8b2a-6d9316bb8de9" + "guid": "e5726bee-80db-495d-97f2-6944b9abc3c2" } ], "displayNames": { @@ -47775,7 +47775,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "25703e1f-1272-4949-8b32-5b53e50063cd" + "guid": "4118cde1-3654-4c6f-ae0b-9c9c365aa2bb" } }, "Example 2": { @@ -47808,7 +47808,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "25703e1f-1272-4949-8b32-5b53e50063cd" + "guid": "4118cde1-3654-4c6f-ae0b-9c9c365aa2bb" } }, "Example 2": { @@ -47841,7 +47841,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "25703e1f-1272-4949-8b32-5b53e50063cd" + "guid": "4118cde1-3654-4c6f-ae0b-9c9c365aa2bb" } }, "Example 2": { @@ -47874,7 +47874,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "25703e1f-1272-4949-8b32-5b53e50063cd" + "guid": "4118cde1-3654-4c6f-ae0b-9c9c365aa2bb" } }, "Example 2": { @@ -47907,7 +47907,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "8de1ea08-8a75-4d67-9ee9-7835c6fd46aa" + "guid": "6e8aa603-6a7a-4260-9d37-a1d06d0c0910" } } } @@ -48220,7 +48220,7 @@ { "type": "discrete", "name": "Red", - "guid": "7caa9711-14ea-41e7-8a93-45cc2cefb5fa" + "guid": "76e20a62-c456-41e4-9dee-36846b9a48d7" }, { "type": "discrete", @@ -48230,7 +48230,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "97aa4b33-57c7-4955-b61d-349631f7bbcf" + "guid": "14e6b737-5442-4d31-847c-47e1201031e2" } }, "Example 3": { @@ -48358,7 +48358,7 @@ { "type": "discrete", "name": "Red", - "guid": "7caa9711-14ea-41e7-8a93-45cc2cefb5fa" + "guid": "76e20a62-c456-41e4-9dee-36846b9a48d7" }, { "type": "discrete", @@ -48368,7 +48368,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "97aa4b33-57c7-4955-b61d-349631f7bbcf" + "guid": "14e6b737-5442-4d31-847c-47e1201031e2" } }, "Example 3": { @@ -48496,7 +48496,7 @@ { "type": "discrete", "name": "Red", - "guid": "7caa9711-14ea-41e7-8a93-45cc2cefb5fa" + "guid": "76e20a62-c456-41e4-9dee-36846b9a48d7" }, { "type": "discrete", @@ -48506,7 +48506,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "97aa4b33-57c7-4955-b61d-349631f7bbcf" + "guid": "14e6b737-5442-4d31-847c-47e1201031e2" } }, "Example 3": { @@ -48634,7 +48634,7 @@ { "type": "discrete", "name": "Red", - "guid": "7caa9711-14ea-41e7-8a93-45cc2cefb5fa" + "guid": "76e20a62-c456-41e4-9dee-36846b9a48d7" }, { "type": "discrete", @@ -48644,7 +48644,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "97aa4b33-57c7-4955-b61d-349631f7bbcf" + "guid": "14e6b737-5442-4d31-847c-47e1201031e2" } }, "Example 3": { @@ -48815,8 +48815,8 @@ "name": "Outside Temperature", "errors": [ { - "message": "Could not find unit with GUID 'cfa61ab6-c240-48e4-bbc3-5a96310ec721'.", - "guid": "cfa61ab6-c240-48e4-bbc3-5a96310ec721", + "message": "Could not find unit with GUID '4a2e374d-d4f8-4d65-b874-4f0ae1610cae'.", + "guid": "4a2e374d-d4f8-4d65-b874-4f0ae1610cae", "reason": "noSuchUnit" }, { @@ -48976,7 +48976,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "dc75d1f2-ea1e-4ea6-9475-050c0cce6955" + "guid": "9cce25f4-8388-411b-a674-530ccb6e2797" } }, "Example 2": { @@ -48987,7 +48987,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "24df4bd3-8392-4102-acb7-fd2d0fcbcc4c" + "guid": "aaf278c2-e9d2-4aff-bfd1-87c831eeb761" } }, "Example 3": { @@ -48995,7 +48995,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": "5855bddd-3e21-4fa8-aae2-08109d084bd2" + "guid": "fffd0c91-a46d-498a-b0a0-80b243820ec9" } }, "Example 4": { @@ -49014,7 +49014,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "3e1bbc1d-8f69-47f8-af8c-0696dfccc497" + "guid": "01383f92-1b44-4fed-a624-7d8950d55082" } }, "Example 6": { @@ -49080,7 +49080,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "dc75d1f2-ea1e-4ea6-9475-050c0cce6955" + "guid": "9cce25f4-8388-411b-a674-530ccb6e2797" } }, "Example 2": { @@ -49091,7 +49091,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "24df4bd3-8392-4102-acb7-fd2d0fcbcc4c" + "guid": "aaf278c2-e9d2-4aff-bfd1-87c831eeb761" } }, "Example 3": { @@ -49099,7 +49099,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": "5855bddd-3e21-4fa8-aae2-08109d084bd2" + "guid": "fffd0c91-a46d-498a-b0a0-80b243820ec9" } }, "Example 4": { @@ -49118,7 +49118,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "3e1bbc1d-8f69-47f8-af8c-0696dfccc497" + "guid": "01383f92-1b44-4fed-a624-7d8950d55082" } }, "Example 6": { @@ -49184,7 +49184,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "dc75d1f2-ea1e-4ea6-9475-050c0cce6955" + "guid": "9cce25f4-8388-411b-a674-530ccb6e2797" } }, "Example 2": { @@ -49195,7 +49195,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "24df4bd3-8392-4102-acb7-fd2d0fcbcc4c" + "guid": "aaf278c2-e9d2-4aff-bfd1-87c831eeb761" } }, "Example 3": { @@ -49203,7 +49203,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": "5855bddd-3e21-4fa8-aae2-08109d084bd2" + "guid": "fffd0c91-a46d-498a-b0a0-80b243820ec9" } }, "Example 4": { @@ -49222,7 +49222,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "3e1bbc1d-8f69-47f8-af8c-0696dfccc497" + "guid": "01383f92-1b44-4fed-a624-7d8950d55082" } }, "Example 6": { @@ -49288,7 +49288,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "dc75d1f2-ea1e-4ea6-9475-050c0cce6955" + "guid": "9cce25f4-8388-411b-a674-530ccb6e2797" } }, "Example 2": { @@ -49299,7 +49299,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "24df4bd3-8392-4102-acb7-fd2d0fcbcc4c" + "guid": "aaf278c2-e9d2-4aff-bfd1-87c831eeb761" } }, "Example 3": { @@ -49307,7 +49307,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": "5855bddd-3e21-4fa8-aae2-08109d084bd2" + "guid": "fffd0c91-a46d-498a-b0a0-80b243820ec9" } }, "Example 4": { @@ -49326,7 +49326,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "3e1bbc1d-8f69-47f8-af8c-0696dfccc497" + "guid": "01383f92-1b44-4fed-a624-7d8950d55082" } }, "Example 6": { @@ -49434,8 +49434,8 @@ "parameterGuid": "00000001-000a-4fff-8fff-0000ffff0000", "errors": [ { - "message": "Could not find unit with GUID '85756dfd-d77a-4c2c-a9f9-2d007f26aaac'.", - "guid": "85756dfd-d77a-4c2c-a9f9-2d007f26aaac", + "message": "Could not find unit with GUID '697a1337-c7ac-44ae-9671-9a80982854f9'.", + "guid": "697a1337-c7ac-44ae-9671-9a80982854f9", "reason": "noSuchUnit" } ] @@ -49450,8 +49450,8 @@ "parameterGuid": "00000004-000a-4fff-8fff-0000ffff0000", "errors": [ { - "message": "Could not find unit with GUID 'ea9b80b7-2c65-42f6-9870-3582f208ff86'.", - "guid": "ea9b80b7-2c65-42f6-9870-3582f208ff86", + "message": "Could not find unit with GUID 'd5b96b84-abff-4482-844f-2f1f4200e9f1'.", + "guid": "d5b96b84-abff-4482-844f-2f1f4200e9f1", "reason": "noSuchUnit" }, { @@ -49717,7 +49717,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "86ee561d-b15c-4b08-8068-71ae357cb355" + "guid": "860d7b22-104a-4624-b085-f5afb77f0950" } }, "Example 2": { @@ -49726,7 +49726,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8d5b64d4-1422-4a96-a599-afc1a922414d" + "guid": "11b81daf-a136-4336-b368-c8e6762adf4d" } }, "Example 3": { @@ -49734,7 +49734,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": "778e7a03-233f-4dce-83b9-07ebc8473422" + "guid": "a44e5b3b-4ba3-487a-a362-69c8ede001b8" } } } @@ -49751,7 +49751,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "86ee561d-b15c-4b08-8068-71ae357cb355" + "guid": "860d7b22-104a-4624-b085-f5afb77f0950" } }, "Example 2": { @@ -49760,7 +49760,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8d5b64d4-1422-4a96-a599-afc1a922414d" + "guid": "11b81daf-a136-4336-b368-c8e6762adf4d" } }, "Example 3": { @@ -49768,7 +49768,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": "778e7a03-233f-4dce-83b9-07ebc8473422" + "guid": "a44e5b3b-4ba3-487a-a362-69c8ede001b8" } } } @@ -49785,7 +49785,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "86ee561d-b15c-4b08-8068-71ae357cb355" + "guid": "860d7b22-104a-4624-b085-f5afb77f0950" } }, "Example 2": { @@ -49794,7 +49794,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8d5b64d4-1422-4a96-a599-afc1a922414d" + "guid": "11b81daf-a136-4336-b368-c8e6762adf4d" } }, "Example 3": { @@ -49802,7 +49802,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": "778e7a03-233f-4dce-83b9-07ebc8473422" + "guid": "a44e5b3b-4ba3-487a-a362-69c8ede001b8" } } } @@ -49819,7 +49819,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "86ee561d-b15c-4b08-8068-71ae357cb355" + "guid": "860d7b22-104a-4624-b085-f5afb77f0950" } }, "Example 2": { @@ -49828,7 +49828,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8d5b64d4-1422-4a96-a599-afc1a922414d" + "guid": "11b81daf-a136-4336-b368-c8e6762adf4d" } }, "Example 3": { @@ -49836,7 +49836,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": "778e7a03-233f-4dce-83b9-07ebc8473422" + "guid": "a44e5b3b-4ba3-487a-a362-69c8ede001b8" } } } @@ -50629,7 +50629,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": "c6978816-b16f-4551-bdc4-a75afd5f4409" + "guid": "97ca13b7-1e7a-42a4-b15f-c39d4da19870" } }, "Example 3": { @@ -50640,7 +50640,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3070caf8-fb32-4b61-8444-349781e127c6" + "guid": "b31f9f35-59d9-49b9-aa32-2fe33a310d5c" } } } @@ -50662,7 +50662,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": "c6978816-b16f-4551-bdc4-a75afd5f4409" + "guid": "97ca13b7-1e7a-42a4-b15f-c39d4da19870" } }, "Example 3": { @@ -50673,7 +50673,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3070caf8-fb32-4b61-8444-349781e127c6" + "guid": "b31f9f35-59d9-49b9-aa32-2fe33a310d5c" } } } @@ -50695,7 +50695,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": "c6978816-b16f-4551-bdc4-a75afd5f4409" + "guid": "97ca13b7-1e7a-42a4-b15f-c39d4da19870" } }, "Example 3": { @@ -50706,7 +50706,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3070caf8-fb32-4b61-8444-349781e127c6" + "guid": "b31f9f35-59d9-49b9-aa32-2fe33a310d5c" } } } @@ -50728,7 +50728,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": "c6978816-b16f-4551-bdc4-a75afd5f4409" + "guid": "97ca13b7-1e7a-42a4-b15f-c39d4da19870" } }, "Example 3": { @@ -50739,7 +50739,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3070caf8-fb32-4b61-8444-349781e127c6" + "guid": "b31f9f35-59d9-49b9-aa32-2fe33a310d5c" } } } @@ -50881,7 +50881,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": "9bb17b09-9507-42f8-bc98-b71d5039866d" + "guid": "d84595b3-8691-424e-95c1-fe0c2c6c9546" } }, "Example 2": { @@ -50901,7 +50901,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "bbeb32e4-d1cc-4738-bef8-0d6bf51480e5", + "guid": "752d5505-62bc-4bd7-aeda-6ec77373a5dc", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -50917,7 +50917,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": "9bb17b09-9507-42f8-bc98-b71d5039866d" + "guid": "d84595b3-8691-424e-95c1-fe0c2c6c9546" } }, "Example 2": { @@ -50937,7 +50937,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "bbeb32e4-d1cc-4738-bef8-0d6bf51480e5", + "guid": "752d5505-62bc-4bd7-aeda-6ec77373a5dc", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -50953,7 +50953,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": "9bb17b09-9507-42f8-bc98-b71d5039866d" + "guid": "d84595b3-8691-424e-95c1-fe0c2c6c9546" } }, "Example 2": { @@ -50973,7 +50973,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "bbeb32e4-d1cc-4738-bef8-0d6bf51480e5", + "guid": "752d5505-62bc-4bd7-aeda-6ec77373a5dc", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -50989,7 +50989,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": "9bb17b09-9507-42f8-bc98-b71d5039866d" + "guid": "d84595b3-8691-424e-95c1-fe0c2c6c9546" } }, "Example 2": { @@ -51009,7 +51009,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "bbeb32e4-d1cc-4738-bef8-0d6bf51480e5", + "guid": "752d5505-62bc-4bd7-aeda-6ec77373a5dc", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -51191,7 +51191,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "d5a9a01d-6406-41df-83ae-6078fc0cd58e" + "guid": "fdfb9af6-3b33-44f6-91d4-5e8ea5fa097c" } }, "Example 3": { @@ -51202,7 +51202,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "52c8b86c-cee4-4f62-8d9e-1a5075a3bd09" + "guid": "efe85780-1aa9-4263-9b34-a0b57e109d8b" } } } @@ -51226,7 +51226,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "d5a9a01d-6406-41df-83ae-6078fc0cd58e" + "guid": "fdfb9af6-3b33-44f6-91d4-5e8ea5fa097c" } }, "Example 3": { @@ -51237,7 +51237,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "52c8b86c-cee4-4f62-8d9e-1a5075a3bd09" + "guid": "efe85780-1aa9-4263-9b34-a0b57e109d8b" } } } @@ -51261,7 +51261,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "d5a9a01d-6406-41df-83ae-6078fc0cd58e" + "guid": "fdfb9af6-3b33-44f6-91d4-5e8ea5fa097c" } }, "Example 3": { @@ -51272,7 +51272,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "52c8b86c-cee4-4f62-8d9e-1a5075a3bd09" + "guid": "efe85780-1aa9-4263-9b34-a0b57e109d8b" } } } @@ -51296,7 +51296,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "d5a9a01d-6406-41df-83ae-6078fc0cd58e" + "guid": "fdfb9af6-3b33-44f6-91d4-5e8ea5fa097c" } }, "Example 3": { @@ -51307,7 +51307,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "52c8b86c-cee4-4f62-8d9e-1a5075a3bd09" + "guid": "efe85780-1aa9-4263-9b34-a0b57e109d8b" } } } @@ -51444,7 +51444,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "03b89f02-a8f0-4927-8f9a-28fb1f8c3641" + "guid": "9992f3c1-87d5-48c2-8ac2-08b1adcc1c24" } }, "Example 2": { @@ -51459,7 +51459,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": "3872869d-f07c-4c1c-b56d-6b91238767b4" + "guid": "b87dee26-638e-4642-a94f-a78505336880" } } } @@ -51475,7 +51475,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "03b89f02-a8f0-4927-8f9a-28fb1f8c3641" + "guid": "9992f3c1-87d5-48c2-8ac2-08b1adcc1c24" } }, "Example 2": { @@ -51490,7 +51490,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": "3872869d-f07c-4c1c-b56d-6b91238767b4" + "guid": "b87dee26-638e-4642-a94f-a78505336880" } } } @@ -51506,7 +51506,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "03b89f02-a8f0-4927-8f9a-28fb1f8c3641" + "guid": "9992f3c1-87d5-48c2-8ac2-08b1adcc1c24" } }, "Example 2": { @@ -51521,7 +51521,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": "3872869d-f07c-4c1c-b56d-6b91238767b4" + "guid": "b87dee26-638e-4642-a94f-a78505336880" } } } @@ -51537,7 +51537,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "03b89f02-a8f0-4927-8f9a-28fb1f8c3641" + "guid": "9992f3c1-87d5-48c2-8ac2-08b1adcc1c24" } }, "Example 2": { @@ -51552,7 +51552,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": "3872869d-f07c-4c1c-b56d-6b91238767b4" + "guid": "b87dee26-638e-4642-a94f-a78505336880" } } } @@ -51727,7 +51727,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "3fc50681-b5c9-444d-872e-493265fa2b39" + "guid": "c3307d76-9279-4beb-9789-4d6cbcc342d5" } ] } @@ -51800,7 +51800,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b320acf7-fa7b-44f9-879a-bc10c074a325" + "guid": "25a00525-2884-42be-a08c-7dc04db3207a" } }, "Example 3": { @@ -51809,7 +51809,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "459c8dd8-ccee-426e-92eb-b2578000830f" + "tableGuid": "4a867401-3e4b-45c6-9c5c-5284a02a1383" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -51822,13 +51822,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "3c4033f6-c731-4115-91a8-0c0886fedab9", - "tableGuid": "a104c76e-4fda-48df-b64d-9730244903fc" + "databaseGuid": "fcf8b816-ff55-4b78-907b-618149b834dc", + "tableGuid": "de753a3f-2681-4a67-839c-694fe784fa85" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "70d3ea8a-70ee-412b-a8b3-220f5ed31ec4" + "guid": "03f9a4e1-77e5-4a29-93ce-47861febe96c" } }, "Example 5": { @@ -51873,7 +51873,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "ee08a18f-6e9d-4c97-8ccf-4621c304fa3b" + "guid": "ff9bf87c-747b-4cda-a633-7ca16dadc4d2" } } } @@ -51907,7 +51907,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b320acf7-fa7b-44f9-879a-bc10c074a325" + "guid": "25a00525-2884-42be-a08c-7dc04db3207a" } }, "Example 3": { @@ -51916,7 +51916,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "459c8dd8-ccee-426e-92eb-b2578000830f" + "tableGuid": "4a867401-3e4b-45c6-9c5c-5284a02a1383" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -51929,13 +51929,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "3c4033f6-c731-4115-91a8-0c0886fedab9", - "tableGuid": "a104c76e-4fda-48df-b64d-9730244903fc" + "databaseGuid": "fcf8b816-ff55-4b78-907b-618149b834dc", + "tableGuid": "de753a3f-2681-4a67-839c-694fe784fa85" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "70d3ea8a-70ee-412b-a8b3-220f5ed31ec4" + "guid": "03f9a4e1-77e5-4a29-93ce-47861febe96c" } }, "Example 5": { @@ -51980,7 +51980,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "ee08a18f-6e9d-4c97-8ccf-4621c304fa3b" + "guid": "ff9bf87c-747b-4cda-a633-7ca16dadc4d2" } } } @@ -52014,7 +52014,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b320acf7-fa7b-44f9-879a-bc10c074a325" + "guid": "25a00525-2884-42be-a08c-7dc04db3207a" } }, "Example 3": { @@ -52023,7 +52023,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "459c8dd8-ccee-426e-92eb-b2578000830f" + "tableGuid": "4a867401-3e4b-45c6-9c5c-5284a02a1383" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -52036,13 +52036,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "3c4033f6-c731-4115-91a8-0c0886fedab9", - "tableGuid": "a104c76e-4fda-48df-b64d-9730244903fc" + "databaseGuid": "fcf8b816-ff55-4b78-907b-618149b834dc", + "tableGuid": "de753a3f-2681-4a67-839c-694fe784fa85" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "70d3ea8a-70ee-412b-a8b3-220f5ed31ec4" + "guid": "03f9a4e1-77e5-4a29-93ce-47861febe96c" } }, "Example 5": { @@ -52087,7 +52087,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "ee08a18f-6e9d-4c97-8ccf-4621c304fa3b" + "guid": "ff9bf87c-747b-4cda-a633-7ca16dadc4d2" } } } @@ -52121,7 +52121,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b320acf7-fa7b-44f9-879a-bc10c074a325" + "guid": "25a00525-2884-42be-a08c-7dc04db3207a" } }, "Example 3": { @@ -52130,7 +52130,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "459c8dd8-ccee-426e-92eb-b2578000830f" + "tableGuid": "4a867401-3e4b-45c6-9c5c-5284a02a1383" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -52143,13 +52143,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "3c4033f6-c731-4115-91a8-0c0886fedab9", - "tableGuid": "a104c76e-4fda-48df-b64d-9730244903fc" + "databaseGuid": "fcf8b816-ff55-4b78-907b-618149b834dc", + "tableGuid": "de753a3f-2681-4a67-839c-694fe784fa85" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "70d3ea8a-70ee-412b-a8b3-220f5ed31ec4" + "guid": "03f9a4e1-77e5-4a29-93ce-47861febe96c" } }, "Example 5": { @@ -52194,7 +52194,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "ee08a18f-6e9d-4c97-8ccf-4621c304fa3b" + "guid": "ff9bf87c-747b-4cda-a633-7ca16dadc4d2" } } } @@ -52249,8 +52249,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "fbb76457-22da-4636-be63-2b1bc5d729fd", - "tableGuid": "bdf04912-cd51-48e4-adfc-ee670656af92" + "databaseGuid": "7cfd45d1-7322-4f64-9eb5-7cb77a1f0e72", + "tableGuid": "9a7711c9-27a9-4e79-aa4d-75b7e322e9c6" } }, "identity": 1, @@ -52258,7 +52258,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "b6478e4f-58b1-485c-8beb-7d89ae55cb95" + "guid": "5f5da19c-f66e-44af-94f1-bd7d5f7cad69" } }, "Example 6": { @@ -52456,8 +52456,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "35152980-cd7b-4462-9568-6301463772fe", - "tableGuid": "33e1219b-379b-4f66-9394-9800f00f7719" + "databaseGuid": "5309873f-9c19-40a5-ba92-79eccae491ec", + "tableGuid": "d0317565-c94d-4b53-a561-a930c4520234" } }, "identity": 1, @@ -52465,7 +52465,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "c59769f8-b528-4fbd-937a-29352b0f764e" + "guid": "42ddb1a0-18c3-4ec2-b0b6-1d1b2837e7fd" } }, "Example 3": { @@ -52648,7 +52648,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": "4174a16b-3f01-46cb-aba9-47ed2de44f7f" + "guid": "2ac83ffb-25db-494b-a48c-37f8c0bd9727" } }, "Example 2": { @@ -52668,7 +52668,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e5785ac6-1852-45c7-96f6-497f1d43d5d5" + "guid": "1571825e-8070-4679-973e-4150c7aa2afe" } }, "Example 4": { @@ -52679,7 +52679,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "c6661cc3-ba82-4ad9-a607-98f419923596" + "guid": "d5ce686b-e29e-4c74-80f6-d7f681def01b" } }, "Example 5": { @@ -52701,7 +52701,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "b29a5c1a-d7f5-4f2c-9817-2a689271b124" + "guid": "26fd9367-b470-455a-8027-e3c17b77e91d" } } } @@ -52716,7 +52716,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": "4174a16b-3f01-46cb-aba9-47ed2de44f7f" + "guid": "2ac83ffb-25db-494b-a48c-37f8c0bd9727" } }, "Example 2": { @@ -52736,7 +52736,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e5785ac6-1852-45c7-96f6-497f1d43d5d5" + "guid": "1571825e-8070-4679-973e-4150c7aa2afe" } }, "Example 4": { @@ -52747,7 +52747,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "c6661cc3-ba82-4ad9-a607-98f419923596" + "guid": "d5ce686b-e29e-4c74-80f6-d7f681def01b" } }, "Example 5": { @@ -52769,7 +52769,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "b29a5c1a-d7f5-4f2c-9817-2a689271b124" + "guid": "26fd9367-b470-455a-8027-e3c17b77e91d" } } } @@ -52784,7 +52784,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": "4174a16b-3f01-46cb-aba9-47ed2de44f7f" + "guid": "2ac83ffb-25db-494b-a48c-37f8c0bd9727" } }, "Example 2": { @@ -52804,7 +52804,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e5785ac6-1852-45c7-96f6-497f1d43d5d5" + "guid": "1571825e-8070-4679-973e-4150c7aa2afe" } }, "Example 4": { @@ -52815,7 +52815,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "c6661cc3-ba82-4ad9-a607-98f419923596" + "guid": "d5ce686b-e29e-4c74-80f6-d7f681def01b" } }, "Example 5": { @@ -52837,7 +52837,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "b29a5c1a-d7f5-4f2c-9817-2a689271b124" + "guid": "26fd9367-b470-455a-8027-e3c17b77e91d" } } } @@ -52852,7 +52852,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": "4174a16b-3f01-46cb-aba9-47ed2de44f7f" + "guid": "2ac83ffb-25db-494b-a48c-37f8c0bd9727" } }, "Example 2": { @@ -52872,7 +52872,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "e5785ac6-1852-45c7-96f6-497f1d43d5d5" + "guid": "1571825e-8070-4679-973e-4150c7aa2afe" } }, "Example 4": { @@ -52883,7 +52883,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "c6661cc3-ba82-4ad9-a607-98f419923596" + "guid": "d5ce686b-e29e-4c74-80f6-d7f681def01b" } }, "Example 5": { @@ -52905,7 +52905,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "b29a5c1a-d7f5-4f2c-9817-2a689271b124" + "guid": "26fd9367-b470-455a-8027-e3c17b77e91d" } } } @@ -52960,8 +52960,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "de30fa5c-89ee-4263-b70c-8e4942e89715", - "tableGuid": "b7b579ca-f814-4157-9a75-64bb055dec04" + "databaseGuid": "a9e6a21d-ce25-4372-b32b-ae01228237db", + "tableGuid": "71e701f9-f79c-4635-8e6c-73d2918b15a8" } }, "identity": 1, @@ -52969,7 +52969,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "de8ceef3-2789-45af-a3fd-48afe873a753" + "guid": "9742e4a1-846f-4910-8cb0-df5c1e6ca448" } }, "Example 9": { @@ -53126,7 +53126,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": "33e8e6fc-a152-4b77-9da1-1c338c152f42" + "guid": "c2d9fc8e-8916-4800-be18-32a4ec248aa3" } } } @@ -53150,7 +53150,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": "33e8e6fc-a152-4b77-9da1-1c338c152f42" + "guid": "c2d9fc8e-8916-4800-be18-32a4ec248aa3" } } } @@ -53174,7 +53174,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": "33e8e6fc-a152-4b77-9da1-1c338c152f42" + "guid": "c2d9fc8e-8916-4800-be18-32a4ec248aa3" } } } @@ -53198,7 +53198,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": "33e8e6fc-a152-4b77-9da1-1c338c152f42" + "guid": "c2d9fc8e-8916-4800-be18-32a4ec248aa3" } } } @@ -53327,7 +53327,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "2356ca31-d585-4b06-a0b6-93dba4fca57f" + "guid": "7b4a0dbb-9a39-4bfb-910b-b783b0ecf28f" } }, "Example 2": { @@ -53357,7 +53357,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "2356ca31-d585-4b06-a0b6-93dba4fca57f" + "guid": "7b4a0dbb-9a39-4bfb-910b-b783b0ecf28f" } }, "Example 2": { @@ -53387,7 +53387,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "2356ca31-d585-4b06-a0b6-93dba4fca57f" + "guid": "7b4a0dbb-9a39-4bfb-910b-b783b0ecf28f" } }, "Example 2": { @@ -53417,7 +53417,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "2356ca31-d585-4b06-a0b6-93dba4fca57f" + "guid": "7b4a0dbb-9a39-4bfb-910b-b783b0ecf28f" } }, "Example 2": { @@ -53617,7 +53617,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "eb16a210-377b-417b-8f82-0d2959a11f9d" + "guid": "c4001dea-1945-4f11-9937-f0408faab749" } ], "name": "Unification" @@ -53698,7 +53698,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "eb16a210-377b-417b-8f82-0d2959a11f9d" + "guid": "c4001dea-1945-4f11-9937-f0408faab749" } ], "name": "Unification" @@ -53779,7 +53779,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "eb16a210-377b-417b-8f82-0d2959a11f9d" + "guid": "c4001dea-1945-4f11-9937-f0408faab749" } ], "name": "Unification" @@ -53860,7 +53860,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "eb16a210-377b-417b-8f82-0d2959a11f9d" + "guid": "c4001dea-1945-4f11-9937-f0408faab749" } ], "name": "Unification" @@ -54004,7 +54004,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": "d84c4f34-faa4-4155-a1c3-eadf5afa5027" + "guid": "23a73d0e-0ae3-435d-974f-1af49424ee17" } }, "Example 3": { @@ -54054,7 +54054,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": "d84c4f34-faa4-4155-a1c3-eadf5afa5027" + "guid": "23a73d0e-0ae3-435d-974f-1af49424ee17" } }, "Example 3": { @@ -54104,7 +54104,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": "d84c4f34-faa4-4155-a1c3-eadf5afa5027" + "guid": "23a73d0e-0ae3-435d-974f-1af49424ee17" } }, "Example 3": { @@ -54154,7 +54154,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": "d84c4f34-faa4-4155-a1c3-eadf5afa5027" + "guid": "23a73d0e-0ae3-435d-974f-1af49424ee17" } }, "Example 3": { @@ -54398,7 +54398,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": "e4dfa21d-9082-45f8-8ea4-547ec3975d97" + "guid": "10e569f4-8b03-4de5-81aa-19400049f7a2" } }, "Example 3": { @@ -54430,7 +54430,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": "e4dfa21d-9082-45f8-8ea4-547ec3975d97" + "guid": "10e569f4-8b03-4de5-81aa-19400049f7a2" } }, "Example 3": { @@ -54462,7 +54462,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": "e4dfa21d-9082-45f8-8ea4-547ec3975d97" + "guid": "10e569f4-8b03-4de5-81aa-19400049f7a2" } }, "Example 3": { @@ -54494,7 +54494,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": "e4dfa21d-9082-45f8-8ea4-547ec3975d97" + "guid": "10e569f4-8b03-4de5-81aa-19400049f7a2" } }, "Example 3": { @@ -54693,7 +54693,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "92fcf226-1f6a-450f-9f20-154ab97280f3" + "guid": "c5fc8e80-6045-4ecf-beae-d1c402359e9b" } }, "Example 2": { @@ -54734,7 +54734,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "92fcf226-1f6a-450f-9f20-154ab97280f3" + "guid": "c5fc8e80-6045-4ecf-beae-d1c402359e9b" } }, "Example 2": { @@ -54775,7 +54775,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "92fcf226-1f6a-450f-9f20-154ab97280f3" + "guid": "c5fc8e80-6045-4ecf-beae-d1c402359e9b" } }, "Example 2": { @@ -54816,7 +54816,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "92fcf226-1f6a-450f-9f20-154ab97280f3" + "guid": "c5fc8e80-6045-4ecf-beae-d1c402359e9b" } }, "Example 2": { @@ -55341,7 +55341,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "70a62ae6-7c80-4e7e-88e4-51531d1ef5a4" + "guid": "3ca6a2d4-1025-45d3-ad60-55d644f76a66" } }, "Example 3": { @@ -55376,7 +55376,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "70a62ae6-7c80-4e7e-88e4-51531d1ef5a4" + "guid": "3ca6a2d4-1025-45d3-ad60-55d644f76a66" } }, "Example 3": { @@ -55411,7 +55411,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "70a62ae6-7c80-4e7e-88e4-51531d1ef5a4" + "guid": "3ca6a2d4-1025-45d3-ad60-55d644f76a66" } }, "Example 3": { @@ -55446,7 +55446,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "70a62ae6-7c80-4e7e-88e4-51531d1ef5a4" + "guid": "3ca6a2d4-1025-45d3-ad60-55d644f76a66" } }, "Example 3": { @@ -55690,7 +55690,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "1e96dd17-876a-4e94-ac79-87f350a4e517" + "guid": "d7a52de2-698b-4fc9-8b15-ac6773fbeb16" } }, "Example 2": { @@ -55751,7 +55751,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "1e96dd17-876a-4e94-ac79-87f350a4e517" + "guid": "d7a52de2-698b-4fc9-8b15-ac6773fbeb16" } }, "Example 2": { @@ -55812,7 +55812,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "1e96dd17-876a-4e94-ac79-87f350a4e517" + "guid": "d7a52de2-698b-4fc9-8b15-ac6773fbeb16" } }, "Example 2": { @@ -55873,7 +55873,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "1e96dd17-876a-4e94-ac79-87f350a4e517" + "guid": "d7a52de2-698b-4fc9-8b15-ac6773fbeb16" } }, "Example 2": { @@ -56380,9 +56380,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "fc2d3adb-f079-414b-9b81-7262582133bb", - "databaseVersionGuid": "64979fa4-2be1-4070-9a06-7c3bef6eef3d", - "tableGuid": "845d2621-e535-4949-b916-c5c390c007ab" + "databaseGuid": "514d423e-9dd6-484f-ad18-7ad55d504ef2", + "databaseVersionGuid": "0187f8b2-bf72-4107-ab21-9c03763266bf", + "tableGuid": "0dc2c939-e904-48f8-88f1-98c0b6075621" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -56392,7 +56392,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "ae32d1ca-8d82-4020-9eb7-8d225b873565" + "guid": "fe72afa0-ed61-4a9c-b356-acaf15c0b1d8" }, { "type": "tabularAttribute", @@ -57342,7 +57342,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": "edf65c60-f517-4b2d-9785-673a4e5ae83d" + "guid": "a49377b5-b069-433b-a64a-bb543225dee2" } } } @@ -57357,7 +57357,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": "edf65c60-f517-4b2d-9785-673a4e5ae83d" + "guid": "a49377b5-b069-433b-a64a-bb543225dee2" } } } @@ -57372,7 +57372,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": "edf65c60-f517-4b2d-9785-673a4e5ae83d" + "guid": "a49377b5-b069-433b-a64a-bb543225dee2" } } } @@ -57387,7 +57387,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": "edf65c60-f517-4b2d-9785-673a4e5ae83d" + "guid": "a49377b5-b069-433b-a64a-bb543225dee2" } } } @@ -57502,7 +57502,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": "16b38a17-3548-47ff-93d4-2b023688dbcd" + "guid": "920c7e6e-83c9-4d49-9ad5-aa2798cd8b01" } }, "Example 2": { @@ -57516,7 +57516,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": "25c237ce-15af-44b9-99e4-c7ac26d824a1" + "guid": "b8cedd2e-3a72-40cc-bef8-cb0fab5f4def" } } } @@ -57531,7 +57531,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": "16b38a17-3548-47ff-93d4-2b023688dbcd" + "guid": "920c7e6e-83c9-4d49-9ad5-aa2798cd8b01" } }, "Example 2": { @@ -57545,7 +57545,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": "25c237ce-15af-44b9-99e4-c7ac26d824a1" + "guid": "b8cedd2e-3a72-40cc-bef8-cb0fab5f4def" } } } @@ -57560,7 +57560,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": "16b38a17-3548-47ff-93d4-2b023688dbcd" + "guid": "920c7e6e-83c9-4d49-9ad5-aa2798cd8b01" } }, "Example 2": { @@ -57574,7 +57574,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": "25c237ce-15af-44b9-99e4-c7ac26d824a1" + "guid": "b8cedd2e-3a72-40cc-bef8-cb0fab5f4def" } } } @@ -57589,7 +57589,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": "16b38a17-3548-47ff-93d4-2b023688dbcd" + "guid": "920c7e6e-83c9-4d49-9ad5-aa2798cd8b01" } }, "Example 2": { @@ -57603,7 +57603,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": "25c237ce-15af-44b9-99e4-c7ac26d824a1" + "guid": "b8cedd2e-3a72-40cc-bef8-cb0fab5f4def" } } } @@ -58068,8 +58068,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "15e14a82-04bf-444d-abe5-e8125d33a1a1", - "976df98b-7d2f-485b-acb9-5b461d98e3e5" + "42abfcc1-593f-4166-bafc-8e7299e047ee", + "e6a91c26-6f79-410d-a959-aa8656fc8554" ], "type": "recordListMember" }, @@ -58869,8 +58869,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "15e14a82-04bf-444d-abe5-e8125d33a1a1", - "976df98b-7d2f-485b-acb9-5b461d98e3e5" + "42abfcc1-593f-4166-bafc-8e7299e047ee", + "e6a91c26-6f79-410d-a959-aa8656fc8554" ], "type": "recordListMember" }, @@ -59670,8 +59670,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "15e14a82-04bf-444d-abe5-e8125d33a1a1", - "976df98b-7d2f-485b-acb9-5b461d98e3e5" + "42abfcc1-593f-4166-bafc-8e7299e047ee", + "e6a91c26-6f79-410d-a959-aa8656fc8554" ], "type": "recordListMember" }, @@ -60471,8 +60471,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "15e14a82-04bf-444d-abe5-e8125d33a1a1", - "976df98b-7d2f-485b-acb9-5b461d98e3e5" + "42abfcc1-593f-4166-bafc-8e7299e047ee", + "e6a91c26-6f79-410d-a959-aa8656fc8554" ], "type": "recordListMember" }, @@ -61355,8 +61355,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "667ca6d8-a4fb-4a47-9f73-02d12691ab90", - "b599ca06-666e-40db-903f-822ef1be3087" + "0be3c7c8-69a8-452e-affe-20acb35ff07c", + "9297af27-57e1-4db8-a62a-7092e0e79c5a" ], "type": "recordListMember" }, @@ -62156,8 +62156,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "667ca6d8-a4fb-4a47-9f73-02d12691ab90", - "b599ca06-666e-40db-903f-822ef1be3087" + "0be3c7c8-69a8-452e-affe-20acb35ff07c", + "9297af27-57e1-4db8-a62a-7092e0e79c5a" ], "type": "recordListMember" }, @@ -62957,8 +62957,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "667ca6d8-a4fb-4a47-9f73-02d12691ab90", - "b599ca06-666e-40db-903f-822ef1be3087" + "0be3c7c8-69a8-452e-affe-20acb35ff07c", + "9297af27-57e1-4db8-a62a-7092e0e79c5a" ], "type": "recordListMember" }, @@ -63758,8 +63758,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "667ca6d8-a4fb-4a47-9f73-02d12691ab90", - "b599ca06-666e-40db-903f-822ef1be3087" + "0be3c7c8-69a8-452e-affe-20acb35ff07c", + "9297af27-57e1-4db8-a62a-7092e0e79c5a" ], "type": "recordListMember" }, @@ -64631,8 +64631,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "dd3e3a20-8e6f-4738-a5bf-c469f1156476", - "d7bb73f8-9c31-4aa7-a373-697f4f1bb2b7" + "7a1c3ee7-c8a1-4094-8e5d-e8fb5b06ba77", + "5a9bec80-056c-40b8-b3c0-37abbc8f55cf" ], "type": "recordListMember" }, @@ -65518,8 +65518,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "dd3e3a20-8e6f-4738-a5bf-c469f1156476", - "d7bb73f8-9c31-4aa7-a373-697f4f1bb2b7" + "7a1c3ee7-c8a1-4094-8e5d-e8fb5b06ba77", + "5a9bec80-056c-40b8-b3c0-37abbc8f55cf" ], "type": "recordListMember" }, @@ -66405,8 +66405,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "dd3e3a20-8e6f-4738-a5bf-c469f1156476", - "d7bb73f8-9c31-4aa7-a373-697f4f1bb2b7" + "7a1c3ee7-c8a1-4094-8e5d-e8fb5b06ba77", + "5a9bec80-056c-40b8-b3c0-37abbc8f55cf" ], "type": "recordListMember" }, @@ -67292,8 +67292,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "dd3e3a20-8e6f-4738-a5bf-c469f1156476", - "d7bb73f8-9c31-4aa7-a373-697f4f1bb2b7" + "7a1c3ee7-c8a1-4094-8e5d-e8fb5b06ba77", + "5a9bec80-056c-40b8-b3c0-37abbc8f55cf" ], "type": "recordListMember" }, @@ -68224,8 +68224,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b4e019e7-3be7-4977-bf31-674d2e3e1783", - "e50307f6-0123-4735-bab5-4118e3f21858" + "0e56ba12-de77-4cfd-aead-7eccdc3f27e9", + "659cc6fa-1d28-4faf-a682-fb21a76c39c5" ], "type": "recordListMember" }, @@ -69025,8 +69025,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b4e019e7-3be7-4977-bf31-674d2e3e1783", - "e50307f6-0123-4735-bab5-4118e3f21858" + "0e56ba12-de77-4cfd-aead-7eccdc3f27e9", + "659cc6fa-1d28-4faf-a682-fb21a76c39c5" ], "type": "recordListMember" }, @@ -69826,8 +69826,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b4e019e7-3be7-4977-bf31-674d2e3e1783", - "e50307f6-0123-4735-bab5-4118e3f21858" + "0e56ba12-de77-4cfd-aead-7eccdc3f27e9", + "659cc6fa-1d28-4faf-a682-fb21a76c39c5" ], "type": "recordListMember" }, @@ -70627,8 +70627,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b4e019e7-3be7-4977-bf31-674d2e3e1783", - "e50307f6-0123-4735-bab5-4118e3f21858" + "0e56ba12-de77-4cfd-aead-7eccdc3f27e9", + "659cc6fa-1d28-4faf-a682-fb21a76c39c5" ], "type": "recordListMember" }, @@ -71513,6 +71513,40 @@ } } } + }, + "/v1alpha/status/orphanedSearchIndexes": { + "get": { + "tags": [ + "Status" + ], + "summary": "Returns information about orphaned search indexes", + "operationId": "GetOrphanedSearchIndexes", + "responses": { + "200": { + "description": "Ok", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GsaOrphanedSearchIndexesInfo" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GsaOrphanedSearchIndexesInfo" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GsaOrphanedSearchIndexesInfo" + } + } + } + }, + "403": { + "description": "Forbidden" + } + } + } } }, "components": { @@ -86395,6 +86429,38 @@ "additionalProperties": false, "description": "Properties that identify an object within the MI system.\r\n \r\nAn Granta.Server.Api.ObjectIdentifier created by MI will always contain values for all three\r\nproperties. An Granta.Server.Api.ObjectIdentifier created by a client need not contain values for\r\nall three properties, and is allowed to contain values or combinations of values that do\r\nnot correspond to an existing object in MI (in which case the Granta.Server.Api.ObjectIdentifier\r\nwill be resolved against MI objects first by GUID, and then by name, and finally by identity,\r\ntaking the first match and ignoring subsequent fields." }, + "GsaOrphanedSearchIndex": { + "required": [ + "indexName" + ], + "type": "object", + "properties": { + "indexName": { + "type": "string" + } + }, + "additionalProperties": false + }, + "GsaOrphanedSearchIndexesInfo": { + "required": [ + "diskSpaceUsedInBytes", + "orphanedSearchIndexes" + ], + "type": "object", + "properties": { + "orphanedSearchIndexes": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GsaOrphanedSearchIndex" + } + }, + "diskSpaceUsedInBytes": { + "type": "integer", + "format": "int64" + } + }, + "additionalProperties": false + }, "GsaPaginationLinks": { "type": "object", "properties": {