From e8764284707df952479bdaa4e4fa550e0257dea6 Mon Sep 17 00:00:00 2001 From: PyAnsys CI Bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Tue, 28 Jan 2025 10:31:28 +0100 Subject: [PATCH] Update Swagger.json (13000497638) (#305) Co-authored-by: pyansys-ci-bot --- .../pyproject.toml | 2 +- .../grantami/serverapi_openapi/__init__.py | 6 + .../permission_based_access_control_api.py | 229 ++- .../serverapi_openapi/models/__init__.py | 6 + .../models/gsa_permission.py | 306 +++++ .../models/gsa_permissions_info.py | 149 ++ .../models/gsa_slim_permission.py | 181 +++ yaml/server-api.json | 1224 ++++++++++------- 8 files changed, 1568 insertions(+), 535 deletions(-) create mode 100644 ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_permission.py create mode 100644 ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_permissions_info.py create mode 100644 ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_slim_permission.py diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index d69fa6f3..36e8b472 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.0.0.dev406" +version = "5.0.0.dev408" 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 2ccf6fa6..9e2ce2e9 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 @@ -677,8 +677,10 @@ from .models.gsa_parameter_value_type import GsaParameterValueType from .models.gsa_parameter_with_data_value import GsaParameterWithDataValue from .models.gsa_parameters_info import GsaParametersInfo +from .models.gsa_permission import GsaPermission from .models.gsa_permission_categories_info import GsaPermissionCategoriesInfo from .models.gsa_permission_category import GsaPermissionCategory +from .models.gsa_permissions_info import GsaPermissionsInfo from .models.gsa_picture_attribute import GsaPictureAttribute from .models.gsa_picture_datum import GsaPictureDatum from .models.gsa_picture_datum_criterion import GsaPictureDatumCriterion @@ -866,6 +868,7 @@ from .models.gsa_slim_named_unit import GsaSlimNamedUnit from .models.gsa_slim_objects import GsaSlimObjects from .models.gsa_slim_parameter import GsaSlimParameter +from .models.gsa_slim_permission import GsaSlimPermission from .models.gsa_slim_permission_category import GsaSlimPermissionCategory from .models.gsa_slim_profile import GsaSlimProfile from .models.gsa_slim_profile_table import GsaSlimProfileTable @@ -1602,8 +1605,10 @@ "GsaParameterValueType", "GsaParameterWithDataValue", "GsaParametersInfo", + "GsaPermission", "GsaPermissionCategoriesInfo", "GsaPermissionCategory", + "GsaPermissionsInfo", "GsaPictureAttribute", "GsaPictureDatum", "GsaPictureDatumCriterion", @@ -1773,6 +1778,7 @@ "GsaSlimNamedUnit", "GsaSlimObjects", "GsaSlimParameter", + "GsaSlimPermission", "GsaSlimPermissionCategory", "GsaSlimProfile", "GsaSlimProfileTable", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/permission_based_access_control_api.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/permission_based_access_control_api.py index 19c1b72d..1449d7a1 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/permission_based_access_control_api.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/permission_based_access_control_api.py @@ -48,7 +48,88 @@ class PermissionBasedAccessControlApi(ApiBase): Ref: https://github.com/swagger-api/swagger-codegen """ - def get_access_control_category( + def get_permission_categories( + self, *, database_key: "str" + ) -> "Union[GsaPermissionCategoriesInfo, None]": + """Get all permission-based access control categories for the specified database. + + This method makes a synchronous HTTP request. + + Parameters + ---------- + database_key: str + + Returns + ------- + Union[GsaPermissionCategoriesInfo, None] + """ + data = self._get_permission_categories_with_http_info( + database_key, _return_http_data_only=True + ) + return data # type: ignore[no-any-return] + + def _get_permission_categories_with_http_info(self, database_key: "str", **kwargs: Any) -> Any: + all_params = [ + "database_key", + "_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_permission_categories" + ) + params[key] = val + del params["kwargs"] + # verify the required parameter "database_key" is set + if "database_key" not in params or params["database_key"] is None: + raise ValueError( + "Missing the required parameter 'database_key' when calling 'get_permission_categories'" + ) + + collection_formats: dict[str, Any] = {} + + path_params: dict[str, Any] = {} + if "database_key" in params and database_key is not None: + path_params["database-key"] = params["database_key"] + + 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(["application/json"]) + + response_type_map: dict[int, Optional[str]] = { + 200: "GsaPermissionCategoriesInfo", + 403: None, + 404: None, + } + + return self.api_client.call_api( + "/v1alpha/databases/{database-key}/permission-categories", + "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_permission_category( self, *, database_key: "str", category_guid: "str" ) -> "Union[GsaPermissionCategory, None]": """Get a permission-based access control category with a specified guid. @@ -64,12 +145,12 @@ def get_access_control_category( ------- Union[GsaPermissionCategory, None] """ - data = self._get_access_control_category_with_http_info( + data = self._get_permission_category_with_http_info( database_key, category_guid, _return_http_data_only=True ) return data # type: ignore[no-any-return] - def _get_access_control_category_with_http_info( + def _get_permission_category_with_http_info( self, database_key: "str", category_guid: "str", **kwargs: Any ) -> Any: all_params = [ @@ -84,19 +165,19 @@ def _get_access_control_category_with_http_info( 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_access_control_category" + f"Got an unexpected keyword argument '{key}' to method get_permission_category" ) params[key] = val del params["kwargs"] # verify the required parameter "database_key" is set if "database_key" not in params or params["database_key"] is None: raise ValueError( - "Missing the required parameter 'database_key' when calling 'get_access_control_category'" + "Missing the required parameter 'database_key' when calling 'get_permission_category'" ) # verify the required parameter "category_guid" is set if "category_guid" not in params or params["category_guid"] is None: raise ValueError( - "Missing the required parameter 'category_guid' when calling 'get_access_control_category'" + "Missing the required parameter 'category_guid' when calling 'get_permission_category'" ) collection_formats: dict[str, Any] = {} @@ -140,29 +221,35 @@ def _get_access_control_category_with_http_info( response_type_map=response_type_map, ) - def get_permission_categories( - self, *, database_key: "str" - ) -> "Union[GsaPermissionCategoriesInfo, None]": - """Get all permission-based access control categories for the specified database. + def get_permission_in_category( + self, *, database_key: "str", category_guid: "str", permission_guid: "str" + ) -> "Union[GsaPermission, None]": + """Get a permission-based access control permission with a given guid in the specified category. This method makes a synchronous HTTP request. Parameters ---------- database_key: str + category_guid: str + permission_guid: str Returns ------- - Union[GsaPermissionCategoriesInfo, None] + Union[GsaPermission, None] """ - data = self._get_permission_categories_with_http_info( - database_key, _return_http_data_only=True + data = self._get_permission_in_category_with_http_info( + database_key, category_guid, permission_guid, _return_http_data_only=True ) return data # type: ignore[no-any-return] - def _get_permission_categories_with_http_info(self, database_key: "str", **kwargs: Any) -> Any: + def _get_permission_in_category_with_http_info( + self, database_key: "str", category_guid: "str", permission_guid: "str", **kwargs: Any + ) -> Any: all_params = [ "database_key", + "category_guid", + "permission_guid", "_return_http_data_only", "_preload_content", "_request_timeout", @@ -172,14 +259,24 @@ def _get_permission_categories_with_http_info(self, database_key: "str", **kwarg 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_permission_categories" + f"Got an unexpected keyword argument '{key}' to method get_permission_in_category" ) params[key] = val del params["kwargs"] # verify the required parameter "database_key" is set if "database_key" not in params or params["database_key"] is None: raise ValueError( - "Missing the required parameter 'database_key' when calling 'get_permission_categories'" + "Missing the required parameter 'database_key' when calling 'get_permission_in_category'" + ) + # verify the required parameter "category_guid" is set + if "category_guid" not in params or params["category_guid"] is None: + raise ValueError( + "Missing the required parameter 'category_guid' when calling 'get_permission_in_category'" + ) + # verify the required parameter "permission_guid" is set + if "permission_guid" not in params or params["permission_guid"] is None: + raise ValueError( + "Missing the required parameter 'permission_guid' when calling 'get_permission_in_category'" ) collection_formats: dict[str, Any] = {} @@ -187,6 +284,10 @@ def _get_permission_categories_with_http_info(self, database_key: "str", **kwarg path_params: dict[str, Any] = {} if "database_key" in params and database_key is not None: path_params["database-key"] = params["database_key"] + if "category_guid" in params and category_guid is not None: + path_params["category-guid"] = params["category_guid"] + if "permission_guid" in params and permission_guid is not None: + path_params["permission-guid"] = params["permission_guid"] query_params: list[Any] = [] @@ -200,13 +301,105 @@ def _get_permission_categories_with_http_info(self, database_key: "str", **kwarg header_params["Accept"] = self.api_client.select_header_accept(["application/json"]) response_type_map: dict[int, Optional[str]] = { - 200: "GsaPermissionCategoriesInfo", + 200: "GsaPermission", 403: None, 404: None, } return self.api_client.call_api( - "/v1alpha/databases/{database-key}/permission-categories", + "/v1alpha/databases/{database-key}/permission-categories/{category-guid}/permissions/{permission-guid}", + "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_permissions_in_category( + self, *, database_key: "str", category_guid: "str" + ) -> "Union[GsaPermissionsInfo, None]": + """Get all permission-based access control permissions for the specified category. + + This method makes a synchronous HTTP request. + + Parameters + ---------- + database_key: str + category_guid: str + + Returns + ------- + Union[GsaPermissionsInfo, None] + """ + data = self._get_permissions_in_category_with_http_info( + database_key, category_guid, _return_http_data_only=True + ) + return data # type: ignore[no-any-return] + + def _get_permissions_in_category_with_http_info( + self, database_key: "str", category_guid: "str", **kwargs: Any + ) -> Any: + all_params = [ + "database_key", + "category_guid", + "_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_permissions_in_category" + ) + params[key] = val + del params["kwargs"] + # verify the required parameter "database_key" is set + if "database_key" not in params or params["database_key"] is None: + raise ValueError( + "Missing the required parameter 'database_key' when calling 'get_permissions_in_category'" + ) + # verify the required parameter "category_guid" is set + if "category_guid" not in params or params["category_guid"] is None: + raise ValueError( + "Missing the required parameter 'category_guid' when calling 'get_permissions_in_category'" + ) + + collection_formats: dict[str, Any] = {} + + path_params: dict[str, Any] = {} + if "database_key" in params and database_key is not None: + path_params["database-key"] = params["database_key"] + if "category_guid" in params and category_guid is not None: + path_params["category-guid"] = params["category_guid"] + + 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(["application/json"]) + + response_type_map: dict[int, Optional[str]] = { + 200: "GsaPermissionsInfo", + 403: None, + 404: None, + } + + return self.api_client.call_api( + "/v1alpha/databases/{database-key}/permission-categories/{category-guid}/permissions", "GET", path_params, query_params, diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/__init__.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/__init__.py index 0e7ded6a..c429f283 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/__init__.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/__init__.py @@ -602,8 +602,10 @@ from .gsa_parameter_value_type import GsaParameterValueType from .gsa_parameter_with_data_value import GsaParameterWithDataValue from .gsa_parameters_info import GsaParametersInfo +from .gsa_permission import GsaPermission from .gsa_permission_categories_info import GsaPermissionCategoriesInfo from .gsa_permission_category import GsaPermissionCategory +from .gsa_permissions_info import GsaPermissionsInfo from .gsa_picture_attribute import GsaPictureAttribute from .gsa_picture_datum import GsaPictureDatum from .gsa_picture_datum_criterion import GsaPictureDatumCriterion @@ -785,6 +787,7 @@ from .gsa_slim_named_unit import GsaSlimNamedUnit from .gsa_slim_objects import GsaSlimObjects from .gsa_slim_parameter import GsaSlimParameter +from .gsa_slim_permission import GsaSlimPermission from .gsa_slim_permission_category import GsaSlimPermissionCategory from .gsa_slim_profile import GsaSlimProfile from .gsa_slim_profile_table import GsaSlimProfileTable @@ -1477,8 +1480,10 @@ "GsaParameterValueType", "GsaParameterWithDataValue", "GsaParametersInfo", + "GsaPermission", "GsaPermissionCategoriesInfo", "GsaPermissionCategory", + "GsaPermissionsInfo", "GsaPictureAttribute", "GsaPictureDatum", "GsaPictureDatumCriterion", @@ -1648,6 +1653,7 @@ "GsaSlimNamedUnit", "GsaSlimObjects", "GsaSlimParameter", + "GsaSlimPermission", "GsaSlimPermissionCategory", "GsaSlimProfile", "GsaSlimProfileTable", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_permission.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_permission.py new file mode 100644 index 00000000..c729f760 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_permission.py @@ -0,0 +1,306 @@ +# 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, Union # noqa: F401 + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaPermission(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] = { + "guid": "str", + "name": "str", + "role": "str", + "description": "str", + "set_message": "str", + "unset_message": "str", + } + + attribute_map: dict[str, str] = { + "guid": "guid", + "name": "name", + "role": "role", + "description": "description", + "set_message": "setMessage", + "unset_message": "unsetMessage", + } + + subtype_mapping: dict[str, str] = {} + + discriminator: Optional[str] = None + + def __init__( + self, + *, + guid: "str", + name: "str", + role: "str", + description: "Union[str, None, Unset_Type]" = Unset, + set_message: "Union[str, None, Unset_Type]" = Unset, + unset_message: "Union[str, None, Unset_Type]" = Unset, + ) -> None: + """GsaPermission - a model defined in Swagger + + Parameters + ---------- + guid: str + name: str + role: str + description: str, optional + set_message: str, optional + unset_message: str, optional + """ + self._role: str + self._description: Union[str, None, Unset_Type] = Unset + self._set_message: Union[str, None, Unset_Type] = Unset + self._unset_message: Union[str, None, Unset_Type] = Unset + self._name: str + self._guid: str + + self.role = role + if description is not Unset: + self.description = description + if set_message is not Unset: + self.set_message = set_message + if unset_message is not Unset: + self.unset_message = unset_message + self.name = name + self.guid = guid + + @property + def role(self) -> "str": + """Gets the role of this GsaPermission. + + Returns + ------- + str + The role of this GsaPermission. + """ + return self._role + + @role.setter + def role(self, role: "str") -> None: + """Sets the role of this GsaPermission. + + Parameters + ---------- + role: str + The role of this GsaPermission. + """ + # Field is not nullable + if role is None: + raise ValueError("Invalid value for 'role', must not be 'None'") + # Field is required + if role is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'role', must not be 'Unset'") + self._role = role + + @property + def description(self) -> "Union[str, None, Unset_Type]": + """Gets the description of this GsaPermission. + + Returns + ------- + Union[str, None, Unset_Type] + The description of this GsaPermission. + """ + return self._description + + @description.setter + def description(self, description: "Union[str, None, Unset_Type]") -> None: + """Sets the description of this GsaPermission. + + Parameters + ---------- + description: Union[str, None, Unset_Type] + The description of this GsaPermission. + """ + self._description = description + + @property + def set_message(self) -> "Union[str, None, Unset_Type]": + """Gets the set_message of this GsaPermission. + Message to show when this permission is set. + + Returns + ------- + Union[str, None, Unset_Type] + The set_message of this GsaPermission. + """ + return self._set_message + + @set_message.setter + def set_message(self, set_message: "Union[str, None, Unset_Type]") -> None: + """Sets the set_message of this GsaPermission. + Message to show when this permission is set. + + Parameters + ---------- + set_message: Union[str, None, Unset_Type] + The set_message of this GsaPermission. + """ + self._set_message = set_message + + @property + def unset_message(self) -> "Union[str, None, Unset_Type]": + """Gets the unset_message of this GsaPermission. + Message to show when this permission is not set. + + Returns + ------- + Union[str, None, Unset_Type] + The unset_message of this GsaPermission. + """ + return self._unset_message + + @unset_message.setter + def unset_message(self, unset_message: "Union[str, None, Unset_Type]") -> None: + """Sets the unset_message of this GsaPermission. + Message to show when this permission is not set. + + Parameters + ---------- + unset_message: Union[str, None, Unset_Type] + The unset_message of this GsaPermission. + """ + self._unset_message = unset_message + + @property + def name(self) -> "str": + """Gets the name of this GsaPermission. + + Returns + ------- + str + The name of this GsaPermission. + """ + return self._name + + @name.setter + def name(self, name: "str") -> None: + """Sets the name of this GsaPermission. + + Parameters + ---------- + name: str + The name of this GsaPermission. + """ + # Field is not nullable + if name is None: + raise ValueError("Invalid value for 'name', must not be 'None'") + # Field is required + if name is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'name', must not be 'Unset'") + self._name = name + + @property + def guid(self) -> "str": + """Gets the guid of this GsaPermission. + + Returns + ------- + str + The guid of this GsaPermission. + """ + return self._guid + + @guid.setter + def guid(self, guid: "str") -> None: + """Sets the guid of this GsaPermission. + + Parameters + ---------- + guid: str + The guid of this GsaPermission. + """ + # Field is not nullable + if guid is None: + raise ValueError("Invalid value for 'guid', must not be 'None'") + # Field is required + if guid is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'guid', must not be 'Unset'") + self._guid = guid + + @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, GsaPermission): + 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/models/gsa_permissions_info.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_permissions_info.py new file mode 100644 index 00000000..b8479e8c --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_permissions_info.py @@ -0,0 +1,149 @@ +# 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, Union # noqa: F401 + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaPermissionsInfo(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] = { + "permissions": "list[GsaSlimPermission]", + } + + attribute_map: dict[str, str] = { + "permissions": "permissions", + } + + subtype_mapping: dict[str, str] = { + "permissions": "GsaSlimPermission", + } + + discriminator: Optional[str] = None + + def __init__( + self, + *, + permissions: "list[GsaSlimPermission]", + ) -> None: + """GsaPermissionsInfo - a model defined in Swagger + + Parameters + ---------- + permissions: list[GsaSlimPermission] + """ + self._permissions: list[GsaSlimPermission] + + self.permissions = permissions + + @property + def permissions(self) -> "list[GsaSlimPermission]": + """Gets the permissions of this GsaPermissionsInfo. + + Returns + ------- + list[GsaSlimPermission] + The permissions of this GsaPermissionsInfo. + """ + return self._permissions + + @permissions.setter + def permissions(self, permissions: "list[GsaSlimPermission]") -> None: + """Sets the permissions of this GsaPermissionsInfo. + + Parameters + ---------- + permissions: list[GsaSlimPermission] + The permissions of this GsaPermissionsInfo. + """ + # Field is not nullable + if permissions is None: + raise ValueError("Invalid value for 'permissions', must not be 'None'") + # Field is required + if permissions is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'permissions', must not be 'Unset'") + self._permissions = permissions + + @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, GsaPermissionsInfo): + 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/models/gsa_slim_permission.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_slim_permission.py new file mode 100644 index 00000000..de06b9b7 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_slim_permission.py @@ -0,0 +1,181 @@ +# 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, Union # noqa: F401 + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaSlimPermission(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] = { + "guid": "str", + "name": "str", + } + + attribute_map: dict[str, str] = { + "guid": "guid", + "name": "name", + } + + subtype_mapping: dict[str, str] = {} + + discriminator: Optional[str] = None + + def __init__( + self, + *, + guid: "str", + name: "str", + ) -> None: + """GsaSlimPermission - a model defined in Swagger + + Parameters + ---------- + guid: str + name: str + """ + self._name: str + self._guid: str + + self.name = name + self.guid = guid + + @property + def name(self) -> "str": + """Gets the name of this GsaSlimPermission. + + Returns + ------- + str + The name of this GsaSlimPermission. + """ + return self._name + + @name.setter + def name(self, name: "str") -> None: + """Sets the name of this GsaSlimPermission. + + Parameters + ---------- + name: str + The name of this GsaSlimPermission. + """ + # Field is not nullable + if name is None: + raise ValueError("Invalid value for 'name', must not be 'None'") + # Field is required + if name is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'name', must not be 'Unset'") + self._name = name + + @property + def guid(self) -> "str": + """Gets the guid of this GsaSlimPermission. + + Returns + ------- + str + The guid of this GsaSlimPermission. + """ + return self._guid + + @guid.setter + def guid(self, guid: "str") -> None: + """Sets the guid of this GsaSlimPermission. + + Parameters + ---------- + guid: str + The guid of this GsaSlimPermission. + """ + # Field is not nullable + if guid is None: + raise ValueError("Invalid value for 'guid', must not be 'None'") + # Field is required + if guid is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'guid', must not be 'Unset'") + self._guid = guid + + @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, GsaSlimPermission): + 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 34b2a376..6ed1453f 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -170,7 +170,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0d3b8c18-d851-4eac-b9d1-01bef912b179", + "criterionGuid": "1c606bce-959f-4395-a2cf-0d9db8e141d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -196,7 +196,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a08c53a1-b9ac-46da-9a2a-b028575a7bac", + "criterionGuid": "acef809c-f108-482e-b07c-46cda55a4927", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -228,7 +228,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da1ad7f1-d308-4bac-8750-967f7dda548b", + "criterionGuid": "63a9c679-44e5-4e0e-b602-e9caf8bb58e5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -390,7 +390,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0d3b8c18-d851-4eac-b9d1-01bef912b179", + "criterionGuid": "1c606bce-959f-4395-a2cf-0d9db8e141d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -416,7 +416,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a08c53a1-b9ac-46da-9a2a-b028575a7bac", + "criterionGuid": "acef809c-f108-482e-b07c-46cda55a4927", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -448,7 +448,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da1ad7f1-d308-4bac-8750-967f7dda548b", + "criterionGuid": "63a9c679-44e5-4e0e-b602-e9caf8bb58e5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -610,7 +610,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0d3b8c18-d851-4eac-b9d1-01bef912b179", + "criterionGuid": "1c606bce-959f-4395-a2cf-0d9db8e141d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -636,7 +636,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a08c53a1-b9ac-46da-9a2a-b028575a7bac", + "criterionGuid": "acef809c-f108-482e-b07c-46cda55a4927", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -668,7 +668,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da1ad7f1-d308-4bac-8750-967f7dda548b", + "criterionGuid": "63a9c679-44e5-4e0e-b602-e9caf8bb58e5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -830,7 +830,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0d3b8c18-d851-4eac-b9d1-01bef912b179", + "criterionGuid": "1c606bce-959f-4395-a2cf-0d9db8e141d6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -856,7 +856,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "a08c53a1-b9ac-46da-9a2a-b028575a7bac", + "criterionGuid": "acef809c-f108-482e-b07c-46cda55a4927", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -888,7 +888,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da1ad7f1-d308-4bac-8750-967f7dda548b", + "criterionGuid": "63a9c679-44e5-4e0e-b602-e9caf8bb58e5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1131,7 +1131,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "eafab5e4-2b6a-4c5c-b542-3b35807b8dc3", + "criterionGuid": "62f722cc-690d-4bcc-a058-ee4f193c6c08", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1157,7 +1157,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "86504362-bd58-4025-af97-b7652247a704", + "criterionGuid": "0abad1c1-774f-4996-9cfa-eb3d96ebff79", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1189,7 +1189,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "785e7cea-f053-421c-885a-b14ea8b27f6a", + "criterionGuid": "5d5ed998-b389-48e8-97d0-24b2111cf4b6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1351,7 +1351,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "eafab5e4-2b6a-4c5c-b542-3b35807b8dc3", + "criterionGuid": "62f722cc-690d-4bcc-a058-ee4f193c6c08", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1377,7 +1377,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "86504362-bd58-4025-af97-b7652247a704", + "criterionGuid": "0abad1c1-774f-4996-9cfa-eb3d96ebff79", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1409,7 +1409,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "785e7cea-f053-421c-885a-b14ea8b27f6a", + "criterionGuid": "5d5ed998-b389-48e8-97d0-24b2111cf4b6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1571,7 +1571,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "eafab5e4-2b6a-4c5c-b542-3b35807b8dc3", + "criterionGuid": "62f722cc-690d-4bcc-a058-ee4f193c6c08", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1597,7 +1597,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "86504362-bd58-4025-af97-b7652247a704", + "criterionGuid": "0abad1c1-774f-4996-9cfa-eb3d96ebff79", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1629,7 +1629,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "785e7cea-f053-421c-885a-b14ea8b27f6a", + "criterionGuid": "5d5ed998-b389-48e8-97d0-24b2111cf4b6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1791,7 +1791,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "eafab5e4-2b6a-4c5c-b542-3b35807b8dc3", + "criterionGuid": "62f722cc-690d-4bcc-a058-ee4f193c6c08", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1817,7 +1817,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "86504362-bd58-4025-af97-b7652247a704", + "criterionGuid": "0abad1c1-774f-4996-9cfa-eb3d96ebff79", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1849,7 +1849,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "785e7cea-f053-421c-885a-b14ea8b27f6a", + "criterionGuid": "5d5ed998-b389-48e8-97d0-24b2111cf4b6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2083,7 +2083,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7b4d5170-703c-42fe-900d-2a4a568db6e0", + "criterionGuid": "e63ace18-f5e1-4d23-98ed-e13b613b3b65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2109,7 +2109,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "ecd0d560-0fe4-49cb-b244-e6b2f8f2a9a2", + "criterionGuid": "4f2a95ea-676d-4aed-bfb7-70b2b48536f9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2141,7 +2141,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "2156c1dc-b206-464a-97a3-efeb04ef88f9", + "criterionGuid": "d6d0b589-3784-4627-bb00-6943b41d6534", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2303,7 +2303,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7b4d5170-703c-42fe-900d-2a4a568db6e0", + "criterionGuid": "e63ace18-f5e1-4d23-98ed-e13b613b3b65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2329,7 +2329,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "ecd0d560-0fe4-49cb-b244-e6b2f8f2a9a2", + "criterionGuid": "4f2a95ea-676d-4aed-bfb7-70b2b48536f9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2361,7 +2361,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "2156c1dc-b206-464a-97a3-efeb04ef88f9", + "criterionGuid": "d6d0b589-3784-4627-bb00-6943b41d6534", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2523,7 +2523,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7b4d5170-703c-42fe-900d-2a4a568db6e0", + "criterionGuid": "e63ace18-f5e1-4d23-98ed-e13b613b3b65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2549,7 +2549,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "ecd0d560-0fe4-49cb-b244-e6b2f8f2a9a2", + "criterionGuid": "4f2a95ea-676d-4aed-bfb7-70b2b48536f9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2581,7 +2581,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "2156c1dc-b206-464a-97a3-efeb04ef88f9", + "criterionGuid": "d6d0b589-3784-4627-bb00-6943b41d6534", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2743,7 +2743,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "7b4d5170-703c-42fe-900d-2a4a568db6e0", + "criterionGuid": "e63ace18-f5e1-4d23-98ed-e13b613b3b65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2769,7 +2769,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "ecd0d560-0fe4-49cb-b244-e6b2f8f2a9a2", + "criterionGuid": "4f2a95ea-676d-4aed-bfb7-70b2b48536f9", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2801,7 +2801,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "2156c1dc-b206-464a-97a3-efeb04ef88f9", + "criterionGuid": "d6d0b589-3784-4627-bb00-6943b41d6534", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3011,7 +3011,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "faf7a09e-aef5-41b7-a67b-4b068db321d8", + "criterionGuid": "74a53d05-2ace-4e78-a1e1-89b0953c792c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3037,7 +3037,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "37a7813f-74cb-4482-af0b-3b295e2bb5f5", + "criterionGuid": "19967a32-0c86-42cd-a978-c0be86c7cfe2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3069,7 +3069,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1a9735b2-9f52-4656-bd6e-13fbb5a013db", + "criterionGuid": "667ad99e-dcf5-4339-95b3-af901cbab210", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3231,7 +3231,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "faf7a09e-aef5-41b7-a67b-4b068db321d8", + "criterionGuid": "74a53d05-2ace-4e78-a1e1-89b0953c792c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3257,7 +3257,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "37a7813f-74cb-4482-af0b-3b295e2bb5f5", + "criterionGuid": "19967a32-0c86-42cd-a978-c0be86c7cfe2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3289,7 +3289,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1a9735b2-9f52-4656-bd6e-13fbb5a013db", + "criterionGuid": "667ad99e-dcf5-4339-95b3-af901cbab210", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3451,7 +3451,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "faf7a09e-aef5-41b7-a67b-4b068db321d8", + "criterionGuid": "74a53d05-2ace-4e78-a1e1-89b0953c792c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3477,7 +3477,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "37a7813f-74cb-4482-af0b-3b295e2bb5f5", + "criterionGuid": "19967a32-0c86-42cd-a978-c0be86c7cfe2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3509,7 +3509,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1a9735b2-9f52-4656-bd6e-13fbb5a013db", + "criterionGuid": "667ad99e-dcf5-4339-95b3-af901cbab210", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3671,7 +3671,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "faf7a09e-aef5-41b7-a67b-4b068db321d8", + "criterionGuid": "74a53d05-2ace-4e78-a1e1-89b0953c792c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3697,7 +3697,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "37a7813f-74cb-4482-af0b-3b295e2bb5f5", + "criterionGuid": "19967a32-0c86-42cd-a978-c0be86c7cfe2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3729,7 +3729,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "1a9735b2-9f52-4656-bd6e-13fbb5a013db", + "criterionGuid": "667ad99e-dcf5-4339-95b3-af901cbab210", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -6654,7 +6654,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.6921622+00:00" + "value": "2025-01-27T23:56:00.5495475+00:00" } }, "Example 11": { @@ -6877,7 +6877,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.6921622+00:00" + "value": "2025-01-27T23:56:00.5495475+00:00" } }, "Example 11": { @@ -7100,7 +7100,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.6921622+00:00" + "value": "2025-01-27T23:56:00.5495475+00:00" } }, "Example 11": { @@ -7323,7 +7323,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.6921622+00:00" + "value": "2025-01-27T23:56:00.5495475+00:00" } }, "Example 11": { @@ -7864,7 +7864,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 25": { @@ -8087,7 +8087,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 25": { @@ -8310,7 +8310,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 25": { @@ -8533,7 +8533,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 25": { @@ -9002,7 +9002,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 8": { @@ -9099,7 +9099,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 8": { @@ -9196,7 +9196,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 8": { @@ -9293,7 +9293,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.580822+00:00" } }, "Example 8": { @@ -9741,7 +9741,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.5964359+00:00" } }, "Example 17": { @@ -9838,7 +9838,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.5964359+00:00" } }, "Example 17": { @@ -9935,7 +9935,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.5964359+00:00" } }, "Example 17": { @@ -10032,7 +10032,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-01-26T01:26:41.7234163+00:00" + "value": "2025-01-27T23:56:00.5964359+00:00" } }, "Example 17": { @@ -17259,7 +17259,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "2a514c34-ea43-4443-bf96-1e7ffcf68713" + "641df1d5-7977-468d-8366-d76c48e41372" ], "listActionsToInclude": [ "ItemAdded", @@ -17283,7 +17283,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "2a514c34-ea43-4443-bf96-1e7ffcf68713" + "641df1d5-7977-468d-8366-d76c48e41372" ], "listActionsToInclude": [ "ItemAdded", @@ -17307,7 +17307,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "2a514c34-ea43-4443-bf96-1e7ffcf68713" + "641df1d5-7977-468d-8366-d76c48e41372" ], "listActionsToInclude": [ "ItemAdded", @@ -17331,7 +17331,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "2a514c34-ea43-4443-bf96-1e7ffcf68713" + "641df1d5-7977-468d-8366-d76c48e41372" ], "listActionsToInclude": [ "ItemAdded", @@ -18823,15 +18823,15 @@ "categories": [ { "name": "Geo", - "guid": "c776ccbf-c237-4645-a7f6-347b969d0aa2" + "guid": "cf001b77-81f3-4333-9f34-2b00e5108daf" }, { "name": "Sensitivity", - "guid": "9f5588bc-c868-49d2-b803-4555d7161a61" + "guid": "8ed879ef-1cc5-4e36-9e7a-9d8cb38f82b1" }, { "name": "Division", - "guid": "40ac7070-995a-4265-930c-933edc12a5fa" + "guid": "e6b91642-01d2-42a3-8758-f412b93116d7" } ] } @@ -18853,7 +18853,7 @@ "Permission Based Access Control" ], "summary": "Get a permission-based access control category with a specified guid.", - "operationId": "GetAccessControlCategory", + "operationId": "GetPermissionCategory", "parameters": [ { "name": "database-key", @@ -18885,19 +18885,19 @@ "permissions": [ { "name": "US", - "guid": "2a2f9406-3c55-4183-b623-13291d8c927d" + "guid": "0dc925b4-6eb1-4686-8655-0e5c7583b6a5" }, { "name": "EMEA", - "guid": "58d132e3-a443-4edc-90e4-1121a58a9653" + "guid": "d706e167-3bc4-4623-a6f7-1f551af5f09e" }, { "name": "APAC", - "guid": "fbe2f428-c342-4c83-86ee-9abd01814367" + "guid": "c8eaa7a8-bd65-44e4-becb-4aaec062dcc8" } ], "name": "Geo", - "guid": "c776ccbf-c237-4645-a7f6-347b969d0aa2" + "guid": "cf001b77-81f3-4333-9f34-2b00e5108daf" } } } @@ -18911,6 +18911,131 @@ } } }, + "/v1alpha/databases/{database-key}/permission-categories/{category-guid}/permissions": { + "get": { + "tags": [ + "Permission Based Access Control" + ], + "summary": "Get all permission-based access control permissions for the specified category.", + "operationId": "GetPermissionsInCategory", + "parameters": [ + { + "name": "database-key", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "category-guid", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Ok", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GsaPermissionsInfo" + }, + "example": { + "permissions": [ + { + "name": "US", + "guid": "0dc925b4-6eb1-4686-8655-0e5c7583b6a5" + }, + { + "name": "EMEA", + "guid": "d706e167-3bc4-4623-a6f7-1f551af5f09e" + }, + { + "name": "APAC", + "guid": "c8eaa7a8-bd65-44e4-becb-4aaec062dcc8" + } + ] + } + } + } + }, + "403": { + "description": "Forbidden" + }, + "404": { + "description": "Database or category not found" + } + } + } + }, + "/v1alpha/databases/{database-key}/permission-categories/{category-guid}/permissions/{permission-guid}": { + "get": { + "tags": [ + "Permission Based Access Control" + ], + "summary": "Get a permission-based access control permission with a given guid in the specified category.", + "operationId": "GetPermissionInCategory", + "parameters": [ + { + "name": "database-key", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "category-guid", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + }, + { + "name": "permission-guid", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "Ok", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GsaPermission" + }, + "example": { + "role": "DOMAIN\\US", + "description": "Members of the US role", + "setMessage": "Permission set", + "unsetMessage": "No permission set", + "name": "US", + "guid": "0dc925b4-6eb1-4686-8655-0e5c7583b6a5" + } + } + } + }, + "403": { + "description": "Forbidden" + }, + "404": { + "description": "Database or category or permission not found" + } + } + } + }, "/v1alpha/databases/{database-key}/tables/{table-guid}/record-histories/{record-history-guid}": { "get": { "tags": [ @@ -19172,7 +19297,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "6ee04106-99c1-40d5-8dd8-acf53141e008" + "guid": "74ee2030-ae3e-4e85-926b-1a5a43622309" } }, "Example 4": { @@ -19234,7 +19359,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "6ee04106-99c1-40d5-8dd8-acf53141e008" + "guid": "74ee2030-ae3e-4e85-926b-1a5a43622309" } }, "Example 4": { @@ -19296,7 +19421,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "6ee04106-99c1-40d5-8dd8-acf53141e008" + "guid": "74ee2030-ae3e-4e85-926b-1a5a43622309" } }, "Example 4": { @@ -19358,7 +19483,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "6ee04106-99c1-40d5-8dd8-acf53141e008" + "guid": "74ee2030-ae3e-4e85-926b-1a5a43622309" } }, "Example 4": { @@ -19413,11 +19538,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "2996143b-9394-4d84-a309-c247c9e2646b" + "guid": "e8f87509-2687-481a-90a3-4636249e225e" } ], "subsets": [], - "guid": "e9b950ee-9ca3-4bf6-a217-bc286e320f0a" + "guid": "d6375957-2990-4bce-8bb1-8b59459fdbf2" } } } @@ -20138,7 +20263,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "ef9eb664-cb89-463d-aee2-383a65cc7bc9" + "guid": "fd37531b-996e-4176-9fff-4e34671b8c4b" } } } @@ -20424,7 +20549,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "7948ef27-6485-4199-9fb1-fd2bb0edca4e" + "guid": "8beb3037-123a-4f53-9ed4-f23480211276" } } } @@ -21007,7 +21132,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID 'da9ed9ea-48bd-4fc4-9504-6edaaa2d0c4d'.", + "message": "Cannot release record version with GUID '651b785c-6990-41df-ac7f-da5ef8805ed7'.", "code": 400, "errors": [ { @@ -21156,7 +21281,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID 'c7a00d55-e2f0-4deb-99f6-5a7b7b8e5643'.", + "message": "Cannot create a new version from the record version with GUID 'b8094d19-85c5-4774-aeb7-028469a35789'.", "code": 400, "errors": [ { @@ -21166,7 +21291,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "bd15a7b5-0e47-44b6-9d84-cc8fe111a1ee" + "guid": "e71c25de-bef4-4390-a758-4c18aafbcbea" } } ] @@ -21480,7 +21605,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "fd9b369c-ec1d-43c2-ab7e-4c89ac9b36cc" + "guid": "dbfbb80f-32e0-4901-89f9-b6baa17cba51" } }, "Example 3": { @@ -21880,7 +22005,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "fd9b369c-ec1d-43c2-ab7e-4c89ac9b36cc" + "guid": "dbfbb80f-32e0-4901-89f9-b6baa17cba51" } }, "Example 3": { @@ -22280,7 +22405,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "fd9b369c-ec1d-43c2-ab7e-4c89ac9b36cc" + "guid": "dbfbb80f-32e0-4901-89f9-b6baa17cba51" } }, "Example 3": { @@ -22680,7 +22805,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "fd9b369c-ec1d-43c2-ab7e-4c89ac9b36cc" + "guid": "dbfbb80f-32e0-4901-89f9-b6baa17cba51" } }, "Example 3": { @@ -23167,7 +23292,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "fcf0052d-e994-4bae-8bb1-2249aef3a094" + "guid": "0b82d3ff-416f-4520-b027-adfd720b9c17" } ], "primaryDynamicLinkGroups": [], @@ -23469,7 +23594,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "d128f25f-ab1c-4b3f-a203-78859ebe78f5" + "guid": "5ee2de10-5dc1-4419-bce4-8baa6dec673f" } ], "primaryDynamicLinkGroups": [], @@ -24815,7 +24940,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "6782e681-09cc-4de0-97cd-8bccb4b1e1a2" + "guid": "12cdc850-6a9e-4f8e-aa09-769b3c701997" } ], "primaryDynamicLinkGroups": [], @@ -25262,7 +25387,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "bf9421d3-ff68-4bc4-8933-5e20698a1e08" + "guid": "93f6fc45-dd61-4b16-ad2c-52320d40fd40" } ], "primaryDynamicLinkGroups": [], @@ -25724,7 +25849,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "def01481-95dd-40f6-b85e-8ac92665d4e1" + "guid": "be5cb9ad-de1f-4719-abf7-1e3bdc9d8d0d" } ], "primaryDynamicLinkGroups": [], @@ -25903,7 +26028,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute 'Notes' (GUID = 'fd70d7fb-6f98-4379-a1e7-2db7f68dbd3a').", + "message": "Cannot delete attribute 'Notes' (GUID = '48f7fee2-164a-495f-8cdc-6ec635034d38').", "code": 400, "errors": [ { @@ -25918,7 +26043,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "e3f1a666-cae7-4ebb-ab90-3c2ad8a4960d" + "guid": "e949475c-44c4-40d6-9afc-808e6f150338" } ] } @@ -26226,7 +26351,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "cdbd66a6-1c72-4f5b-99a4-763dd06454de" + "guid": "8a018c02-42da-4a22-b3ff-5f12414ce1b6" } ], "primaryDynamicLinkGroups": [], @@ -28784,7 +28909,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": "3b7f598e-10bd-4cf4-a5ab-627aa2d74eed" + "guid": "14ef5ab1-4ad3-4ac2-86de-93ee52715b81" } } } @@ -28809,7 +28934,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": "3b7f598e-10bd-4cf4-a5ab-627aa2d74eed" + "guid": "14ef5ab1-4ad3-4ac2-86de-93ee52715b81" } } } @@ -28834,7 +28959,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": "3b7f598e-10bd-4cf4-a5ab-627aa2d74eed" + "guid": "14ef5ab1-4ad3-4ac2-86de-93ee52715b81" } } } @@ -28859,7 +28984,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": "3b7f598e-10bd-4cf4-a5ab-627aa2d74eed" + "guid": "14ef5ab1-4ad3-4ac2-86de-93ee52715b81" } } } @@ -29010,7 +29135,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": "d8e4f2fa-a0c1-451a-a74b-08f5508d4432" + "guid": "1322b0bc-f1f3-4f02-a2a2-cfa6145c03e4" } }, "Example 2": { @@ -29034,7 +29159,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": "d8e4f2fa-a0c1-451a-a74b-08f5508d4432" + "guid": "1322b0bc-f1f3-4f02-a2a2-cfa6145c03e4" } }, "Example 2": { @@ -29058,7 +29183,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": "d8e4f2fa-a0c1-451a-a74b-08f5508d4432" + "guid": "1322b0bc-f1f3-4f02-a2a2-cfa6145c03e4" } }, "Example 2": { @@ -29082,7 +29207,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": "d8e4f2fa-a0c1-451a-a74b-08f5508d4432" + "guid": "1322b0bc-f1f3-4f02-a2a2-cfa6145c03e4" } }, "Example 2": { @@ -29311,7 +29436,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "c840df26-ce24-4ad7-a835-97cfefee30dd" + "guid": "32b13416-78da-489f-bf55-0ccfe746d9a6" } }, "Example 3": { @@ -29344,7 +29469,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "c840df26-ce24-4ad7-a835-97cfefee30dd" + "guid": "32b13416-78da-489f-bf55-0ccfe746d9a6" } }, "Example 3": { @@ -29377,7 +29502,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "c840df26-ce24-4ad7-a835-97cfefee30dd" + "guid": "32b13416-78da-489f-bf55-0ccfe746d9a6" } }, "Example 3": { @@ -29410,7 +29535,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "c840df26-ce24-4ad7-a835-97cfefee30dd" + "guid": "32b13416-78da-489f-bf55-0ccfe746d9a6" } }, "Example 3": { @@ -29553,7 +29678,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "7b37e2bd-d3e8-4bfe-987d-08b77ffcca30" + "guid": "d61ea758-87db-418e-a848-74587b5ea10b" } }, "Example 2": { @@ -29568,7 +29693,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": "2d518071-751c-426c-b1b9-f7b5f269b6bb" + "guid": "b205561f-78ec-4eea-8091-309c4c57fbe3" } } } @@ -29585,7 +29710,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "7b37e2bd-d3e8-4bfe-987d-08b77ffcca30" + "guid": "d61ea758-87db-418e-a848-74587b5ea10b" } }, "Example 2": { @@ -29600,7 +29725,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": "2d518071-751c-426c-b1b9-f7b5f269b6bb" + "guid": "b205561f-78ec-4eea-8091-309c4c57fbe3" } } } @@ -29617,7 +29742,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "7b37e2bd-d3e8-4bfe-987d-08b77ffcca30" + "guid": "d61ea758-87db-418e-a848-74587b5ea10b" } }, "Example 2": { @@ -29632,7 +29757,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": "2d518071-751c-426c-b1b9-f7b5f269b6bb" + "guid": "b205561f-78ec-4eea-8091-309c4c57fbe3" } } } @@ -29649,7 +29774,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "7b37e2bd-d3e8-4bfe-987d-08b77ffcca30" + "guid": "d61ea758-87db-418e-a848-74587b5ea10b" } }, "Example 2": { @@ -29664,7 +29789,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": "2d518071-751c-426c-b1b9-f7b5f269b6bb" + "guid": "b205561f-78ec-4eea-8091-309c4c57fbe3" } } } @@ -30268,8 +30393,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": "93af4cf7-f1a1-4493-a3a3-90faa7c5b24d", - "guid": "b99cff77-c287-495d-b539-e8a1537650da", + "versionGuid": "faee0595-5ba3-452e-ab2a-c9b5bcae239e", + "guid": "488c7b6f-8cc7-4610-9a32-33cc97c11bf3", "name": "MI Training (Updated)" } }, @@ -30294,8 +30419,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": "93af4cf7-f1a1-4493-a3a3-90faa7c5b24d", - "guid": "b99cff77-c287-495d-b539-e8a1537650da", + "versionGuid": "faee0595-5ba3-452e-ab2a-c9b5bcae239e", + "guid": "488c7b6f-8cc7-4610-9a32-33cc97c11bf3", "name": "MI Training (Updated)" } }, @@ -30320,8 +30445,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": "93af4cf7-f1a1-4493-a3a3-90faa7c5b24d", - "guid": "b99cff77-c287-495d-b539-e8a1537650da", + "versionGuid": "faee0595-5ba3-452e-ab2a-c9b5bcae239e", + "guid": "488c7b6f-8cc7-4610-9a32-33cc97c11bf3", "name": "MI Training (Updated)" } }, @@ -30346,8 +30471,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": "93af4cf7-f1a1-4493-a3a3-90faa7c5b24d", - "guid": "b99cff77-c287-495d-b539-e8a1537650da", + "versionGuid": "faee0595-5ba3-452e-ab2a-c9b5bcae239e", + "guid": "488c7b6f-8cc7-4610-9a32-33cc97c11bf3", "name": "MI Training (Updated)" } }, @@ -31353,7 +31478,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "60f1dc68-d006-4d08-be65-17ea1799f6ec" + "guid": "9d2c719b-ea2b-4c54-9012-2f90ce554272" } } } @@ -31375,7 +31500,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "60f1dc68-d006-4d08-be65-17ea1799f6ec" + "guid": "9d2c719b-ea2b-4c54-9012-2f90ce554272" } } } @@ -31397,7 +31522,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "60f1dc68-d006-4d08-be65-17ea1799f6ec" + "guid": "9d2c719b-ea2b-4c54-9012-2f90ce554272" } } } @@ -31419,7 +31544,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "60f1dc68-d006-4d08-be65-17ea1799f6ec" + "guid": "9d2c719b-ea2b-4c54-9012-2f90ce554272" } } } @@ -32157,7 +32282,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "f643c93e-33e1-4556-9695-6d4bcff3c80d" + "guid": "03f545d3-baaf-45bb-aef0-b6a8a6c12b84" } } } @@ -32178,7 +32303,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "f643c93e-33e1-4556-9695-6d4bcff3c80d" + "guid": "03f545d3-baaf-45bb-aef0-b6a8a6c12b84" } } } @@ -32199,7 +32324,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "f643c93e-33e1-4556-9695-6d4bcff3c80d" + "guid": "03f545d3-baaf-45bb-aef0-b6a8a6c12b84" } } } @@ -32220,7 +32345,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "f643c93e-33e1-4556-9695-6d4bcff3c80d" + "guid": "03f545d3-baaf-45bb-aef0-b6a8a6c12b84" } } } @@ -32623,11 +32748,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "f019279e-6930-4c3d-b164-f4678ed05de3" + "guid": "9fb86c18-1f23-4273-8219-30adea6bc5f1" }, { "name": "no-transform.xslt", - "guid": "59b5e67b-46c0-4b0e-8b3c-c5325a3acd5b" + "guid": "e4e8c30f-3ca6-47a7-b180-19d8c0717b1e" } ] } @@ -32640,11 +32765,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "f019279e-6930-4c3d-b164-f4678ed05de3" + "guid": "9fb86c18-1f23-4273-8219-30adea6bc5f1" }, { "name": "no-transform.xslt", - "guid": "59b5e67b-46c0-4b0e-8b3c-c5325a3acd5b" + "guid": "e4e8c30f-3ca6-47a7-b180-19d8c0717b1e" } ] } @@ -32657,11 +32782,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "f019279e-6930-4c3d-b164-f4678ed05de3" + "guid": "9fb86c18-1f23-4273-8219-30adea6bc5f1" }, { "name": "no-transform.xslt", - "guid": "59b5e67b-46c0-4b0e-8b3c-c5325a3acd5b" + "guid": "e4e8c30f-3ca6-47a7-b180-19d8c0717b1e" } ] } @@ -32739,7 +32864,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "b9d30491-e8d4-41ec-b9f4-357e0ef84669" + "guid": "6049df67-93b9-4321-856c-d3c7ad5b78f2" } }, "application/json": { @@ -32753,7 +32878,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "b9d30491-e8d4-41ec-b9f4-357e0ef84669" + "guid": "6049df67-93b9-4321-856c-d3c7ad5b78f2" } }, "text/json": { @@ -32767,7 +32892,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "b9d30491-e8d4-41ec-b9f4-357e0ef84669" + "guid": "6049df67-93b9-4321-856c-d3c7ad5b78f2" } } } @@ -32834,7 +32959,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "72d24a68-0828-40bf-8a5a-773101b7cf67" + "guid": "bbf183c3-c9e7-4af3-aa72-f6fbee80329c" } }, "application/json": { @@ -32848,7 +32973,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "72d24a68-0828-40bf-8a5a-773101b7cf67" + "guid": "bbf183c3-c9e7-4af3-aa72-f6fbee80329c" } }, "text/json": { @@ -32862,7 +32987,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "72d24a68-0828-40bf-8a5a-773101b7cf67" + "guid": "bbf183c3-c9e7-4af3-aa72-f6fbee80329c" } } } @@ -32931,7 +33056,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "24853ef0-e369-4720-bd87-9f696084bf58" + "guid": "0e46d8e6-3eaa-47da-9b51-89c9270b52c8" } } } @@ -32959,7 +33084,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "24853ef0-e369-4720-bd87-9f696084bf58" + "guid": "0e46d8e6-3eaa-47da-9b51-89c9270b52c8" } } } @@ -32987,7 +33112,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "24853ef0-e369-4720-bd87-9f696084bf58" + "guid": "0e46d8e6-3eaa-47da-9b51-89c9270b52c8" } } } @@ -33015,7 +33140,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "24853ef0-e369-4720-bd87-9f696084bf58" + "guid": "0e46d8e6-3eaa-47da-9b51-89c9270b52c8" } } } @@ -33037,7 +33162,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "17536687-fdd8-4a9c-8e09-b4c2e0bfb049" + "guid": "9658179e-6238-4f95-9c65-8b19b6d66e7f" } }, "application/json": { @@ -33051,7 +33176,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "17536687-fdd8-4a9c-8e09-b4c2e0bfb049" + "guid": "9658179e-6238-4f95-9c65-8b19b6d66e7f" } }, "text/json": { @@ -33065,7 +33190,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "17536687-fdd8-4a9c-8e09-b4c2e0bfb049" + "guid": "9658179e-6238-4f95-9c65-8b19b6d66e7f" } } } @@ -33283,7 +33408,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0ad697c5-1c9a-41f7-9e24-8d5f49319706" + "guid": "fd1683e5-6abe-4851-b7dc-370f7da6b299" } }, "application/json": { @@ -33297,7 +33422,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0ad697c5-1c9a-41f7-9e24-8d5f49319706" + "guid": "fd1683e5-6abe-4851-b7dc-370f7da6b299" } }, "text/json": { @@ -33311,7 +33436,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0ad697c5-1c9a-41f7-9e24-8d5f49319706" + "guid": "fd1683e5-6abe-4851-b7dc-370f7da6b299" } } } @@ -33454,7 +33579,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "8dd25571-91da-42d8-a20d-d816595118ce" + "guid": "9fceccfe-84d5-498d-9084-6f9c6ebc603d" } }, "Example 3": { @@ -33489,7 +33614,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "8dd25571-91da-42d8-a20d-d816595118ce" + "guid": "9fceccfe-84d5-498d-9084-6f9c6ebc603d" } }, "Example 3": { @@ -33524,7 +33649,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "8dd25571-91da-42d8-a20d-d816595118ce" + "guid": "9fceccfe-84d5-498d-9084-6f9c6ebc603d" } }, "Example 3": { @@ -33559,7 +33684,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "8dd25571-91da-42d8-a20d-d816595118ce" + "guid": "9fceccfe-84d5-498d-9084-6f9c6ebc603d" } }, "Example 3": { @@ -33871,7 +33996,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "a5f57ecb-154c-408b-b73e-6f00a264214b" + "guid": "a5a6fc8e-23d2-449b-976a-136816bd0166" } }, "Example 2": { @@ -33897,7 +34022,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "a5f57ecb-154c-408b-b73e-6f00a264214b" + "guid": "a5a6fc8e-23d2-449b-976a-136816bd0166" } }, "Example 2": { @@ -33923,7 +34048,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "a5f57ecb-154c-408b-b73e-6f00a264214b" + "guid": "a5a6fc8e-23d2-449b-976a-136816bd0166" } }, "Example 2": { @@ -33949,7 +34074,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "a5f57ecb-154c-408b-b73e-6f00a264214b" + "guid": "a5a6fc8e-23d2-449b-976a-136816bd0166" } }, "Example 2": { @@ -34587,7 +34712,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": "7f548908-9605-43e3-bfbb-97b630341cdb" + "guid": "6586284b-99bb-4da4-af13-e43c1b4cc144" } } } @@ -34608,7 +34733,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": "7f548908-9605-43e3-bfbb-97b630341cdb" + "guid": "6586284b-99bb-4da4-af13-e43c1b4cc144" } } } @@ -34629,7 +34754,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": "7f548908-9605-43e3-bfbb-97b630341cdb" + "guid": "6586284b-99bb-4da4-af13-e43c1b4cc144" } } } @@ -34650,7 +34775,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": "7f548908-9605-43e3-bfbb-97b630341cdb" + "guid": "6586284b-99bb-4da4-af13-e43c1b4cc144" } } } @@ -35119,7 +35244,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9e6505bf-d4cf-41b7-abb1-e9e3756705e2" + "guid": "de028d84-b4df-444f-8a92-8a319183cd0b" } }, "application/json": { @@ -35133,7 +35258,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9e6505bf-d4cf-41b7-abb1-e9e3756705e2" + "guid": "de028d84-b4df-444f-8a92-8a319183cd0b" } }, "text/json": { @@ -35147,7 +35272,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9e6505bf-d4cf-41b7-abb1-e9e3756705e2" + "guid": "de028d84-b4df-444f-8a92-8a319183cd0b" } } } @@ -35311,7 +35436,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "125dca46-e0d5-4570-bd65-bd0264316f61" + "guid": "ae15d861-8238-4092-b40f-030504e4b54b" } } } @@ -35339,7 +35464,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "125dca46-e0d5-4570-bd65-bd0264316f61" + "guid": "ae15d861-8238-4092-b40f-030504e4b54b" } } } @@ -35367,7 +35492,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "125dca46-e0d5-4570-bd65-bd0264316f61" + "guid": "ae15d861-8238-4092-b40f-030504e4b54b" } } } @@ -35395,7 +35520,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "125dca46-e0d5-4570-bd65-bd0264316f61" + "guid": "ae15d861-8238-4092-b40f-030504e4b54b" } } } @@ -35417,7 +35542,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "a02ac0ea-753d-45e3-8654-af88ea474d81" + "guid": "8e99b524-17d4-43ed-a631-7da0a4f7d28a" } }, "application/json": { @@ -35431,7 +35556,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "a02ac0ea-753d-45e3-8654-af88ea474d81" + "guid": "8e99b524-17d4-43ed-a631-7da0a4f7d28a" } }, "text/json": { @@ -35445,7 +35570,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "a02ac0ea-753d-45e3-8654-af88ea474d81" + "guid": "8e99b524-17d4-43ed-a631-7da0a4f7d28a" } } } @@ -35663,7 +35788,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fb8bb5ba-fd59-433b-af2a-7b1c885965e3" + "guid": "79763e7c-700e-4a77-ae96-334d2c8e0e8f" } }, "application/json": { @@ -35677,7 +35802,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fb8bb5ba-fd59-433b-af2a-7b1c885965e3" + "guid": "79763e7c-700e-4a77-ae96-334d2c8e0e8f" } }, "text/json": { @@ -35691,7 +35816,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fb8bb5ba-fd59-433b-af2a-7b1c885965e3" + "guid": "79763e7c-700e-4a77-ae96-334d2c8e0e8f" } } } @@ -35742,7 +35867,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "a751fac3-2f56-4924-a142-9b1cabaff1e0" + "guid": "96e3be22-ca86-4dec-b4b6-433ad234e880" } ] } @@ -35760,7 +35885,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "a751fac3-2f56-4924-a142-9b1cabaff1e0" + "guid": "96e3be22-ca86-4dec-b4b6-433ad234e880" } ] } @@ -35778,7 +35903,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "a751fac3-2f56-4924-a142-9b1cabaff1e0" + "guid": "96e3be22-ca86-4dec-b4b6-433ad234e880" } ] } @@ -36008,7 +36133,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "7099f71f-6376-48d8-8839-665cc328914b" + "guid": "043fd9ad-957c-427d-938d-e1208ca6e319" } }, "application/json": { @@ -36018,7 +36143,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "7099f71f-6376-48d8-8839-665cc328914b" + "guid": "043fd9ad-957c-427d-938d-e1208ca6e319" } }, "text/json": { @@ -36028,7 +36153,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "7099f71f-6376-48d8-8839-665cc328914b" + "guid": "043fd9ad-957c-427d-938d-e1208ca6e319" } } } @@ -36081,7 +36206,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": "b2ede5b7-ae10-4137-8780-973056095776" + "guid": "d22bcdda-1329-4447-9fff-aef8d3f6ac8a" } } } @@ -36102,7 +36227,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": "b2ede5b7-ae10-4137-8780-973056095776" + "guid": "d22bcdda-1329-4447-9fff-aef8d3f6ac8a" } } } @@ -36123,7 +36248,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": "b2ede5b7-ae10-4137-8780-973056095776" + "guid": "d22bcdda-1329-4447-9fff-aef8d3f6ac8a" } } } @@ -36144,7 +36269,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": "b2ede5b7-ae10-4137-8780-973056095776" + "guid": "d22bcdda-1329-4447-9fff-aef8d3f6ac8a" } } } @@ -36272,7 +36397,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "618616f4-d70b-46b6-95b5-33a1db500684" + "guid": "e85e13c2-0039-4217-a635-9e190f3e1e8a" } ] } @@ -36286,7 +36411,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "618616f4-d70b-46b6-95b5-33a1db500684" + "guid": "e85e13c2-0039-4217-a635-9e190f3e1e8a" } ] } @@ -36300,7 +36425,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "618616f4-d70b-46b6-95b5-33a1db500684" + "guid": "e85e13c2-0039-4217-a635-9e190f3e1e8a" } ] } @@ -36482,11 +36607,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "c781409d-5d4e-4370-9697-e24644ee577f" + "guid": "ce0a7cc0-93cc-4429-aafe-4f4b99a87df6" }, { "name": "home-page-2.html", - "guid": "e7c83ebb-d27f-439e-84af-b2b28745bb2b" + "guid": "c09e9230-19dc-4d2b-a71a-75ac11a37844" } ] } @@ -36499,11 +36624,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "c781409d-5d4e-4370-9697-e24644ee577f" + "guid": "ce0a7cc0-93cc-4429-aafe-4f4b99a87df6" }, { "name": "home-page-2.html", - "guid": "e7c83ebb-d27f-439e-84af-b2b28745bb2b" + "guid": "c09e9230-19dc-4d2b-a71a-75ac11a37844" } ] } @@ -36516,11 +36641,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "c781409d-5d4e-4370-9697-e24644ee577f" + "guid": "ce0a7cc0-93cc-4429-aafe-4f4b99a87df6" }, { "name": "home-page-2.html", - "guid": "e7c83ebb-d27f-439e-84af-b2b28745bb2b" + "guid": "c09e9230-19dc-4d2b-a71a-75ac11a37844" } ] } @@ -36598,7 +36723,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5715a38e-1eec-40d3-963b-22b8675ce281" + "guid": "9fca6540-bd47-49ee-8dd8-80c5bd4ced30" } }, "application/json": { @@ -36612,7 +36737,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5715a38e-1eec-40d3-963b-22b8675ce281" + "guid": "9fca6540-bd47-49ee-8dd8-80c5bd4ced30" } }, "text/json": { @@ -36626,7 +36751,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5715a38e-1eec-40d3-963b-22b8675ce281" + "guid": "9fca6540-bd47-49ee-8dd8-80c5bd4ced30" } } } @@ -36693,7 +36818,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "cee20edd-141a-45ca-8577-9cb97bc93d22" + "guid": "00e9fed5-24ba-40a2-8fa2-445a439723a2" } }, "application/json": { @@ -36707,7 +36832,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "cee20edd-141a-45ca-8577-9cb97bc93d22" + "guid": "00e9fed5-24ba-40a2-8fa2-445a439723a2" } }, "text/json": { @@ -36721,7 +36846,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "cee20edd-141a-45ca-8577-9cb97bc93d22" + "guid": "00e9fed5-24ba-40a2-8fa2-445a439723a2" } } } @@ -36790,7 +36915,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": "a7ff61b6-05d2-44f7-b741-0ddddd229713" + "guid": "ef726174-f37b-414a-8109-8440bea67e0b" } } } @@ -36818,7 +36943,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": "a7ff61b6-05d2-44f7-b741-0ddddd229713" + "guid": "ef726174-f37b-414a-8109-8440bea67e0b" } } } @@ -36846,7 +36971,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": "a7ff61b6-05d2-44f7-b741-0ddddd229713" + "guid": "ef726174-f37b-414a-8109-8440bea67e0b" } } } @@ -36874,7 +36999,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": "a7ff61b6-05d2-44f7-b741-0ddddd229713" + "guid": "ef726174-f37b-414a-8109-8440bea67e0b" } } } @@ -36896,7 +37021,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7b3f0957-e5f1-435e-9902-52bb05dfa5c7" + "guid": "7b7c6d97-dfd3-4c71-9a41-112aba990847" } }, "application/json": { @@ -36910,7 +37035,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7b3f0957-e5f1-435e-9902-52bb05dfa5c7" + "guid": "7b7c6d97-dfd3-4c71-9a41-112aba990847" } }, "text/json": { @@ -36924,7 +37049,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7b3f0957-e5f1-435e-9902-52bb05dfa5c7" + "guid": "7b7c6d97-dfd3-4c71-9a41-112aba990847" } } } @@ -37142,7 +37267,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "23e21011-0179-4438-b6d9-3488db2f167e" + "guid": "0a10802a-67ea-44e4-a1f8-ffae0d30488e" } }, "application/json": { @@ -37156,7 +37281,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "23e21011-0179-4438-b6d9-3488db2f167e" + "guid": "0a10802a-67ea-44e4-a1f8-ffae0d30488e" } }, "text/json": { @@ -37170,7 +37295,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "23e21011-0179-4438-b6d9-3488db2f167e" + "guid": "0a10802a-67ea-44e4-a1f8-ffae0d30488e" } } } @@ -37302,9 +37427,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "c50a7875-3f01-4484-8011-cbc78246a169", + "underlyingEntityGuid": "22c04ee6-54ee-4aa6-b250-972bf34e33d5", "name": "Price", - "guid": "b37b4715-300d-4b23-8b7d-ee4337f286d1" + "guid": "b6000e05-9a86-4120-985a-26005a84eff1" }, { "itemType": "attribute", @@ -37312,9 +37437,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "0959b5b5-5276-415d-8bfa-9d015dca32d5", + "underlyingEntityGuid": "705184d3-0f01-4997-96a3-9f9a3c185c19", "name": "Density", - "guid": "b38c1180-37a6-4d35-91cd-097ffae60098" + "guid": "a62d18b3-7223-4c19-8c09-1af33a888b1a" } ], "displayNames": { @@ -37333,9 +37458,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "df2c7e51-7810-4c64-8862-d3b0446648ac", + "underlyingEntityGuid": "97f84688-f21a-4e7c-b760-ed621937299e", "name": "Young's modulus", - "guid": "63e429c7-5fa1-4eea-b5f4-5130d2abdf30" + "guid": "85ad8b1b-49a3-4e5a-856d-f0391663a947" }, { "itemType": "attribute", @@ -37343,9 +37468,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "5730c74a-9e93-4a72-a151-a9c11fa3ae53", + "underlyingEntityGuid": "effaffe9-dee8-4026-8b99-af1eb0f2facb", "name": "Tensile strength", - "guid": "4f718c77-e130-4672-8e8d-e31248179f1a" + "guid": "4b7a04be-bada-4a97-b2cd-b076ea860ec9" }, { "itemType": "attribute", @@ -37353,9 +37478,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "215527c4-b3d5-4723-868a-68aede2138eb", + "underlyingEntityGuid": "3f037cb6-caa7-4798-97f7-1be9d8652182", "name": "Shape factor", - "guid": "b722bb22-b0c4-42b5-8b34-a89be09087b8" + "guid": "94e3fa15-8edd-4d23-92f3-e2a2dae6fd91" } ], "displayNames": { @@ -37430,7 +37555,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": "0a6f1368-36f0-4bc8-848c-ac8b7a43face" + "guid": "81d5e368-3d2d-4bcb-ba13-c82bb5b88502" } } } @@ -37452,7 +37577,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": "0a6f1368-36f0-4bc8-848c-ac8b7a43face" + "guid": "81d5e368-3d2d-4bcb-ba13-c82bb5b88502" } } } @@ -37474,7 +37599,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": "0a6f1368-36f0-4bc8-848c-ac8b7a43face" + "guid": "81d5e368-3d2d-4bcb-ba13-c82bb5b88502" } } } @@ -37496,7 +37621,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": "0a6f1368-36f0-4bc8-848c-ac8b7a43face" + "guid": "81d5e368-3d2d-4bcb-ba13-c82bb5b88502" } } } @@ -37515,7 +37640,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "baf5aad4-6514-411f-8620-04c2d14b261e" + "guid": "c590c80e-5e83-4dd2-b33c-4c5589c51a13" } } } @@ -38158,7 +38283,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "be10a519-cec9-4ce6-85f9-f857b9b8fd92" + "guid": "9f26c9c4-2a16-4463-ab2f-727090163b80" } }, "Example 2": { @@ -38173,9 +38298,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "992fb0b7-0c37-4f64-9f06-945da09329ec", + "underlyingEntityGuid": "fff2f3fa-d83f-4b56-8c7a-4bcd6e384f0a", "name": "Form", - "guid": "f6d306ee-5a10-4499-87a1-026a81d8bf7e" + "guid": "d3a04080-034d-4800-85ff-2019641fa729" }, { "itemType": "attribute", @@ -38188,34 +38313,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "db7bc666-5411-483e-a14c-c94299600628", + "underlyingEntityGuid": "8e3f7e4d-127a-4caa-ab0c-a5238f224d5b", "name": "Sources", - "guid": "9746920f-26f3-4870-ae1c-b2ade0a837bc" + "guid": "a96b1cb7-91d2-42db-aa37-6a93e14f6d3a" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "63dd350e-3f64-42cd-961e-b678c4e43760", + "underlyingEntityGuid": "45077012-89aa-4a72-ac15-ad228dda484e", "name": "Notes", - "guid": "937268e5-5a0a-44ec-87fa-03d0ca8fe4ee" + "guid": "f25c55e6-23d5-484d-8a5e-a4080cc94e2c" } ], - "underlyingEntityGuid": "cdf181b6-728c-4b00-97a1-d6559aa95fd3", + "underlyingEntityGuid": "19b97f6c-2ef5-44b5-9595-6ae27a86df29", "name": "Chemical resistance", - "guid": "717179f5-b9fe-4ef7-ba05-20236de93e8f" + "guid": "def92f96-c9ca-40c2-b975-fd7c8dcd4b66" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "94fdae4b-2a31-450a-b694-1a164a3a0a54", - "targetDatabaseVersion": "4cac05dc-c339-428a-af61-9881530a1ddd", - "targetTable": "61c152ed-7e48-4713-9bdb-1459180bf8e6", + "targetDatabase": "da2d1617-85a3-4188-bfb7-4aa7be9a7bf1", + "targetDatabaseVersion": "39d3abfe-0742-4fcc-8155-dce68987a141", + "targetTable": "131bef6d-0113-4b63-8181-5c6d8033d70c", "forwards": true, - "underlyingEntityGuid": "79bc1741-19ca-4862-a5d7-2d7b87bff361", + "underlyingEntityGuid": "8e9809f1-bb13-4307-8b6a-ccf65484d150", "name": "Material Pedigree", - "guid": "67bf45cd-7289-40ac-a4fc-523dc168aeae" + "guid": "a00808f6-1462-43d9-a5b2-1206b16ccc28" }, { "itemType": "attribute", @@ -38226,42 +38351,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "120a8e5c-b3d5-4b54-92ac-e38ab541284e", + "tabularColumnGuid": "2a4cf2ce-cd64-44da-aac2-3e59dd8f21ea", "name": "Offset Yield Stress", - "guid": "f18ce3c0-57f2-4976-8b3e-a248fc9b7951" + "guid": "e4b7bbc2-93d7-4c9c-b4cc-3b5b2d0caf66" }, { "columnType": "localShortText", - "tabularColumnGuid": "6738943a-83f1-40cb-ace4-a7de88e25c00", + "tabularColumnGuid": "ac35cd46-8919-4ccb-8e19-96764b383a4c", "name": "Young's Modulus Notes", - "guid": "e203e2c6-c6cc-4ebd-9427-e602075f925d" + "guid": "32217737-4707-4d2a-b43b-ba0ffa7b008f" } ], - "underlyingEntityGuid": "13eb068f-6da1-4bd0-a209-d1f845facf78", + "underlyingEntityGuid": "39eb2e41-d998-4120-b3a8-e10d1e8eb907", "name": "Reference Characteristics", - "guid": "e7d09697-048d-406b-9f30-5cc8a46820f4" + "guid": "299dfd03-26f2-40ce-a567-ee9d2cd2065e" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "94fdae4b-2a31-450a-b694-1a164a3a0a54", - "targetDatabaseVersion": "4cac05dc-c339-428a-af61-9881530a1ddd", - "targetTable": "209fb267-9907-4d8f-b372-152cc5d8ee67", + "targetDatabase": "da2d1617-85a3-4188-bfb7-4aa7be9a7bf1", + "targetDatabaseVersion": "39d3abfe-0742-4fcc-8155-dce68987a141", + "targetTable": "fca6fe9e-b50f-490a-a5de-4cd198f06d00", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "94fdae4b-2a31-450a-b694-1a164a3a0a54", - "targetDatabaseVersion": "4cac05dc-c339-428a-af61-9881530a1ddd", - "targetTable": "069c3d73-3b58-43cc-9f00-12fc4f2e2198", + "targetDatabase": "da2d1617-85a3-4188-bfb7-4aa7be9a7bf1", + "targetDatabaseVersion": "39d3abfe-0742-4fcc-8155-dce68987a141", + "targetTable": "0dd78ad7-f705-4398-8ff1-fbf11b97aefc", "forwards": false, - "underlyingEntityGuid": "dca7e6a6-b077-41b7-922b-ea36cf5ed1ea", + "underlyingEntityGuid": "883ff75e-4847-4674-9270-9874bba9f995", "name": "Pedigree information", - "guid": "e9a716f6-c1df-4057-8d60-678003b15ccf" + "guid": "dd72e9be-8e77-4dad-adcc-f08c72450511" }, - "underlyingEntityGuid": "7cead143-d92b-4f55-a269-02331879fd88", + "underlyingEntityGuid": "5c961f9c-a844-48ea-9c5b-d6afd83a521d", "name": "To Pedigree from Producers", - "guid": "f0f60954-9c52-4566-9151-649c58690205" + "guid": "8eaa69b9-1825-4c56-8743-f43cc918b09d" } ], "displayNames": { @@ -38269,7 +38394,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "da3a5a56-62c7-49d9-99bd-2c4968fd0ec9" + "guid": "4d26932e-337c-4307-a8c0-3afdd1b626d6" } } } @@ -38459,9 +38584,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": "6ffa8000-fe3b-46d4-9c7b-e0fdf4ed8dac", - "sourceTableGuid": "f2af9951-9764-4cbf-8e10-e8c5c7471611", - "linkGroupGuid": "7ad6944e-ae86-4d07-8854-f7249830b0b2" + "sourceDatabaseGuid": "306e9776-1d4f-4058-add4-1b6030b155ec", + "sourceTableGuid": "e24dc3cd-a41b-4d45-9338-13a6700cb7ba", + "linkGroupGuid": "3ea3b891-5acd-4d88-9a49-88901ddd9584" } }, "Example 8": { @@ -38473,13 +38598,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "185d2f22-b979-4a92-be23-bdbce16edb28", - "tabularAttributeGuid": "1b11b4aa-0176-4ecf-b487-f8cc672ee7dc" + "sourceDatabaseVersionGuid": "b3918c60-9c56-488e-bfdc-0b11c62dea54", + "tabularAttributeGuid": "9616bbf0-b149-435f-943d-82c7ea226e18" }, { "forwards": false, - "sourceDatabaseVersionGuid": "267365eb-3dd4-4059-88e1-488d975b70c7", - "tabularAttributeGuid": "82263766-7de0-44d0-a52e-4a27523e203d" + "sourceDatabaseVersionGuid": "ec089c5a-e86e-46d6-971f-7e9e1d2b30d3", + "tabularAttributeGuid": "22514dc1-5ac3-4915-b469-a7fbd8d91b26" } ] } @@ -38559,9 +38684,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": "6ffa8000-fe3b-46d4-9c7b-e0fdf4ed8dac", - "sourceTableGuid": "f2af9951-9764-4cbf-8e10-e8c5c7471611", - "linkGroupGuid": "7ad6944e-ae86-4d07-8854-f7249830b0b2" + "sourceDatabaseGuid": "306e9776-1d4f-4058-add4-1b6030b155ec", + "sourceTableGuid": "e24dc3cd-a41b-4d45-9338-13a6700cb7ba", + "linkGroupGuid": "3ea3b891-5acd-4d88-9a49-88901ddd9584" } }, "Example 8": { @@ -38573,13 +38698,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "185d2f22-b979-4a92-be23-bdbce16edb28", - "tabularAttributeGuid": "1b11b4aa-0176-4ecf-b487-f8cc672ee7dc" + "sourceDatabaseVersionGuid": "b3918c60-9c56-488e-bfdc-0b11c62dea54", + "tabularAttributeGuid": "9616bbf0-b149-435f-943d-82c7ea226e18" }, { "forwards": false, - "sourceDatabaseVersionGuid": "267365eb-3dd4-4059-88e1-488d975b70c7", - "tabularAttributeGuid": "82263766-7de0-44d0-a52e-4a27523e203d" + "sourceDatabaseVersionGuid": "ec089c5a-e86e-46d6-971f-7e9e1d2b30d3", + "tabularAttributeGuid": "22514dc1-5ac3-4915-b469-a7fbd8d91b26" } ] } @@ -38659,9 +38784,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": "6ffa8000-fe3b-46d4-9c7b-e0fdf4ed8dac", - "sourceTableGuid": "f2af9951-9764-4cbf-8e10-e8c5c7471611", - "linkGroupGuid": "7ad6944e-ae86-4d07-8854-f7249830b0b2" + "sourceDatabaseGuid": "306e9776-1d4f-4058-add4-1b6030b155ec", + "sourceTableGuid": "e24dc3cd-a41b-4d45-9338-13a6700cb7ba", + "linkGroupGuid": "3ea3b891-5acd-4d88-9a49-88901ddd9584" } }, "Example 8": { @@ -38673,13 +38798,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "185d2f22-b979-4a92-be23-bdbce16edb28", - "tabularAttributeGuid": "1b11b4aa-0176-4ecf-b487-f8cc672ee7dc" + "sourceDatabaseVersionGuid": "b3918c60-9c56-488e-bfdc-0b11c62dea54", + "tabularAttributeGuid": "9616bbf0-b149-435f-943d-82c7ea226e18" }, { "forwards": false, - "sourceDatabaseVersionGuid": "267365eb-3dd4-4059-88e1-488d975b70c7", - "tabularAttributeGuid": "82263766-7de0-44d0-a52e-4a27523e203d" + "sourceDatabaseVersionGuid": "ec089c5a-e86e-46d6-971f-7e9e1d2b30d3", + "tabularAttributeGuid": "22514dc1-5ac3-4915-b469-a7fbd8d91b26" } ] } @@ -38759,9 +38884,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": "6ffa8000-fe3b-46d4-9c7b-e0fdf4ed8dac", - "sourceTableGuid": "f2af9951-9764-4cbf-8e10-e8c5c7471611", - "linkGroupGuid": "7ad6944e-ae86-4d07-8854-f7249830b0b2" + "sourceDatabaseGuid": "306e9776-1d4f-4058-add4-1b6030b155ec", + "sourceTableGuid": "e24dc3cd-a41b-4d45-9338-13a6700cb7ba", + "linkGroupGuid": "3ea3b891-5acd-4d88-9a49-88901ddd9584" } }, "Example 8": { @@ -38773,13 +38898,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "185d2f22-b979-4a92-be23-bdbce16edb28", - "tabularAttributeGuid": "1b11b4aa-0176-4ecf-b487-f8cc672ee7dc" + "sourceDatabaseVersionGuid": "b3918c60-9c56-488e-bfdc-0b11c62dea54", + "tabularAttributeGuid": "9616bbf0-b149-435f-943d-82c7ea226e18" }, { "forwards": false, - "sourceDatabaseVersionGuid": "267365eb-3dd4-4059-88e1-488d975b70c7", - "tabularAttributeGuid": "82263766-7de0-44d0-a52e-4a27523e203d" + "sourceDatabaseVersionGuid": "ec089c5a-e86e-46d6-971f-7e9e1d2b30d3", + "tabularAttributeGuid": "22514dc1-5ac3-4915-b469-a7fbd8d91b26" } ] } @@ -38807,7 +38932,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "4bed0b29-faaa-48d8-aa96-4f433f6e331f" + "guid": "2b637d64-4fe4-4b5f-b999-c903edeb2c16" } }, "Example 2": { @@ -38827,7 +38952,7 @@ } ], "tabularColumnGuids": null, - "guid": "f8a87576-e2f7-4a84-b170-296f68f4ac24" + "guid": "39931dfa-9edf-4e4d-8af1-41e6d70b1bdd" } }, "Example 3": { @@ -38871,9 +38996,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": "2daa4012-f71a-4e42-b6de-74ca4aabf9ad", - "sourceTableGuid": "da3d266c-ceae-44f5-b9da-af27d1169ef7", - "linkGroupGuid": "deb04362-1d60-4d59-8cf7-d138809bfa37", + "sourceDatabaseGuid": "467cdb49-efc3-4d1b-8f8c-b8cb70461a51", + "sourceTableGuid": "1ed356fc-6bb3-4317-b1e1-6d19c83c8da3", + "linkGroupGuid": "52a7f164-0e3f-4017-ada3-3338e2ef0d2b", "guid": null } }, @@ -38887,12 +39012,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "7ca60390-de91-41b9-82d9-cbad0f821092" + "tabularAttributeGuid": "de05a582-057e-4a8d-ac9e-041721cdceac" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "bcc87b9e-f0d9-4c06-90cb-ed9c5c48e998" + "tabularAttributeGuid": "ea279092-9b6d-4cb7-90ec-d2fe6f91dfa2" } ], "guid": null @@ -39125,7 +39250,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": "0f0d760d-1a62-4d7a-807b-2e6c38fced57" + "guid": "4797e59a-1213-4cd9-8eb9-f982f63d851b" } }, "Example 3": { @@ -39158,7 +39283,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": "0f0d760d-1a62-4d7a-807b-2e6c38fced57" + "guid": "4797e59a-1213-4cd9-8eb9-f982f63d851b" } }, "Example 3": { @@ -39191,7 +39316,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": "0f0d760d-1a62-4d7a-807b-2e6c38fced57" + "guid": "4797e59a-1213-4cd9-8eb9-f982f63d851b" } }, "Example 3": { @@ -39224,7 +39349,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": "0f0d760d-1a62-4d7a-807b-2e6c38fced57" + "guid": "4797e59a-1213-4cd9-8eb9-f982f63d851b" } }, "Example 3": { @@ -39254,7 +39379,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "105a41c9-fb31-424e-a22c-2cae7979f625" + "guid": "7289c457-d6f3-4e28-bf0c-87c8044fbdfd" } } } @@ -39393,9 +39518,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "5567f27c-4517-4104-a672-8e48e72fe143", + "underlyingEntityGuid": "9b1c0d81-ae48-4dce-b26a-19450e14f242", "name": "Price", - "guid": "04c925ff-d2de-493f-943c-a52b6fa9568e" + "guid": "3c48d68c-f1e1-4189-966e-bfc4f8e4b573" }, { "itemType": "attribute", @@ -39403,9 +39528,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "fca236e6-3f66-4f56-b6d0-fd42458ce7ba", + "underlyingEntityGuid": "0c58f7bf-9b67-4756-a186-918e346f88e3", "name": "Density", - "guid": "bcbdd88b-24a1-4c6d-bfa8-6951c8c35aa6" + "guid": "77aec3ac-0532-40ac-89f2-612547a5189a" } ], "displayNames": { @@ -39424,9 +39549,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "b8cd6e37-a51b-4034-bf4f-0401cd5b95c8", + "underlyingEntityGuid": "87297bd9-ab50-44a7-bd56-5850ea4bcaa1", "name": "Young's modulus", - "guid": "79839c3c-2c7c-4866-afd6-ae25d3d58df3" + "guid": "8932d80a-bcbd-453c-a992-9135278572a7" }, { "itemType": "attribute", @@ -39434,9 +39559,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "00154ee5-fae3-43bf-9807-cfd7cf33d4b2", + "underlyingEntityGuid": "b921cb9f-b659-423a-ab43-b62846897cbb", "name": "Tensile strength", - "guid": "3d021366-7f3a-41e3-bb20-1db023b6d0a1" + "guid": "e00b18b7-5a20-42fb-a104-591abd2cac60" }, { "itemType": "attribute", @@ -39444,9 +39569,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "099e83db-970f-44e5-80a4-b4523962bd3f", + "underlyingEntityGuid": "f58df6cc-8644-4484-9e8d-112c9f58f299", "name": "Shape factor", - "guid": "ee7f44fe-031b-4439-94c5-80250d651cbf" + "guid": "02bf177e-6d79-4214-8595-f913e01061d6" } ], "displayNames": { @@ -39525,7 +39650,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "c9398c22-4d7e-46e1-a571-3ac83f803d29" + "guid": "3548cd04-fbaa-469c-a644-d08e2240d638" } }, "Example 2": { @@ -39558,7 +39683,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "c9398c22-4d7e-46e1-a571-3ac83f803d29" + "guid": "3548cd04-fbaa-469c-a644-d08e2240d638" } }, "Example 2": { @@ -39591,7 +39716,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "c9398c22-4d7e-46e1-a571-3ac83f803d29" + "guid": "3548cd04-fbaa-469c-a644-d08e2240d638" } }, "Example 2": { @@ -39624,7 +39749,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "c9398c22-4d7e-46e1-a571-3ac83f803d29" + "guid": "3548cd04-fbaa-469c-a644-d08e2240d638" } }, "Example 2": { @@ -39657,7 +39782,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "51228e95-f946-4cc5-bc96-5db192f8785d" + "guid": "de334f91-5a9a-40c6-9827-b1e117b28538" } } } @@ -39954,7 +40079,7 @@ { "type": "discrete", "name": "Red", - "guid": "e34dd127-bdbb-460b-9dfa-6fa18dad5150" + "guid": "e4721d12-13c6-47e0-90a9-e1e2350dcb26" }, { "type": "discrete", @@ -39964,7 +40089,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "cfac64a0-c728-4220-bb5f-167081bd9dbb" + "guid": "dd576016-af7a-4491-b666-67b4285afbb6" } }, "Example 3": { @@ -40092,7 +40217,7 @@ { "type": "discrete", "name": "Red", - "guid": "e34dd127-bdbb-460b-9dfa-6fa18dad5150" + "guid": "e4721d12-13c6-47e0-90a9-e1e2350dcb26" }, { "type": "discrete", @@ -40102,7 +40227,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "cfac64a0-c728-4220-bb5f-167081bd9dbb" + "guid": "dd576016-af7a-4491-b666-67b4285afbb6" } }, "Example 3": { @@ -40230,7 +40355,7 @@ { "type": "discrete", "name": "Red", - "guid": "e34dd127-bdbb-460b-9dfa-6fa18dad5150" + "guid": "e4721d12-13c6-47e0-90a9-e1e2350dcb26" }, { "type": "discrete", @@ -40240,7 +40365,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "cfac64a0-c728-4220-bb5f-167081bd9dbb" + "guid": "dd576016-af7a-4491-b666-67b4285afbb6" } }, "Example 3": { @@ -40368,7 +40493,7 @@ { "type": "discrete", "name": "Red", - "guid": "e34dd127-bdbb-460b-9dfa-6fa18dad5150" + "guid": "e4721d12-13c6-47e0-90a9-e1e2350dcb26" }, { "type": "discrete", @@ -40378,7 +40503,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "cfac64a0-c728-4220-bb5f-167081bd9dbb" + "guid": "dd576016-af7a-4491-b666-67b4285afbb6" } }, "Example 3": { @@ -40646,7 +40771,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3825dab9-a168-44f6-b1d6-45342a117a9f" + "guid": "4f025a8b-7939-49b5-bb70-abf8e8538d2d" } }, "Example 2": { @@ -40657,7 +40782,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "d267f351-a01d-4170-924a-58dd95db3dda" + "guid": "8949b08d-7ac1-4892-80f5-14a6796c8776" } }, "Example 3": { @@ -40665,7 +40790,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": "12e7220c-3d24-4f95-8f5c-9d1cfbaa353d" + "guid": "f301580c-0724-4983-80d1-d7e70eda4b29" } }, "Example 4": { @@ -40684,7 +40809,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "2d107c3c-1f6c-441f-820d-f3032a21dec7" + "guid": "b1ea0e00-261f-4649-8f8d-182b0d937007" } }, "Example 6": { @@ -40724,7 +40849,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3825dab9-a168-44f6-b1d6-45342a117a9f" + "guid": "4f025a8b-7939-49b5-bb70-abf8e8538d2d" } }, "Example 2": { @@ -40735,7 +40860,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "d267f351-a01d-4170-924a-58dd95db3dda" + "guid": "8949b08d-7ac1-4892-80f5-14a6796c8776" } }, "Example 3": { @@ -40743,7 +40868,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": "12e7220c-3d24-4f95-8f5c-9d1cfbaa353d" + "guid": "f301580c-0724-4983-80d1-d7e70eda4b29" } }, "Example 4": { @@ -40762,7 +40887,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "2d107c3c-1f6c-441f-820d-f3032a21dec7" + "guid": "b1ea0e00-261f-4649-8f8d-182b0d937007" } }, "Example 6": { @@ -40802,7 +40927,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3825dab9-a168-44f6-b1d6-45342a117a9f" + "guid": "4f025a8b-7939-49b5-bb70-abf8e8538d2d" } }, "Example 2": { @@ -40813,7 +40938,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "d267f351-a01d-4170-924a-58dd95db3dda" + "guid": "8949b08d-7ac1-4892-80f5-14a6796c8776" } }, "Example 3": { @@ -40821,7 +40946,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": "12e7220c-3d24-4f95-8f5c-9d1cfbaa353d" + "guid": "f301580c-0724-4983-80d1-d7e70eda4b29" } }, "Example 4": { @@ -40840,7 +40965,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "2d107c3c-1f6c-441f-820d-f3032a21dec7" + "guid": "b1ea0e00-261f-4649-8f8d-182b0d937007" } }, "Example 6": { @@ -40880,7 +41005,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3825dab9-a168-44f6-b1d6-45342a117a9f" + "guid": "4f025a8b-7939-49b5-bb70-abf8e8538d2d" } }, "Example 2": { @@ -40891,7 +41016,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "d267f351-a01d-4170-924a-58dd95db3dda" + "guid": "8949b08d-7ac1-4892-80f5-14a6796c8776" } }, "Example 3": { @@ -40899,7 +41024,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": "12e7220c-3d24-4f95-8f5c-9d1cfbaa353d" + "guid": "f301580c-0724-4983-80d1-d7e70eda4b29" } }, "Example 4": { @@ -40918,7 +41043,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "2d107c3c-1f6c-441f-820d-f3032a21dec7" + "guid": "b1ea0e00-261f-4649-8f8d-182b0d937007" } }, "Example 6": { @@ -41211,7 +41336,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "d15c3f54-beb1-4e3a-abb9-5848ba5897d5" + "guid": "b6e41495-36d6-40b9-bc02-6a743cf3ee8d" } }, "Example 2": { @@ -41220,7 +41345,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "187c740a-3a9a-4a49-b29f-f1fc1f627cb4" + "guid": "dfaee604-e030-4cb7-868a-2d5b4c60300c" } }, "Example 3": { @@ -41228,7 +41353,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": "73c392f8-e9e3-48a9-b515-954af06f8613" + "guid": "822fc768-33fb-4e99-9b19-8eb46dc5e047" } } } @@ -41245,7 +41370,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "d15c3f54-beb1-4e3a-abb9-5848ba5897d5" + "guid": "b6e41495-36d6-40b9-bc02-6a743cf3ee8d" } }, "Example 2": { @@ -41254,7 +41379,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "187c740a-3a9a-4a49-b29f-f1fc1f627cb4" + "guid": "dfaee604-e030-4cb7-868a-2d5b4c60300c" } }, "Example 3": { @@ -41262,7 +41387,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": "73c392f8-e9e3-48a9-b515-954af06f8613" + "guid": "822fc768-33fb-4e99-9b19-8eb46dc5e047" } } } @@ -41279,7 +41404,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "d15c3f54-beb1-4e3a-abb9-5848ba5897d5" + "guid": "b6e41495-36d6-40b9-bc02-6a743cf3ee8d" } }, "Example 2": { @@ -41288,7 +41413,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "187c740a-3a9a-4a49-b29f-f1fc1f627cb4" + "guid": "dfaee604-e030-4cb7-868a-2d5b4c60300c" } }, "Example 3": { @@ -41296,7 +41421,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": "73c392f8-e9e3-48a9-b515-954af06f8613" + "guid": "822fc768-33fb-4e99-9b19-8eb46dc5e047" } } } @@ -41313,7 +41438,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "d15c3f54-beb1-4e3a-abb9-5848ba5897d5" + "guid": "b6e41495-36d6-40b9-bc02-6a743cf3ee8d" } }, "Example 2": { @@ -41322,7 +41447,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "187c740a-3a9a-4a49-b29f-f1fc1f627cb4" + "guid": "dfaee604-e030-4cb7-868a-2d5b4c60300c" } }, "Example 3": { @@ -41330,7 +41455,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": "73c392f8-e9e3-48a9-b515-954af06f8613" + "guid": "822fc768-33fb-4e99-9b19-8eb46dc5e047" } } } @@ -41986,7 +42111,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": "f8606a71-6c71-4266-9914-37ecb6b3665e" + "guid": "4b742c59-fb3b-490d-a5c0-b5ae7b61b9c4" } }, "Example 3": { @@ -41997,7 +42122,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "d96dde5a-be84-41fd-8b63-8ae5442c951c" + "guid": "6f2f5c2b-65b3-4b1b-ad7f-1f22115c9d5b" } } } @@ -42019,7 +42144,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": "f8606a71-6c71-4266-9914-37ecb6b3665e" + "guid": "4b742c59-fb3b-490d-a5c0-b5ae7b61b9c4" } }, "Example 3": { @@ -42030,7 +42155,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "d96dde5a-be84-41fd-8b63-8ae5442c951c" + "guid": "6f2f5c2b-65b3-4b1b-ad7f-1f22115c9d5b" } } } @@ -42052,7 +42177,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": "f8606a71-6c71-4266-9914-37ecb6b3665e" + "guid": "4b742c59-fb3b-490d-a5c0-b5ae7b61b9c4" } }, "Example 3": { @@ -42063,7 +42188,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "d96dde5a-be84-41fd-8b63-8ae5442c951c" + "guid": "6f2f5c2b-65b3-4b1b-ad7f-1f22115c9d5b" } } } @@ -42085,7 +42210,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": "f8606a71-6c71-4266-9914-37ecb6b3665e" + "guid": "4b742c59-fb3b-490d-a5c0-b5ae7b61b9c4" } }, "Example 3": { @@ -42096,7 +42221,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "d96dde5a-be84-41fd-8b63-8ae5442c951c" + "guid": "6f2f5c2b-65b3-4b1b-ad7f-1f22115c9d5b" } } } @@ -42238,7 +42363,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": "f3cbfefe-a7b2-4333-84f3-c59a91848951" + "guid": "92bdbe4d-af49-4192-b5d6-5a934d04b59d" } }, "Example 2": { @@ -42258,7 +42383,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "8c3c35d0-a6fc-4fa8-b8d1-bfc40c606fe9", + "guid": "82908c26-6cd1-491b-ba88-0b35ac966034", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -42274,7 +42399,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": "f3cbfefe-a7b2-4333-84f3-c59a91848951" + "guid": "92bdbe4d-af49-4192-b5d6-5a934d04b59d" } }, "Example 2": { @@ -42294,7 +42419,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "8c3c35d0-a6fc-4fa8-b8d1-bfc40c606fe9", + "guid": "82908c26-6cd1-491b-ba88-0b35ac966034", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -42310,7 +42435,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": "f3cbfefe-a7b2-4333-84f3-c59a91848951" + "guid": "92bdbe4d-af49-4192-b5d6-5a934d04b59d" } }, "Example 2": { @@ -42330,7 +42455,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "8c3c35d0-a6fc-4fa8-b8d1-bfc40c606fe9", + "guid": "82908c26-6cd1-491b-ba88-0b35ac966034", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -42346,7 +42471,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": "f3cbfefe-a7b2-4333-84f3-c59a91848951" + "guid": "92bdbe4d-af49-4192-b5d6-5a934d04b59d" } }, "Example 2": { @@ -42366,7 +42491,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "8c3c35d0-a6fc-4fa8-b8d1-bfc40c606fe9", + "guid": "82908c26-6cd1-491b-ba88-0b35ac966034", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -42548,7 +42673,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "7e9c043f-636f-43c6-aeb4-aa411d152e87" + "guid": "1a847428-00e0-4967-8d5e-65e893e19062" } }, "Example 3": { @@ -42559,7 +42684,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "e10ba75c-3bb8-44cf-b8de-22e73a54e083" + "guid": "8ec5a8f8-99aa-47ad-aefd-6614473e42fb" } } } @@ -42583,7 +42708,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "7e9c043f-636f-43c6-aeb4-aa411d152e87" + "guid": "1a847428-00e0-4967-8d5e-65e893e19062" } }, "Example 3": { @@ -42594,7 +42719,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "e10ba75c-3bb8-44cf-b8de-22e73a54e083" + "guid": "8ec5a8f8-99aa-47ad-aefd-6614473e42fb" } } } @@ -42618,7 +42743,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "7e9c043f-636f-43c6-aeb4-aa411d152e87" + "guid": "1a847428-00e0-4967-8d5e-65e893e19062" } }, "Example 3": { @@ -42629,7 +42754,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "e10ba75c-3bb8-44cf-b8de-22e73a54e083" + "guid": "8ec5a8f8-99aa-47ad-aefd-6614473e42fb" } } } @@ -42653,7 +42778,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "7e9c043f-636f-43c6-aeb4-aa411d152e87" + "guid": "1a847428-00e0-4967-8d5e-65e893e19062" } }, "Example 3": { @@ -42664,7 +42789,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "e10ba75c-3bb8-44cf-b8de-22e73a54e083" + "guid": "8ec5a8f8-99aa-47ad-aefd-6614473e42fb" } } } @@ -42801,7 +42926,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "d17fd174-2ae5-443d-8b9a-74424e389841" + "guid": "64d94713-f0f5-47c7-91e5-adc21527ec84" } }, "Example 2": { @@ -42816,7 +42941,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": "51c14b2d-6f06-44f8-acdf-3b9caa3d1480" + "guid": "b5253150-fa24-4185-9d2e-12831702d142" } } } @@ -42832,7 +42957,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "d17fd174-2ae5-443d-8b9a-74424e389841" + "guid": "64d94713-f0f5-47c7-91e5-adc21527ec84" } }, "Example 2": { @@ -42847,7 +42972,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": "51c14b2d-6f06-44f8-acdf-3b9caa3d1480" + "guid": "b5253150-fa24-4185-9d2e-12831702d142" } } } @@ -42863,7 +42988,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "d17fd174-2ae5-443d-8b9a-74424e389841" + "guid": "64d94713-f0f5-47c7-91e5-adc21527ec84" } }, "Example 2": { @@ -42878,7 +43003,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": "51c14b2d-6f06-44f8-acdf-3b9caa3d1480" + "guid": "b5253150-fa24-4185-9d2e-12831702d142" } } } @@ -42894,7 +43019,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "d17fd174-2ae5-443d-8b9a-74424e389841" + "guid": "64d94713-f0f5-47c7-91e5-adc21527ec84" } }, "Example 2": { @@ -42909,7 +43034,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": "51c14b2d-6f06-44f8-acdf-3b9caa3d1480" + "guid": "b5253150-fa24-4185-9d2e-12831702d142" } } } @@ -43079,7 +43204,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "b22ba000-39d3-4765-93d2-f1952f3c511b" + "guid": "d21d5771-f60d-4855-86dd-b95a9f8b5879" } ] } @@ -43149,7 +43274,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "7942a929-ff04-470a-a86b-d9b4ebe0c780" + "guid": "8d83e9e6-549b-46ed-a267-ca88edda8443" } }, "Example 3": { @@ -43159,7 +43284,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a87953e4-3b6f-453d-9da4-896704683ebf" + "tableGuid": "610ce3f3-95c0-4c6a-94a2-19ca6178f56e" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -43172,12 +43297,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "faa81bb4-020b-4e58-ac25-e32d6fb0829e", - "tableGuid": "1e751227-6297-406f-ac9c-5c8a56366480" + "databaseGuid": "9c613f11-8439-4d84-b3ca-008d636862c7", + "tableGuid": "10c983cf-db1c-45e0-9621-c1288d63aefc" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "eb377f45-21bf-4b78-b989-336d472a84d6" + "guid": "804994ce-6d18-4439-86b9-f71dd6a3bcfe" } }, "Example 5": { @@ -43224,7 +43349,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "261f19ea-4d0c-49df-9b17-8537957f5676" + "guid": "13f60b77-34cf-4c87-9d74-ddf64be8a6f9" } } } @@ -43260,7 +43385,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "7942a929-ff04-470a-a86b-d9b4ebe0c780" + "guid": "8d83e9e6-549b-46ed-a267-ca88edda8443" } }, "Example 3": { @@ -43270,7 +43395,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a87953e4-3b6f-453d-9da4-896704683ebf" + "tableGuid": "610ce3f3-95c0-4c6a-94a2-19ca6178f56e" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -43283,12 +43408,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "faa81bb4-020b-4e58-ac25-e32d6fb0829e", - "tableGuid": "1e751227-6297-406f-ac9c-5c8a56366480" + "databaseGuid": "9c613f11-8439-4d84-b3ca-008d636862c7", + "tableGuid": "10c983cf-db1c-45e0-9621-c1288d63aefc" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "eb377f45-21bf-4b78-b989-336d472a84d6" + "guid": "804994ce-6d18-4439-86b9-f71dd6a3bcfe" } }, "Example 5": { @@ -43335,7 +43460,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "261f19ea-4d0c-49df-9b17-8537957f5676" + "guid": "13f60b77-34cf-4c87-9d74-ddf64be8a6f9" } } } @@ -43371,7 +43496,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "7942a929-ff04-470a-a86b-d9b4ebe0c780" + "guid": "8d83e9e6-549b-46ed-a267-ca88edda8443" } }, "Example 3": { @@ -43381,7 +43506,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a87953e4-3b6f-453d-9da4-896704683ebf" + "tableGuid": "610ce3f3-95c0-4c6a-94a2-19ca6178f56e" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -43394,12 +43519,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "faa81bb4-020b-4e58-ac25-e32d6fb0829e", - "tableGuid": "1e751227-6297-406f-ac9c-5c8a56366480" + "databaseGuid": "9c613f11-8439-4d84-b3ca-008d636862c7", + "tableGuid": "10c983cf-db1c-45e0-9621-c1288d63aefc" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "eb377f45-21bf-4b78-b989-336d472a84d6" + "guid": "804994ce-6d18-4439-86b9-f71dd6a3bcfe" } }, "Example 5": { @@ -43446,7 +43571,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "261f19ea-4d0c-49df-9b17-8537957f5676" + "guid": "13f60b77-34cf-4c87-9d74-ddf64be8a6f9" } } } @@ -43482,7 +43607,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "7942a929-ff04-470a-a86b-d9b4ebe0c780" + "guid": "8d83e9e6-549b-46ed-a267-ca88edda8443" } }, "Example 3": { @@ -43492,7 +43617,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a87953e4-3b6f-453d-9da4-896704683ebf" + "tableGuid": "610ce3f3-95c0-4c6a-94a2-19ca6178f56e" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -43505,12 +43630,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "faa81bb4-020b-4e58-ac25-e32d6fb0829e", - "tableGuid": "1e751227-6297-406f-ac9c-5c8a56366480" + "databaseGuid": "9c613f11-8439-4d84-b3ca-008d636862c7", + "tableGuid": "10c983cf-db1c-45e0-9621-c1288d63aefc" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "eb377f45-21bf-4b78-b989-336d472a84d6" + "guid": "804994ce-6d18-4439-86b9-f71dd6a3bcfe" } }, "Example 5": { @@ -43557,7 +43682,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "261f19ea-4d0c-49df-9b17-8537957f5676" + "guid": "13f60b77-34cf-4c87-9d74-ddf64be8a6f9" } } } @@ -43612,8 +43737,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "7acb943e-5832-4349-b775-6468ac31e65b", - "tableGuid": "158c76bd-3d01-4458-8b8b-8e3be299ee54" + "databaseGuid": "e9ad4fb2-c60d-4f7f-8780-d089e28c86e0", + "tableGuid": "694a16ab-3522-456c-96ef-379b0700ec86" } }, "identity": 1, @@ -43621,7 +43746,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "e7b7152d-0930-4a19-bdd3-831e1e0470cc" + "guid": "746c0803-b857-4739-a788-ebcbc1054e81" } }, "Example 6": { @@ -43812,8 +43937,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "555872d7-7e6e-4eef-a0b7-22364cce1e4a", - "tableGuid": "5c9d7178-c8db-4db4-b6e2-7c15800c4acf" + "databaseGuid": "4b849ff3-3560-4709-b541-827f5ab32acf", + "tableGuid": "0ba785a3-ee39-4d81-b919-262c6c5af169" } }, "identity": 1, @@ -43821,7 +43946,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "df617eb8-e97b-44a0-b912-23834c02a19f" + "guid": "ce5d495b-fe9d-4ed4-8baf-88b0b066970b" } }, "Example 3": { @@ -43992,7 +44117,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": "bed66032-e332-4302-88a2-df4fd1899841" + "guid": "dd2d43ac-924d-4a0f-abfe-fa8c65bcc906" } }, "Example 2": { @@ -44012,7 +44137,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "1d3d63dd-cf90-42ac-8204-120fbf3fe7b8" + "guid": "1801628e-c38d-48c0-b2b5-25ef3690069b" } }, "Example 4": { @@ -44023,7 +44148,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dc96fe5b-0838-4644-9cf2-eceaf7e4619a" + "guid": "2950ab54-288b-4f89-8a18-4afb38e38492" } }, "Example 5": { @@ -44045,7 +44170,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "5eb60a11-3518-4a50-b8a9-8711df39caa2" + "guid": "b9ad4fa6-26ee-4127-82b1-c634379d805e" } } } @@ -44060,7 +44185,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": "bed66032-e332-4302-88a2-df4fd1899841" + "guid": "dd2d43ac-924d-4a0f-abfe-fa8c65bcc906" } }, "Example 2": { @@ -44080,7 +44205,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "1d3d63dd-cf90-42ac-8204-120fbf3fe7b8" + "guid": "1801628e-c38d-48c0-b2b5-25ef3690069b" } }, "Example 4": { @@ -44091,7 +44216,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dc96fe5b-0838-4644-9cf2-eceaf7e4619a" + "guid": "2950ab54-288b-4f89-8a18-4afb38e38492" } }, "Example 5": { @@ -44113,7 +44238,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "5eb60a11-3518-4a50-b8a9-8711df39caa2" + "guid": "b9ad4fa6-26ee-4127-82b1-c634379d805e" } } } @@ -44128,7 +44253,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": "bed66032-e332-4302-88a2-df4fd1899841" + "guid": "dd2d43ac-924d-4a0f-abfe-fa8c65bcc906" } }, "Example 2": { @@ -44148,7 +44273,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "1d3d63dd-cf90-42ac-8204-120fbf3fe7b8" + "guid": "1801628e-c38d-48c0-b2b5-25ef3690069b" } }, "Example 4": { @@ -44159,7 +44284,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dc96fe5b-0838-4644-9cf2-eceaf7e4619a" + "guid": "2950ab54-288b-4f89-8a18-4afb38e38492" } }, "Example 5": { @@ -44181,7 +44306,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "5eb60a11-3518-4a50-b8a9-8711df39caa2" + "guid": "b9ad4fa6-26ee-4127-82b1-c634379d805e" } } } @@ -44196,7 +44321,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": "bed66032-e332-4302-88a2-df4fd1899841" + "guid": "dd2d43ac-924d-4a0f-abfe-fa8c65bcc906" } }, "Example 2": { @@ -44216,7 +44341,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "1d3d63dd-cf90-42ac-8204-120fbf3fe7b8" + "guid": "1801628e-c38d-48c0-b2b5-25ef3690069b" } }, "Example 4": { @@ -44227,7 +44352,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dc96fe5b-0838-4644-9cf2-eceaf7e4619a" + "guid": "2950ab54-288b-4f89-8a18-4afb38e38492" } }, "Example 5": { @@ -44249,7 +44374,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "5eb60a11-3518-4a50-b8a9-8711df39caa2" + "guid": "b9ad4fa6-26ee-4127-82b1-c634379d805e" } } } @@ -44304,8 +44429,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "000ca99f-5b2b-48e0-9d75-62290be116cc", - "tableGuid": "785eb324-4f1a-4335-bd7e-8d3edbe122d5" + "databaseGuid": "a68254d7-7229-4a2d-a11a-f0c8d8e8c2f1", + "tableGuid": "710caa1f-0b60-4594-a62b-7f0dd76ec0b1" } }, "identity": 1, @@ -44313,7 +44438,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "f3fd62e4-c211-4a38-96b6-6f9db1d3386a" + "guid": "512c4e7a-61fe-4469-945f-03217e378630" } }, "Example 9": { @@ -44464,7 +44589,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": "2537c5c1-fdd7-4460-ae1c-b4f9fd05d0cc" + "guid": "711cb45c-367c-4eee-ae1e-7983d5be8473" } } } @@ -44488,7 +44613,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": "2537c5c1-fdd7-4460-ae1c-b4f9fd05d0cc" + "guid": "711cb45c-367c-4eee-ae1e-7983d5be8473" } } } @@ -44512,7 +44637,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": "2537c5c1-fdd7-4460-ae1c-b4f9fd05d0cc" + "guid": "711cb45c-367c-4eee-ae1e-7983d5be8473" } } } @@ -44536,7 +44661,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": "2537c5c1-fdd7-4460-ae1c-b4f9fd05d0cc" + "guid": "711cb45c-367c-4eee-ae1e-7983d5be8473" } } } @@ -44661,7 +44786,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "eb0b9947-dfca-4c3e-8155-28f11dc7acd5" + "guid": "624c618d-be52-4f85-bb38-31b3c5e519e7" } }, "Example 2": { @@ -44691,7 +44816,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "eb0b9947-dfca-4c3e-8155-28f11dc7acd5" + "guid": "624c618d-be52-4f85-bb38-31b3c5e519e7" } }, "Example 2": { @@ -44721,7 +44846,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "eb0b9947-dfca-4c3e-8155-28f11dc7acd5" + "guid": "624c618d-be52-4f85-bb38-31b3c5e519e7" } }, "Example 2": { @@ -44751,7 +44876,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "eb0b9947-dfca-4c3e-8155-28f11dc7acd5" + "guid": "624c618d-be52-4f85-bb38-31b3c5e519e7" } }, "Example 2": { @@ -44943,7 +45068,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a4a943d-8215-4748-aa00-2fe7107baa69" + "guid": "cb2397b8-b214-429f-b0f8-a2fcb4313281" } ], "name": "Unification" @@ -45024,7 +45149,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a4a943d-8215-4748-aa00-2fe7107baa69" + "guid": "cb2397b8-b214-429f-b0f8-a2fcb4313281" } ], "name": "Unification" @@ -45105,7 +45230,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a4a943d-8215-4748-aa00-2fe7107baa69" + "guid": "cb2397b8-b214-429f-b0f8-a2fcb4313281" } ], "name": "Unification" @@ -45186,7 +45311,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "4a4a943d-8215-4748-aa00-2fe7107baa69" + "guid": "cb2397b8-b214-429f-b0f8-a2fcb4313281" } ], "name": "Unification" @@ -45324,7 +45449,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": "413f2e8d-efb6-47e4-a21f-2d43ca135b6c" + "guid": "fa4ff663-4109-4008-b404-000f57b96333" } }, "Example 3": { @@ -45374,7 +45499,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": "413f2e8d-efb6-47e4-a21f-2d43ca135b6c" + "guid": "fa4ff663-4109-4008-b404-000f57b96333" } }, "Example 3": { @@ -45424,7 +45549,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": "413f2e8d-efb6-47e4-a21f-2d43ca135b6c" + "guid": "fa4ff663-4109-4008-b404-000f57b96333" } }, "Example 3": { @@ -45474,7 +45599,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": "413f2e8d-efb6-47e4-a21f-2d43ca135b6c" + "guid": "fa4ff663-4109-4008-b404-000f57b96333" } }, "Example 3": { @@ -45705,7 +45830,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": "a7e97d31-1997-4436-863b-f3053b96a3a3" + "guid": "db5bc355-5f3e-4c15-9214-44a7d8c140ce" } }, "Example 3": { @@ -45737,7 +45862,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": "a7e97d31-1997-4436-863b-f3053b96a3a3" + "guid": "db5bc355-5f3e-4c15-9214-44a7d8c140ce" } }, "Example 3": { @@ -45769,7 +45894,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": "a7e97d31-1997-4436-863b-f3053b96a3a3" + "guid": "db5bc355-5f3e-4c15-9214-44a7d8c140ce" } }, "Example 3": { @@ -45801,7 +45926,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": "a7e97d31-1997-4436-863b-f3053b96a3a3" + "guid": "db5bc355-5f3e-4c15-9214-44a7d8c140ce" } }, "Example 3": { @@ -45990,7 +46115,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "2a8bbc7e-1d18-4b0a-acf4-575302b2b6ee" + "guid": "1a061cd5-34b4-41b8-8b39-684115af2792" } }, "Example 2": { @@ -46031,7 +46156,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "2a8bbc7e-1d18-4b0a-acf4-575302b2b6ee" + "guid": "1a061cd5-34b4-41b8-8b39-684115af2792" } }, "Example 2": { @@ -46072,7 +46197,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "2a8bbc7e-1d18-4b0a-acf4-575302b2b6ee" + "guid": "1a061cd5-34b4-41b8-8b39-684115af2792" } }, "Example 2": { @@ -46113,7 +46238,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "2a8bbc7e-1d18-4b0a-acf4-575302b2b6ee" + "guid": "1a061cd5-34b4-41b8-8b39-684115af2792" } }, "Example 2": { @@ -46615,7 +46740,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "d1a093e8-9a37-4bc3-8615-a7c1a7ec65de" + "guid": "416848b4-fd03-45e9-a1af-f786de88d6d0" } }, "Example 3": { @@ -46650,7 +46775,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "d1a093e8-9a37-4bc3-8615-a7c1a7ec65de" + "guid": "416848b4-fd03-45e9-a1af-f786de88d6d0" } }, "Example 3": { @@ -46685,7 +46810,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "d1a093e8-9a37-4bc3-8615-a7c1a7ec65de" + "guid": "416848b4-fd03-45e9-a1af-f786de88d6d0" } }, "Example 3": { @@ -46720,7 +46845,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "d1a093e8-9a37-4bc3-8615-a7c1a7ec65de" + "guid": "416848b4-fd03-45e9-a1af-f786de88d6d0" } }, "Example 3": { @@ -46952,7 +47077,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "48ac190a-2de1-4c20-9469-ccafde909e9e" + "guid": "c2c4cac1-9fbd-4a08-89ef-c6c55adb5730" } }, "Example 2": { @@ -47013,7 +47138,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "48ac190a-2de1-4c20-9469-ccafde909e9e" + "guid": "c2c4cac1-9fbd-4a08-89ef-c6c55adb5730" } }, "Example 2": { @@ -47074,7 +47199,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "48ac190a-2de1-4c20-9469-ccafde909e9e" + "guid": "c2c4cac1-9fbd-4a08-89ef-c6c55adb5730" } }, "Example 2": { @@ -47135,7 +47260,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "48ac190a-2de1-4c20-9469-ccafde909e9e" + "guid": "c2c4cac1-9fbd-4a08-89ef-c6c55adb5730" } }, "Example 2": { @@ -47621,9 +47746,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "0a0292c8-a94d-44fc-b618-6d14f7170fd3", - "databaseVersionGuid": "7cb4df2c-2b1f-4c26-8976-b8e7db589077", - "tableGuid": "a4112098-5831-46d6-a8ab-e3f8e0ede2f0" + "databaseGuid": "086fc88c-2405-42db-95f6-e1fa839e2daa", + "databaseVersionGuid": "e0132781-8b6a-4fe6-8a97-b9edfaa28780", + "tableGuid": "3009992b-4199-4025-84f2-ad22c9d8c750" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -47633,7 +47758,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "8043be53-9e4b-4162-bf69-d9cf413ba428" + "guid": "d8085394-741e-4264-9fd1-9628fdfbeb49" }, { "identity": 8944, @@ -48161,7 +48286,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": "6646f6c0-71c6-480c-8314-ad96aa1a48db" + "guid": "a99e9f48-3f0f-4720-b710-9ee2d21f97e8" } } } @@ -48176,7 +48301,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": "6646f6c0-71c6-480c-8314-ad96aa1a48db" + "guid": "a99e9f48-3f0f-4720-b710-9ee2d21f97e8" } } } @@ -48191,7 +48316,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": "6646f6c0-71c6-480c-8314-ad96aa1a48db" + "guid": "a99e9f48-3f0f-4720-b710-9ee2d21f97e8" } } } @@ -48206,7 +48331,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": "6646f6c0-71c6-480c-8314-ad96aa1a48db" + "guid": "a99e9f48-3f0f-4720-b710-9ee2d21f97e8" } } } @@ -48315,7 +48440,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": "aaf2daf6-e7bb-4f9b-b741-96436e6e24b6" + "guid": "205f412e-b354-4b94-b259-2e38d905ae1c" } }, "Example 2": { @@ -48329,7 +48454,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": "48b8e17d-ea60-46fe-9537-17dd78c5a09d" + "guid": "b5731555-45c4-40a2-afad-f7355e9ef398" } } } @@ -48344,7 +48469,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": "aaf2daf6-e7bb-4f9b-b741-96436e6e24b6" + "guid": "205f412e-b354-4b94-b259-2e38d905ae1c" } }, "Example 2": { @@ -48358,7 +48483,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": "48b8e17d-ea60-46fe-9537-17dd78c5a09d" + "guid": "b5731555-45c4-40a2-afad-f7355e9ef398" } } } @@ -48373,7 +48498,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": "aaf2daf6-e7bb-4f9b-b741-96436e6e24b6" + "guid": "205f412e-b354-4b94-b259-2e38d905ae1c" } }, "Example 2": { @@ -48387,7 +48512,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": "48b8e17d-ea60-46fe-9537-17dd78c5a09d" + "guid": "b5731555-45c4-40a2-afad-f7355e9ef398" } } } @@ -48402,7 +48527,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": "aaf2daf6-e7bb-4f9b-b741-96436e6e24b6" + "guid": "205f412e-b354-4b94-b259-2e38d905ae1c" } }, "Example 2": { @@ -48416,7 +48541,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": "48b8e17d-ea60-46fe-9537-17dd78c5a09d" + "guid": "b5731555-45c4-40a2-afad-f7355e9ef398" } } } @@ -48875,8 +49000,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5c8d6b87-7c42-45cb-9e16-565787a682ea", - "d8de8225-35d8-4698-a360-fcc6d4016c5b" + "fe209fd9-e70b-4246-a077-a349587ed814", + "6dbbf335-4db9-41cc-8774-21aac0aa7acd" ], "type": "recordListMember" }, @@ -49676,8 +49801,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5c8d6b87-7c42-45cb-9e16-565787a682ea", - "d8de8225-35d8-4698-a360-fcc6d4016c5b" + "fe209fd9-e70b-4246-a077-a349587ed814", + "6dbbf335-4db9-41cc-8774-21aac0aa7acd" ], "type": "recordListMember" }, @@ -50477,8 +50602,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5c8d6b87-7c42-45cb-9e16-565787a682ea", - "d8de8225-35d8-4698-a360-fcc6d4016c5b" + "fe209fd9-e70b-4246-a077-a349587ed814", + "6dbbf335-4db9-41cc-8774-21aac0aa7acd" ], "type": "recordListMember" }, @@ -51278,8 +51403,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5c8d6b87-7c42-45cb-9e16-565787a682ea", - "d8de8225-35d8-4698-a360-fcc6d4016c5b" + "fe209fd9-e70b-4246-a077-a349587ed814", + "6dbbf335-4db9-41cc-8774-21aac0aa7acd" ], "type": "recordListMember" }, @@ -52157,8 +52282,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "782ff19f-93b6-4b76-8449-9b9b556355c1", - "b5771c45-3f6f-43e1-96b0-684fc39e8ca7" + "4d901506-ceaa-478c-8fc3-b5dbb11c700f", + "d5c33470-8442-4967-90c6-0266a1dca9cf" ], "type": "recordListMember" }, @@ -52958,8 +53083,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "782ff19f-93b6-4b76-8449-9b9b556355c1", - "b5771c45-3f6f-43e1-96b0-684fc39e8ca7" + "4d901506-ceaa-478c-8fc3-b5dbb11c700f", + "d5c33470-8442-4967-90c6-0266a1dca9cf" ], "type": "recordListMember" }, @@ -53759,8 +53884,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "782ff19f-93b6-4b76-8449-9b9b556355c1", - "b5771c45-3f6f-43e1-96b0-684fc39e8ca7" + "4d901506-ceaa-478c-8fc3-b5dbb11c700f", + "d5c33470-8442-4967-90c6-0266a1dca9cf" ], "type": "recordListMember" }, @@ -54560,8 +54685,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "782ff19f-93b6-4b76-8449-9b9b556355c1", - "b5771c45-3f6f-43e1-96b0-684fc39e8ca7" + "4d901506-ceaa-478c-8fc3-b5dbb11c700f", + "d5c33470-8442-4967-90c6-0266a1dca9cf" ], "type": "recordListMember" }, @@ -55430,8 +55555,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "ced442d3-9991-4b57-b313-8b969e7f7e43", - "82a6b9f1-430b-4a80-a1e5-fac94147570c" + "e3decc4c-5e53-4819-9146-01f3e38248c1", + "31063141-acba-44ab-a561-f6f805e1dd31" ], "type": "recordListMember" }, @@ -56231,8 +56356,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "ced442d3-9991-4b57-b313-8b969e7f7e43", - "82a6b9f1-430b-4a80-a1e5-fac94147570c" + "e3decc4c-5e53-4819-9146-01f3e38248c1", + "31063141-acba-44ab-a561-f6f805e1dd31" ], "type": "recordListMember" }, @@ -57032,8 +57157,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "ced442d3-9991-4b57-b313-8b969e7f7e43", - "82a6b9f1-430b-4a80-a1e5-fac94147570c" + "e3decc4c-5e53-4819-9146-01f3e38248c1", + "31063141-acba-44ab-a561-f6f805e1dd31" ], "type": "recordListMember" }, @@ -57833,8 +57958,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "ced442d3-9991-4b57-b313-8b969e7f7e43", - "82a6b9f1-430b-4a80-a1e5-fac94147570c" + "e3decc4c-5e53-4819-9146-01f3e38248c1", + "31063141-acba-44ab-a561-f6f805e1dd31" ], "type": "recordListMember" }, @@ -58679,8 +58804,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "819ab569-29ff-470a-a4a3-60207787a582", - "5304cc79-bd2a-4ec7-92ef-02a2a313a642" + "e6d2b0d7-ffd7-4188-bc00-122ea60f2659", + "3f698e79-59e6-4c31-9039-c7d694f70326" ], "type": "recordListMember" }, @@ -59480,8 +59605,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "819ab569-29ff-470a-a4a3-60207787a582", - "5304cc79-bd2a-4ec7-92ef-02a2a313a642" + "e6d2b0d7-ffd7-4188-bc00-122ea60f2659", + "3f698e79-59e6-4c31-9039-c7d694f70326" ], "type": "recordListMember" }, @@ -60281,8 +60406,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "819ab569-29ff-470a-a4a3-60207787a582", - "5304cc79-bd2a-4ec7-92ef-02a2a313a642" + "e6d2b0d7-ffd7-4188-bc00-122ea60f2659", + "3f698e79-59e6-4c31-9039-c7d694f70326" ], "type": "recordListMember" }, @@ -61082,8 +61207,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "819ab569-29ff-470a-a4a3-60207787a582", - "5304cc79-bd2a-4ec7-92ef-02a2a313a642" + "e6d2b0d7-ffd7-4188-bc00-122ea60f2659", + "3f698e79-59e6-4c31-9039-c7d694f70326" ], "type": "recordListMember" }, @@ -74412,6 +74537,41 @@ }, "additionalProperties": false }, + "GsaPermission": { + "required": [ + "guid", + "name", + "role" + ], + "type": "object", + "properties": { + "role": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "setMessage": { + "type": "string", + "description": "Message to show when this permission is set.", + "nullable": true + }, + "unsetMessage": { + "type": "string", + "description": "Message to show when this permission is not set.", + "nullable": true + }, + "name": { + "type": "string" + }, + "guid": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, "GsaPermissionCategoriesInfo": { "required": [ "categories" @@ -74451,6 +74611,21 @@ }, "additionalProperties": false }, + "GsaPermissionsInfo": { + "required": [ + "permissions" + ], + "type": "object", + "properties": { + "permissions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GsaSlimPermission" + } + } + }, + "additionalProperties": false + }, "GsaPictureAttribute": { "type": "object", "allOf": [ @@ -78661,6 +78836,23 @@ }, "additionalProperties": false }, + "GsaSlimPermission": { + "required": [ + "guid", + "name" + ], + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "guid": { + "type": "string", + "format": "uuid" + } + }, + "additionalProperties": false + }, "GsaSlimPermissionCategory": { "required": [ "guid",