diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index fbe4b4e8..5fb44769 100644 --- a/ansys-grantami-serverapi-openapi/pyproject.toml +++ b/ansys-grantami-serverapi-openapi/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "ansys-grantami-serverapi-openapi" description = "Autogenerated client library for the Granta MI Server API." -version = "4.0.0.dev354" +version = "4.0.0.dev356" 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 75b61a54..e031730d 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 @@ -739,6 +739,7 @@ from .models.gsa_record_ancestor_history_identity_criterion import ( GsaRecordAncestorHistoryIdentityCriterion, ) +from .models.gsa_record_capabilities import GsaRecordCapabilities from .models.gsa_record_color import GsaRecordColor from .models.gsa_record_color_property import GsaRecordColorProperty from .models.gsa_record_export_failure import GsaRecordExportFailure @@ -1640,6 +1641,7 @@ "GsaRangeHistogramAggregationDatumCriterion", "GsaRecordAncestorCriterion", "GsaRecordAncestorHistoryIdentityCriterion", + "GsaRecordCapabilities", "GsaRecordColor", "GsaRecordColorProperty", "GsaRecordExportFailure", 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 e37d9a99..a3c013d2 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 @@ -663,6 +663,7 @@ from .gsa_record_ancestor_history_identity_criterion import ( GsaRecordAncestorHistoryIdentityCriterion, ) +from .gsa_record_capabilities import GsaRecordCapabilities from .gsa_record_color import GsaRecordColor from .gsa_record_color_property import GsaRecordColorProperty from .gsa_record_export_failure import GsaRecordExportFailure @@ -1517,6 +1518,7 @@ "GsaRangeHistogramAggregationDatumCriterion", "GsaRecordAncestorCriterion", "GsaRecordAncestorHistoryIdentityCriterion", + "GsaRecordCapabilities", "GsaRecordColor", "GsaRecordColorProperty", "GsaRecordExportFailure", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_capabilities.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_capabilities.py new file mode 100644 index 00000000..c1b847e3 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_capabilities.py @@ -0,0 +1,185 @@ +# Copyright (C) 2023 - 2024 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 GsaRecordCapabilities(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] = { + "can_modify": "bool", + "can_write": "bool", + } + + attribute_map: dict[str, str] = { + "can_modify": "canModify", + "can_write": "canWrite", + } + + subtype_mapping: dict[str, str] = {} + + discriminator: Optional[str] = None + + def __init__( + self, + *, + can_modify: "bool", + can_write: "bool", + ) -> None: + """GsaRecordCapabilities - a model defined in Swagger + + Parameters + ---------- + can_modify: bool + can_write: bool + """ + self._can_write: bool + self._can_modify: bool + + self.can_write = can_write + self.can_modify = can_modify + + @property + def can_write(self) -> "bool": + """Gets the can_write of this GsaRecordCapabilities. + True if the current user has write permission for this record version, and is in write mode. Write permission is required to edit record properties, and to perform version control actions. + + Returns + ------- + bool + The can_write of this GsaRecordCapabilities. + """ + return self._can_write + + @can_write.setter + def can_write(self, can_write: "bool") -> None: + """Sets the can_write of this GsaRecordCapabilities. + True if the current user has write permission for this record version, and is in write mode. Write permission is required to edit record properties, and to perform version control actions. + + Parameters + ---------- + can_write: bool + The can_write of this GsaRecordCapabilities. + """ + # Field is not nullable + if can_write is None: + raise ValueError("Invalid value for 'can_write', must not be 'None'") + # Field is required + if can_write is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'can_write', must not be 'Unset'") + self._can_write = can_write + + @property + def can_modify(self) -> "bool": + """Gets the can_modify of this GsaRecordCapabilities. + True if the current user can modify this record version, e.g. edit record properties. The user needs write permission, and if the table is version controlled, the record must be unreleased. + + Returns + ------- + bool + The can_modify of this GsaRecordCapabilities. + """ + return self._can_modify + + @can_modify.setter + def can_modify(self, can_modify: "bool") -> None: + """Sets the can_modify of this GsaRecordCapabilities. + True if the current user can modify this record version, e.g. edit record properties. The user needs write permission, and if the table is version controlled, the record must be unreleased. + + Parameters + ---------- + can_modify: bool + The can_modify of this GsaRecordCapabilities. + """ + # Field is not nullable + if can_modify is None: + raise ValueError("Invalid value for 'can_modify', must not be 'None'") + # Field is required + if can_modify is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'can_modify', must not be 'Unset'") + self._can_modify = can_modify + + @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, GsaRecordCapabilities): + 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_record_version.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_version.py index 13a5a27a..7168235e 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_version.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_version.py @@ -61,6 +61,7 @@ class GsaRecordVersion(ModelBase): Name of the property used as discriminator for subtypes. """ swagger_types: dict[str, str] = { + "capabilities": "GsaRecordCapabilities", "created_by_user": "str", "created_date": "datetime", "database_key": "str", @@ -79,6 +80,7 @@ class GsaRecordVersion(ModelBase): } attribute_map: dict[str, str] = { + "capabilities": "capabilities", "created_by_user": "createdByUser", "created_date": "createdDate", "database_key": "databaseKey", @@ -101,6 +103,7 @@ class GsaRecordVersion(ModelBase): "table": "GsaSlimTable", "recordType": "GsaRecordType", "recordColor": "GsaRecordColor", + "capabilities": "GsaRecordCapabilities", "versionState": "GsaVersionState", } @@ -109,6 +112,7 @@ class GsaRecordVersion(ModelBase): def __init__( self, *, + capabilities: "GsaRecordCapabilities", created_by_user: "str", created_date: "datetime", database_key: "str", @@ -129,6 +133,7 @@ def __init__( Parameters ---------- + capabilities: GsaRecordCapabilities created_by_user: str created_date: datetime database_key: str @@ -156,6 +161,7 @@ def __init__( self._released_date: Union[datetime, None, Unset_Type] = Unset self._short_name: str self._record_color: GsaRecordColor + self._capabilities: GsaRecordCapabilities self._version_number: int self._version_state: GsaVersionState self._name: str @@ -173,6 +179,7 @@ def __init__( self.released_date = released_date self.short_name = short_name self.record_color = record_color + self.capabilities = capabilities self.version_number = version_number self.version_state = version_state self.name = name @@ -480,6 +487,34 @@ def record_color(self, record_color: "GsaRecordColor") -> None: raise ValueError("Invalid value for 'record_color', must not be 'Unset'") self._record_color = record_color + @property + def capabilities(self) -> "GsaRecordCapabilities": + """Gets the capabilities of this GsaRecordVersion. + + Returns + ------- + GsaRecordCapabilities + The capabilities of this GsaRecordVersion. + """ + return self._capabilities + + @capabilities.setter + def capabilities(self, capabilities: "GsaRecordCapabilities") -> None: + """Sets the capabilities of this GsaRecordVersion. + + Parameters + ---------- + capabilities: GsaRecordCapabilities + The capabilities of this GsaRecordVersion. + """ + # Field is not nullable + if capabilities is None: + raise ValueError("Invalid value for 'capabilities', must not be 'None'") + # Field is required + if capabilities is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'capabilities', must not be 'Unset'") + self._capabilities = capabilities + @property def version_number(self) -> "int": """Gets the version_number of this GsaRecordVersion. diff --git a/yaml/server-api.json b/yaml/server-api.json index d37d9b2b..e024941a 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -170,7 +170,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "95874c15-97cf-4448-9d10-cdca58f4367d", + "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -196,7 +196,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "67529c87-445d-4d24-bca6-7d3695549d35", + "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -228,7 +228,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fd096bac-4f42-4760-8d02-96bab01c355d", + "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -390,7 +390,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "95874c15-97cf-4448-9d10-cdca58f4367d", + "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -416,7 +416,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "67529c87-445d-4d24-bca6-7d3695549d35", + "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -448,7 +448,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fd096bac-4f42-4760-8d02-96bab01c355d", + "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -610,7 +610,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "95874c15-97cf-4448-9d10-cdca58f4367d", + "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -636,7 +636,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "67529c87-445d-4d24-bca6-7d3695549d35", + "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -668,7 +668,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fd096bac-4f42-4760-8d02-96bab01c355d", + "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -830,7 +830,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "95874c15-97cf-4448-9d10-cdca58f4367d", + "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -856,7 +856,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "67529c87-445d-4d24-bca6-7d3695549d35", + "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -888,7 +888,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fd096bac-4f42-4760-8d02-96bab01c355d", + "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1131,7 +1131,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d456886f-d4cf-4b74-8624-12d06e8a7908", + "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1157,7 +1157,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8bc133e-2b71-486f-8511-d744090df196", + "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1189,7 +1189,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dd9fd691-5e5f-42ff-9f87-416cfabc291a", + "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1351,7 +1351,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d456886f-d4cf-4b74-8624-12d06e8a7908", + "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1377,7 +1377,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8bc133e-2b71-486f-8511-d744090df196", + "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1409,7 +1409,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dd9fd691-5e5f-42ff-9f87-416cfabc291a", + "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1571,7 +1571,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d456886f-d4cf-4b74-8624-12d06e8a7908", + "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1597,7 +1597,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8bc133e-2b71-486f-8511-d744090df196", + "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1629,7 +1629,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dd9fd691-5e5f-42ff-9f87-416cfabc291a", + "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1791,7 +1791,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d456886f-d4cf-4b74-8624-12d06e8a7908", + "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1817,7 +1817,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8bc133e-2b71-486f-8511-d744090df196", + "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1849,7 +1849,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dd9fd691-5e5f-42ff-9f87-416cfabc291a", + "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2083,7 +2083,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da51f914-697a-4a07-aa74-77039e64679b", + "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2109,7 +2109,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "061bb43f-dab1-4364-b72e-f0ee03ec2350", + "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2141,7 +2141,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dbad090c-f359-430b-baa1-cbee33a1158b", + "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2303,7 +2303,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da51f914-697a-4a07-aa74-77039e64679b", + "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2329,7 +2329,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "061bb43f-dab1-4364-b72e-f0ee03ec2350", + "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2361,7 +2361,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dbad090c-f359-430b-baa1-cbee33a1158b", + "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2523,7 +2523,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da51f914-697a-4a07-aa74-77039e64679b", + "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2549,7 +2549,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "061bb43f-dab1-4364-b72e-f0ee03ec2350", + "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2581,7 +2581,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dbad090c-f359-430b-baa1-cbee33a1158b", + "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2743,7 +2743,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da51f914-697a-4a07-aa74-77039e64679b", + "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2769,7 +2769,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "061bb43f-dab1-4364-b72e-f0ee03ec2350", + "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2801,7 +2801,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "dbad090c-f359-430b-baa1-cbee33a1158b", + "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3011,7 +3011,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8cbcc373-2104-495e-b3cb-aab13dcd786f", + "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3037,7 +3037,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b04cd64a-edef-4972-a8b6-b425c25c9f3a", + "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3069,7 +3069,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "13cfcc5f-43f1-40eb-9eaa-6f79a94a35d3", + "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3231,7 +3231,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8cbcc373-2104-495e-b3cb-aab13dcd786f", + "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3257,7 +3257,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b04cd64a-edef-4972-a8b6-b425c25c9f3a", + "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3289,7 +3289,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "13cfcc5f-43f1-40eb-9eaa-6f79a94a35d3", + "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3451,7 +3451,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8cbcc373-2104-495e-b3cb-aab13dcd786f", + "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3477,7 +3477,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b04cd64a-edef-4972-a8b6-b425c25c9f3a", + "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3509,7 +3509,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "13cfcc5f-43f1-40eb-9eaa-6f79a94a35d3", + "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3671,7 +3671,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8cbcc373-2104-495e-b3cb-aab13dcd786f", + "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3697,7 +3697,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b04cd64a-edef-4972-a8b6-b425c25c9f3a", + "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3729,7 +3729,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "13cfcc5f-43f1-40eb-9eaa-6f79a94a35d3", + "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -6654,7 +6654,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7341574+00:00" + "value": "2024-12-10T23:53:21.1619201+00:00" } }, "Example 11": { @@ -6877,7 +6877,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7341574+00:00" + "value": "2024-12-10T23:53:21.1619201+00:00" } }, "Example 11": { @@ -7100,7 +7100,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7341574+00:00" + "value": "2024-12-10T23:53:21.1619201+00:00" } }, "Example 11": { @@ -7323,7 +7323,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7341574+00:00" + "value": "2024-12-10T23:53:21.1619201+00:00" } }, "Example 11": { @@ -7864,7 +7864,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1774922+00:00" } }, "Example 25": { @@ -8087,7 +8087,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1774922+00:00" } }, "Example 25": { @@ -8310,7 +8310,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1774922+00:00" } }, "Example 25": { @@ -8533,7 +8533,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1774922+00:00" } }, "Example 25": { @@ -9002,7 +9002,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1931188+00:00" } }, "Example 8": { @@ -9099,7 +9099,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1931188+00:00" } }, "Example 8": { @@ -9196,7 +9196,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1931188+00:00" } }, "Example 8": { @@ -9293,7 +9293,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.7497825+00:00" + "value": "2024-12-10T23:53:21.1931188+00:00" } }, "Example 8": { @@ -9741,7 +9741,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.781031+00:00" + "value": "2024-12-10T23:53:21.208826+00:00" } }, "Example 17": { @@ -9838,7 +9838,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.781031+00:00" + "value": "2024-12-10T23:53:21.208826+00:00" } }, "Example 17": { @@ -9935,7 +9935,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.781031+00:00" + "value": "2024-12-10T23:53:21.208826+00:00" } }, "Example 17": { @@ -10032,7 +10032,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2024-12-08T00:24:48.781031+00:00" + "value": "2024-12-10T23:53:21.208826+00:00" } }, "Example 17": { @@ -16987,7 +16987,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "3a59a830-2014-4180-ae91-97ef66ec4958" + "d9ee6e0b-5817-4a33-843c-2027adf63f50" ], "listActionsToInclude": [ "ItemAdded", @@ -17011,7 +17011,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "3a59a830-2014-4180-ae91-97ef66ec4958" + "d9ee6e0b-5817-4a33-843c-2027adf63f50" ], "listActionsToInclude": [ "ItemAdded", @@ -17035,7 +17035,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "3a59a830-2014-4180-ae91-97ef66ec4958" + "d9ee6e0b-5817-4a33-843c-2027adf63f50" ], "listActionsToInclude": [ "ItemAdded", @@ -17059,7 +17059,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "3a59a830-2014-4180-ae91-97ef66ec4958" + "d9ee6e0b-5817-4a33-843c-2027adf63f50" ], "listActionsToInclude": [ "ItemAdded", @@ -18774,7 +18774,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "845da6ec-82e9-469b-9f80-554744e680ee" + "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" } }, "Example 4": { @@ -18836,7 +18836,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "845da6ec-82e9-469b-9f80-554744e680ee" + "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" } }, "Example 4": { @@ -18898,7 +18898,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "845da6ec-82e9-469b-9f80-554744e680ee" + "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" } }, "Example 4": { @@ -18960,7 +18960,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "845da6ec-82e9-469b-9f80-554744e680ee" + "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" } }, "Example 4": { @@ -19015,11 +19015,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "2ca0d3cb-b984-4c2b-8ad5-d3a6387e27c9" + "guid": "d4f74d03-3271-47fc-9d9a-462ac919d0b4" } ], "subsets": [], - "guid": "1f828973-8721-4eda-889a-1f51541ee635" + "guid": "3b6efa7c-5672-4234-891f-ba2bfc093077" } } } @@ -19740,7 +19740,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "5329c133-22a8-40f9-9572-f8dfb716d6d7" + "guid": "72019d20-7f13-4f52-88b3-112cb64fa2d2" } } } @@ -20026,7 +20026,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "97a49306-56a5-446f-9aa4-a224d9776cea" + "guid": "ae6ca3b2-36e2-4eed-b2f4-9f9fb09abe94" } } } @@ -20190,6 +20190,10 @@ "recordType": "record", "shortName": "Alumino silicate - 1720", "recordColor": "fuchsia", + "capabilities": { + "canWrite": true, + "canModify": true + }, "versionNumber": 1, "versionState": "unversioned", "name": "Alumino silicate - 1720", @@ -20281,6 +20285,10 @@ "recordType": "record", "shortName": "Alumino silicate - 1720", "recordColor": "fuchsia", + "capabilities": { + "canWrite": true, + "canModify": true + }, "versionNumber": 1, "versionState": "unversioned", "name": "Alumino silicate - 1720", @@ -20390,6 +20398,10 @@ "recordType": "record", "shortName": "Alumino silicate - 1720", "recordColor": "fuchsia", + "capabilities": { + "canWrite": true, + "canModify": true + }, "versionNumber": 1, "versionState": "unversioned", "name": "Alumino silicate - 1720", @@ -20530,6 +20542,10 @@ "recordType": "record", "shortName": "Arsenic trioxide [1327-53-3]", "recordColor": "red", + "capabilities": { + "canWrite": true, + "canModify": false + }, "versionNumber": 1, "versionState": "released", "name": "Arsenic trioxide [1327-53-3]", @@ -20577,7 +20593,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID '545e9aaf-f50e-446f-b911-2b9f7d0576a0'.", + "message": "Cannot release record version with GUID '4a606647-9c11-40d2-a610-2ef0df9337d3'.", "code": 400, "errors": [ { @@ -20671,6 +20687,10 @@ "recordType": "record", "shortName": "Arsenic trioxide [1327-53-3]", "recordColor": "red", + "capabilities": { + "canWrite": true, + "canModify": true + }, "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3]", @@ -20718,7 +20738,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID '1f5d6bd1-f4c2-42cc-a657-8811e8bbb895'.", + "message": "Cannot create a new version from the record version with GUID 'ef967d2c-8aa7-45fe-9951-d9d727eb2cd7'.", "code": 400, "errors": [ { @@ -20728,7 +20748,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "3f6948bb-491c-4ad2-a0ff-7a9da2cafaf3" + "guid": "14f23ae1-d42c-4374-a97f-cde6b835d9a9" } } ] @@ -20818,6 +20838,10 @@ "recordType": "record", "shortName": "Arsenic trioxide [1327-53-3]", "recordColor": "red", + "capabilities": { + "canWrite": true, + "canModify": false + }, "versionNumber": 1, "versionState": "withdrawn", "name": "Arsenic trioxide [1327-53-3]", @@ -21034,7 +21058,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "73c37d9a-9df5-4dda-84c0-218c293da444" + "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" } }, "Example 3": { @@ -21447,7 +21471,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "73c37d9a-9df5-4dda-84c0-218c293da444" + "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" } }, "Example 3": { @@ -21860,7 +21884,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "73c37d9a-9df5-4dda-84c0-218c293da444" + "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" } }, "Example 3": { @@ -22273,7 +22297,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "73c37d9a-9df5-4dda-84c0-218c293da444" + "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" } }, "Example 3": { @@ -22773,7 +22797,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "12477fbf-7a6a-4b03-90aa-bb6bdd37be47" + "guid": "45888ba7-c8a8-45e7-97d7-62aeff7d3374" } ], "primaryDynamicLinkGroups": [], @@ -23075,7 +23099,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "5918f554-4e70-4d99-bcf6-21e96a9727f6" + "guid": "2f56f2bc-470b-4653-9977-5eedc586daf3" } ], "primaryDynamicLinkGroups": [], @@ -24345,7 +24369,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "085aad5e-d302-4c38-bf1f-1590b44826c3" + "guid": "6d17145b-10e6-435f-82da-d34c1a2917ce" } ], "primaryDynamicLinkGroups": [], @@ -24792,7 +24816,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "cef64c31-d3b5-45ed-a600-19118ffe4488" + "guid": "6f8ed015-e30c-450a-b9c4-1472c8d50774" } ], "primaryDynamicLinkGroups": [], @@ -25254,7 +25278,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "0b527487-a60e-4d21-889d-8fb3a80fac78" + "guid": "195c24a1-daa3-4bc4-b677-383765f43ee8" } ], "primaryDynamicLinkGroups": [], @@ -25433,7 +25457,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute 'Notes' (GUID = '695b40bc-6773-45b0-9da8-977491def3bb').", + "message": "Cannot delete attribute 'Notes' (GUID = '3fc81b57-d9be-4b58-bc00-003179266d5d').", "code": 400, "errors": [ { @@ -25448,7 +25472,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "8369d82c-28f4-450e-9b07-28510ce448d8" + "guid": "8937768b-77f7-4335-8f8b-5f20564fa9d3" } ] } @@ -27934,7 +27958,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": "b5a62bac-4b5b-4cdf-b7b0-c6e8a8ba5c41" + "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" } } } @@ -27959,7 +27983,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": "b5a62bac-4b5b-4cdf-b7b0-c6e8a8ba5c41" + "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" } } } @@ -27984,7 +28008,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": "b5a62bac-4b5b-4cdf-b7b0-c6e8a8ba5c41" + "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" } } } @@ -28009,7 +28033,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": "b5a62bac-4b5b-4cdf-b7b0-c6e8a8ba5c41" + "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" } } } @@ -28160,7 +28184,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": "2010e8d2-ed25-4a33-87dd-88550a0eef68" + "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" } }, "Example 2": { @@ -28184,7 +28208,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": "2010e8d2-ed25-4a33-87dd-88550a0eef68" + "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" } }, "Example 2": { @@ -28208,7 +28232,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": "2010e8d2-ed25-4a33-87dd-88550a0eef68" + "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" } }, "Example 2": { @@ -28232,7 +28256,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": "2010e8d2-ed25-4a33-87dd-88550a0eef68" + "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" } }, "Example 2": { @@ -28461,7 +28485,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "2ec2e60a-fc69-40ff-9823-98922ec17cc0" + "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" } }, "Example 3": { @@ -28494,7 +28518,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "2ec2e60a-fc69-40ff-9823-98922ec17cc0" + "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" } }, "Example 3": { @@ -28527,7 +28551,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "2ec2e60a-fc69-40ff-9823-98922ec17cc0" + "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" } }, "Example 3": { @@ -28560,7 +28584,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "2ec2e60a-fc69-40ff-9823-98922ec17cc0" + "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" } }, "Example 3": { @@ -28703,7 +28727,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "53ae1c2e-af02-44b1-bf65-3dc6a68b9680" + "guid": "273eb33a-982b-4ba2-a238-168d2be56222" } }, "Example 2": { @@ -28718,7 +28742,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": "1f556acd-1c90-4012-85eb-2448ebeec198" + "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" } } } @@ -28735,7 +28759,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "53ae1c2e-af02-44b1-bf65-3dc6a68b9680" + "guid": "273eb33a-982b-4ba2-a238-168d2be56222" } }, "Example 2": { @@ -28750,7 +28774,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": "1f556acd-1c90-4012-85eb-2448ebeec198" + "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" } } } @@ -28767,7 +28791,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "53ae1c2e-af02-44b1-bf65-3dc6a68b9680" + "guid": "273eb33a-982b-4ba2-a238-168d2be56222" } }, "Example 2": { @@ -28782,7 +28806,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": "1f556acd-1c90-4012-85eb-2448ebeec198" + "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" } } } @@ -28799,7 +28823,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "53ae1c2e-af02-44b1-bf65-3dc6a68b9680" + "guid": "273eb33a-982b-4ba2-a238-168d2be56222" } }, "Example 2": { @@ -28814,7 +28838,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": "1f556acd-1c90-4012-85eb-2448ebeec198" + "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" } } } @@ -29418,8 +29442,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": "c6d41791-3588-4bbc-815f-65a072b87231", - "guid": "e941f6ec-0073-443f-84fd-951fd8f90bf6", + "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", + "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", "name": "MI Training (Updated)" } }, @@ -29444,8 +29468,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": "c6d41791-3588-4bbc-815f-65a072b87231", - "guid": "e941f6ec-0073-443f-84fd-951fd8f90bf6", + "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", + "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", "name": "MI Training (Updated)" } }, @@ -29470,8 +29494,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": "c6d41791-3588-4bbc-815f-65a072b87231", - "guid": "e941f6ec-0073-443f-84fd-951fd8f90bf6", + "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", + "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", "name": "MI Training (Updated)" } }, @@ -29496,8 +29520,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": "c6d41791-3588-4bbc-815f-65a072b87231", - "guid": "e941f6ec-0073-443f-84fd-951fd8f90bf6", + "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", + "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", "name": "MI Training (Updated)" } }, @@ -30503,7 +30527,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "b9b5d896-8562-4d08-918d-efcc29776885" + "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" } } } @@ -30525,7 +30549,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "b9b5d896-8562-4d08-918d-efcc29776885" + "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" } } } @@ -30547,7 +30571,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "b9b5d896-8562-4d08-918d-efcc29776885" + "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" } } } @@ -30569,7 +30593,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "b9b5d896-8562-4d08-918d-efcc29776885" + "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" } } } @@ -31307,7 +31331,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2407f81e-8074-475e-8b41-7c21b8286491" + "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" } } } @@ -31328,7 +31352,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2407f81e-8074-475e-8b41-7c21b8286491" + "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" } } } @@ -31349,7 +31373,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2407f81e-8074-475e-8b41-7c21b8286491" + "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" } } } @@ -31370,7 +31394,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "2407f81e-8074-475e-8b41-7c21b8286491" + "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" } } } @@ -31773,11 +31797,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "0a10fe7a-64c5-4ec6-81d3-9e18efda2694" + "guid": "390b95d8-6ec3-48be-b39b-9ed491e2b425" }, { "name": "no-transform.xslt", - "guid": "3bf91bd4-a9ec-497d-ad14-9c080f2a0c9e" + "guid": "cd409bb7-35b9-4ca5-a3fa-2bb8138f13dc" } ] } @@ -31790,11 +31814,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "0a10fe7a-64c5-4ec6-81d3-9e18efda2694" + "guid": "390b95d8-6ec3-48be-b39b-9ed491e2b425" }, { "name": "no-transform.xslt", - "guid": "3bf91bd4-a9ec-497d-ad14-9c080f2a0c9e" + "guid": "cd409bb7-35b9-4ca5-a3fa-2bb8138f13dc" } ] } @@ -31807,11 +31831,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "0a10fe7a-64c5-4ec6-81d3-9e18efda2694" + "guid": "390b95d8-6ec3-48be-b39b-9ed491e2b425" }, { "name": "no-transform.xslt", - "guid": "3bf91bd4-a9ec-497d-ad14-9c080f2a0c9e" + "guid": "cd409bb7-35b9-4ca5-a3fa-2bb8138f13dc" } ] } @@ -31889,7 +31913,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "208b5433-428a-4b25-a266-a294d48be5b0" + "guid": "213e153a-d6c6-45b3-8675-9c3fa3a97a38" } }, "application/json": { @@ -31903,7 +31927,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "208b5433-428a-4b25-a266-a294d48be5b0" + "guid": "213e153a-d6c6-45b3-8675-9c3fa3a97a38" } }, "text/json": { @@ -31917,7 +31941,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "208b5433-428a-4b25-a266-a294d48be5b0" + "guid": "213e153a-d6c6-45b3-8675-9c3fa3a97a38" } } } @@ -31984,7 +32008,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "c7b37a04-f137-4e93-a7a1-899dbb51c074" + "guid": "0da19012-02e9-4abd-b99b-dbac00c1d724" } }, "application/json": { @@ -31998,7 +32022,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "c7b37a04-f137-4e93-a7a1-899dbb51c074" + "guid": "0da19012-02e9-4abd-b99b-dbac00c1d724" } }, "text/json": { @@ -32012,7 +32036,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "c7b37a04-f137-4e93-a7a1-899dbb51c074" + "guid": "0da19012-02e9-4abd-b99b-dbac00c1d724" } } } @@ -32081,7 +32105,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "de638419-50eb-45d1-b616-42857de01f17" + "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" } } } @@ -32109,7 +32133,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "de638419-50eb-45d1-b616-42857de01f17" + "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" } } } @@ -32137,7 +32161,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "de638419-50eb-45d1-b616-42857de01f17" + "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" } } } @@ -32165,7 +32189,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "de638419-50eb-45d1-b616-42857de01f17" + "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" } } } @@ -32187,7 +32211,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "32f33e6d-de0a-43a2-8c52-9eabdf7df016" + "guid": "1c018c8f-7c36-4375-8071-46b2f4a1df23" } }, "application/json": { @@ -32201,7 +32225,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "32f33e6d-de0a-43a2-8c52-9eabdf7df016" + "guid": "1c018c8f-7c36-4375-8071-46b2f4a1df23" } }, "text/json": { @@ -32215,7 +32239,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "32f33e6d-de0a-43a2-8c52-9eabdf7df016" + "guid": "1c018c8f-7c36-4375-8071-46b2f4a1df23" } } } @@ -32433,7 +32457,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "c337ddcc-eeb3-4fd0-8d7e-10f2462c59ea" + "guid": "147fff5d-c87b-4522-8ba2-d259c2fbe89b" } }, "application/json": { @@ -32447,7 +32471,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "c337ddcc-eeb3-4fd0-8d7e-10f2462c59ea" + "guid": "147fff5d-c87b-4522-8ba2-d259c2fbe89b" } }, "text/json": { @@ -32461,7 +32485,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "c337ddcc-eeb3-4fd0-8d7e-10f2462c59ea" + "guid": "147fff5d-c87b-4522-8ba2-d259c2fbe89b" } } } @@ -32604,7 +32628,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bfa8682-0b7e-4047-ae87-c86c72487de5" + "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" } }, "Example 3": { @@ -32639,7 +32663,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bfa8682-0b7e-4047-ae87-c86c72487de5" + "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" } }, "Example 3": { @@ -32674,7 +32698,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bfa8682-0b7e-4047-ae87-c86c72487de5" + "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" } }, "Example 3": { @@ -32709,7 +32733,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bfa8682-0b7e-4047-ae87-c86c72487de5" + "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" } }, "Example 3": { @@ -33021,7 +33045,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f798aaa-53f2-4ff8-ad0d-344d943d15a2" + "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" } }, "Example 2": { @@ -33047,7 +33071,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f798aaa-53f2-4ff8-ad0d-344d943d15a2" + "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" } }, "Example 2": { @@ -33073,7 +33097,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f798aaa-53f2-4ff8-ad0d-344d943d15a2" + "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" } }, "Example 2": { @@ -33099,7 +33123,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f798aaa-53f2-4ff8-ad0d-344d943d15a2" + "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" } }, "Example 2": { @@ -33737,7 +33761,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": "f87488b2-3876-44a7-a234-3e7e9c522f1d" + "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" } } } @@ -33758,7 +33782,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": "f87488b2-3876-44a7-a234-3e7e9c522f1d" + "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" } } } @@ -33779,7 +33803,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": "f87488b2-3876-44a7-a234-3e7e9c522f1d" + "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" } } } @@ -33800,7 +33824,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": "f87488b2-3876-44a7-a234-3e7e9c522f1d" + "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" } } } @@ -34269,7 +34293,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "886dd21b-709c-4ea0-8a53-d6769163095f" + "guid": "61c334f7-fc57-4a17-b3dd-32dae4a77502" } }, "application/json": { @@ -34283,7 +34307,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "886dd21b-709c-4ea0-8a53-d6769163095f" + "guid": "61c334f7-fc57-4a17-b3dd-32dae4a77502" } }, "text/json": { @@ -34297,7 +34321,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "886dd21b-709c-4ea0-8a53-d6769163095f" + "guid": "61c334f7-fc57-4a17-b3dd-32dae4a77502" } } } @@ -34461,7 +34485,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "dd346c6d-c745-4624-b611-6ad190fe1ad6" + "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" } } } @@ -34489,7 +34513,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "dd346c6d-c745-4624-b611-6ad190fe1ad6" + "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" } } } @@ -34517,7 +34541,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "dd346c6d-c745-4624-b611-6ad190fe1ad6" + "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" } } } @@ -34545,7 +34569,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "dd346c6d-c745-4624-b611-6ad190fe1ad6" + "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" } } } @@ -34567,7 +34591,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "e94a5ed8-4fbc-4b62-ba73-5fc22b25b86d" + "guid": "fd9c49ce-74fd-4d80-b21d-8304a56a1e75" } }, "application/json": { @@ -34581,7 +34605,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "e94a5ed8-4fbc-4b62-ba73-5fc22b25b86d" + "guid": "fd9c49ce-74fd-4d80-b21d-8304a56a1e75" } }, "text/json": { @@ -34595,7 +34619,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "e94a5ed8-4fbc-4b62-ba73-5fc22b25b86d" + "guid": "fd9c49ce-74fd-4d80-b21d-8304a56a1e75" } } } @@ -34813,7 +34837,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0f0f9e06-59e2-4104-8a21-95b8b22e6591" + "guid": "1d83e32f-1502-4577-860f-6605451f01fb" } }, "application/json": { @@ -34827,7 +34851,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0f0f9e06-59e2-4104-8a21-95b8b22e6591" + "guid": "1d83e32f-1502-4577-860f-6605451f01fb" } }, "text/json": { @@ -34841,7 +34865,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0f0f9e06-59e2-4104-8a21-95b8b22e6591" + "guid": "1d83e32f-1502-4577-860f-6605451f01fb" } } } @@ -34892,7 +34916,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "a1484326-57d3-4e3c-9fb1-e4602e66ffa2" + "guid": "27be2288-3566-4213-af32-644c1cddb203" } ] } @@ -34910,7 +34934,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "a1484326-57d3-4e3c-9fb1-e4602e66ffa2" + "guid": "27be2288-3566-4213-af32-644c1cddb203" } ] } @@ -34928,7 +34952,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "a1484326-57d3-4e3c-9fb1-e4602e66ffa2" + "guid": "27be2288-3566-4213-af32-644c1cddb203" } ] } @@ -35158,7 +35182,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "8b160d26-dfd1-4d4c-9e08-03a5824baced" + "guid": "af34fa44-cbbc-481b-959e-28e085b8736c" } }, "application/json": { @@ -35168,7 +35192,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "8b160d26-dfd1-4d4c-9e08-03a5824baced" + "guid": "af34fa44-cbbc-481b-959e-28e085b8736c" } }, "text/json": { @@ -35178,7 +35202,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "8b160d26-dfd1-4d4c-9e08-03a5824baced" + "guid": "af34fa44-cbbc-481b-959e-28e085b8736c" } } } @@ -35231,7 +35255,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": "eb188644-9283-4681-955d-01ff34b18316" + "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" } } } @@ -35252,7 +35276,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": "eb188644-9283-4681-955d-01ff34b18316" + "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" } } } @@ -35273,7 +35297,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": "eb188644-9283-4681-955d-01ff34b18316" + "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" } } } @@ -35294,7 +35318,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": "eb188644-9283-4681-955d-01ff34b18316" + "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" } } } @@ -35422,7 +35446,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "f504e3ba-1b05-46a7-9b93-80e2e9e84d6a" + "guid": "6dcb057d-6cbe-4ad3-bb1a-c5e42b476bf6" } ] } @@ -35436,7 +35460,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "f504e3ba-1b05-46a7-9b93-80e2e9e84d6a" + "guid": "6dcb057d-6cbe-4ad3-bb1a-c5e42b476bf6" } ] } @@ -35450,7 +35474,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "f504e3ba-1b05-46a7-9b93-80e2e9e84d6a" + "guid": "6dcb057d-6cbe-4ad3-bb1a-c5e42b476bf6" } ] } @@ -35632,11 +35656,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "0b342157-946d-4b86-beb0-86e27643a451" + "guid": "35b6529c-6c26-40d1-99e9-6b21e68369a1" }, { "name": "home-page-2.html", - "guid": "412ae9b0-149b-446b-9768-48acc72d4d74" + "guid": "e58f25c9-49f2-4039-b750-198526f54a19" } ] } @@ -35649,11 +35673,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "0b342157-946d-4b86-beb0-86e27643a451" + "guid": "35b6529c-6c26-40d1-99e9-6b21e68369a1" }, { "name": "home-page-2.html", - "guid": "412ae9b0-149b-446b-9768-48acc72d4d74" + "guid": "e58f25c9-49f2-4039-b750-198526f54a19" } ] } @@ -35666,11 +35690,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "0b342157-946d-4b86-beb0-86e27643a451" + "guid": "35b6529c-6c26-40d1-99e9-6b21e68369a1" }, { "name": "home-page-2.html", - "guid": "412ae9b0-149b-446b-9768-48acc72d4d74" + "guid": "e58f25c9-49f2-4039-b750-198526f54a19" } ] } @@ -35748,7 +35772,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "190978dd-d45f-434a-aa78-ce997c1a7511" + "guid": "149fef9b-ef9b-4cd9-b73e-7c21a2f61c4e" } }, "application/json": { @@ -35762,7 +35786,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "190978dd-d45f-434a-aa78-ce997c1a7511" + "guid": "149fef9b-ef9b-4cd9-b73e-7c21a2f61c4e" } }, "text/json": { @@ -35776,7 +35800,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "190978dd-d45f-434a-aa78-ce997c1a7511" + "guid": "149fef9b-ef9b-4cd9-b73e-7c21a2f61c4e" } } } @@ -35843,7 +35867,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "77b75e3f-beb8-44a8-abdb-460b8c7bdfba" + "guid": "45d5d797-3332-4a0c-ad63-85498149c6ff" } }, "application/json": { @@ -35857,7 +35881,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "77b75e3f-beb8-44a8-abdb-460b8c7bdfba" + "guid": "45d5d797-3332-4a0c-ad63-85498149c6ff" } }, "text/json": { @@ -35871,7 +35895,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "77b75e3f-beb8-44a8-abdb-460b8c7bdfba" + "guid": "45d5d797-3332-4a0c-ad63-85498149c6ff" } } } @@ -35940,7 +35964,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": "142e55d6-5b48-40f0-a93f-d4cb7efd37ce" + "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" } } } @@ -35968,7 +35992,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": "142e55d6-5b48-40f0-a93f-d4cb7efd37ce" + "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" } } } @@ -35996,7 +36020,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": "142e55d6-5b48-40f0-a93f-d4cb7efd37ce" + "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" } } } @@ -36024,7 +36048,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": "142e55d6-5b48-40f0-a93f-d4cb7efd37ce" + "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" } } } @@ -36046,7 +36070,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "70918989-0691-42c6-ba8d-483459e8cd29" + "guid": "d7dded57-1ddb-4b23-83bf-70f973592501" } }, "application/json": { @@ -36060,7 +36084,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "70918989-0691-42c6-ba8d-483459e8cd29" + "guid": "d7dded57-1ddb-4b23-83bf-70f973592501" } }, "text/json": { @@ -36074,7 +36098,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "70918989-0691-42c6-ba8d-483459e8cd29" + "guid": "d7dded57-1ddb-4b23-83bf-70f973592501" } } } @@ -36292,7 +36316,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "db1bf1d6-f098-4e13-9886-826dbd9ed53e" + "guid": "4cfecb9b-509f-41ea-a96b-bf1fab54e1dd" } }, "application/json": { @@ -36306,7 +36330,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "db1bf1d6-f098-4e13-9886-826dbd9ed53e" + "guid": "4cfecb9b-509f-41ea-a96b-bf1fab54e1dd" } }, "text/json": { @@ -36320,7 +36344,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "db1bf1d6-f098-4e13-9886-826dbd9ed53e" + "guid": "4cfecb9b-509f-41ea-a96b-bf1fab54e1dd" } } } @@ -36452,9 +36476,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "728c02bf-28c7-43ae-a6a7-753bf727fcfe", + "underlyingEntityGuid": "813fa46f-0cff-4935-829a-ce5d4da9c45f", "name": "Price", - "guid": "5939c69f-1c8d-4c97-936c-fa1a5b3dcacd" + "guid": "1371af95-57c1-4237-9cfe-08e397b1eaab" }, { "itemType": "attribute", @@ -36462,9 +36486,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "cc388de5-fcf2-4695-bdbe-4df0862d8ea4", + "underlyingEntityGuid": "e4c1b992-7b69-42e7-92ff-919f8fb60754", "name": "Density", - "guid": "1b9d827d-257d-4ddd-985c-0b656b65f994" + "guid": "3745f362-4098-4e7b-b0aa-6bcda8f29727" } ], "displayNames": { @@ -36483,9 +36507,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "6ca1df45-5891-4d75-9527-10741ca42e35", + "underlyingEntityGuid": "3a41407e-4d06-4c6c-a094-12565af66741", "name": "Young's modulus", - "guid": "454db0a4-9a26-48cf-a8ff-eb26354a5068" + "guid": "dd0e1712-7b07-4a6e-96c2-9408136fb1ff" }, { "itemType": "attribute", @@ -36493,9 +36517,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "bc86c7d5-9992-436e-821b-4b0786e92d25", + "underlyingEntityGuid": "9264656a-bf69-49cd-92c1-1a972c78a5da", "name": "Tensile strength", - "guid": "a3948c50-91e4-487d-b5c0-3bbbe2325ad5" + "guid": "16407b4b-4cea-4959-8a86-4608ddedfc66" }, { "itemType": "attribute", @@ -36503,9 +36527,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "6729f11b-4088-48c9-bb0b-5f23be5ed26b", + "underlyingEntityGuid": "c37187f7-abac-4ac9-8f4c-b38fd005b063", "name": "Shape factor", - "guid": "714ca690-e7f9-47cb-9643-df4b90ece0a7" + "guid": "36bfd116-2502-4a59-bc31-0a4f332e5a7d" } ], "displayNames": { @@ -36580,7 +36604,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": "864d137b-e374-4a39-926f-283737a49f30" + "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" } } } @@ -36602,7 +36626,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": "864d137b-e374-4a39-926f-283737a49f30" + "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" } } } @@ -36624,7 +36648,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": "864d137b-e374-4a39-926f-283737a49f30" + "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" } } } @@ -36646,7 +36670,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": "864d137b-e374-4a39-926f-283737a49f30" + "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" } } } @@ -36665,7 +36689,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "ede48599-6824-4b4d-a638-a3653575bd8b" + "guid": "1c1d19d1-4990-46aa-87c2-24d5cbd1d9cd" } } } @@ -37308,7 +37332,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "1faacd32-4991-45b4-a713-9bdef2e56bde" + "guid": "df3b9e7a-7abe-4616-a3b0-546e76c977a6" } }, "Example 2": { @@ -37323,9 +37347,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "3c7dc5d2-5d32-4870-8c1f-4dc6b462f100", + "underlyingEntityGuid": "942478c7-8363-4fe5-a75e-08bc2cf79bdf", "name": "Form", - "guid": "67e03dc1-bd78-47de-a83b-c736302dcffd" + "guid": "04e7c7ec-3770-445d-98da-da2bb1be35c0" }, { "itemType": "attribute", @@ -37338,34 +37362,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "53a497d3-06fd-47df-b0a8-347578a84887", + "underlyingEntityGuid": "17b3998f-856f-42ca-b5a5-d575195bfd5a", "name": "Sources", - "guid": "de30b1ec-24dc-4769-8237-3c41d45cdb30" + "guid": "f9470477-48fd-4cf0-b01b-97f4ac255af6" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "b73326c9-6545-4fef-9199-bd26b32ba977", + "underlyingEntityGuid": "8bf679b5-b37f-4430-830b-f390997d888e", "name": "Notes", - "guid": "9b64e4f8-c26a-445c-ad41-82167ffe7c71" + "guid": "00047d10-207e-4595-982e-7b9bfd1cdee8" } ], - "underlyingEntityGuid": "a091709c-3933-42ba-9f27-f3d86117ca4e", + "underlyingEntityGuid": "b7d6b0d9-ae93-46be-b13d-9ec5f8513f8b", "name": "Chemical resistance", - "guid": "12aabe68-6d84-4d4d-94ce-18961edeb256" + "guid": "71a4ecaf-68bf-4c19-af56-22ead2146c38" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "5ca73662-95e1-445a-92b7-3aef96692c67", - "targetDatabaseVersion": "b46750ab-cd24-4f52-9507-52e613b62a80", - "targetTable": "bb050683-76af-46a8-897c-63d6ff715067", + "targetDatabase": "a0b08141-38e8-45da-b579-cf5310f69aaa", + "targetDatabaseVersion": "f603d3ea-abda-428b-a7c2-338a378c45b5", + "targetTable": "f4279488-1bcd-4465-991b-fc5aeef2ec1c", "forwards": true, - "underlyingEntityGuid": "3057d887-6437-4001-b125-a007fa34c774", + "underlyingEntityGuid": "7e16c8c1-9424-481b-8a10-8cbed6038593", "name": "Material Pedigree", - "guid": "90567da9-eac3-4240-a667-e754b50d92b6" + "guid": "0ab01eec-0dff-40c5-9e88-74ae0eaccec2" }, { "itemType": "attribute", @@ -37376,42 +37400,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "32537864-48ae-4d16-b580-1f26abb40687", + "tabularColumnGuid": "ba731f57-6b4e-4896-88aa-a591379b1444", "name": "Offset Yield Stress", - "guid": "3053e18e-d7a5-4c99-9c5e-6bf274c80fb9" + "guid": "2a6eb9d3-0986-4b75-af4f-e24aa160d5d1" }, { "columnType": "localShortText", - "tabularColumnGuid": "6a6c4dd1-fe8d-46c0-ad05-18d9fcda3c76", + "tabularColumnGuid": "89a48ffb-3211-43e5-9fc4-a588a6157805", "name": "Young's Modulus Notes", - "guid": "fb6bc17e-eb4c-4380-8541-95611183a264" + "guid": "4e2f7312-7751-446f-a638-330813622781" } ], - "underlyingEntityGuid": "ff772115-9fb7-4d5c-b728-0b4aec4d6efb", + "underlyingEntityGuid": "699600e4-85be-4c14-b66b-06937488dd7f", "name": "Reference Characteristics", - "guid": "9580050b-2107-4ee8-9e94-13d51183c176" + "guid": "587eaece-b53b-42cd-9b8e-f29b2f6ba41e" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "5ca73662-95e1-445a-92b7-3aef96692c67", - "targetDatabaseVersion": "b46750ab-cd24-4f52-9507-52e613b62a80", - "targetTable": "62d3e06c-3d1f-4b23-b9b3-56ec0516395b", + "targetDatabase": "a0b08141-38e8-45da-b579-cf5310f69aaa", + "targetDatabaseVersion": "f603d3ea-abda-428b-a7c2-338a378c45b5", + "targetTable": "7c4d0cf8-dc11-4b04-b538-644d8ec522f2", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "5ca73662-95e1-445a-92b7-3aef96692c67", - "targetDatabaseVersion": "b46750ab-cd24-4f52-9507-52e613b62a80", - "targetTable": "de8a43b0-dcf6-40f6-a639-ddcc6c9d7252", + "targetDatabase": "a0b08141-38e8-45da-b579-cf5310f69aaa", + "targetDatabaseVersion": "f603d3ea-abda-428b-a7c2-338a378c45b5", + "targetTable": "c6450bc4-62a2-4af6-9840-f6d7733f1db9", "forwards": false, - "underlyingEntityGuid": "9451e59f-b785-4eb0-8d6c-ca073995e482", + "underlyingEntityGuid": "0ab15b31-cb0f-41ac-a886-aae3e3c81d9c", "name": "Pedigree information", - "guid": "440c852c-076c-4f0b-812c-e6fa31cbaff4" + "guid": "79b51e3e-3a1d-4306-8db4-a7dc0b669403" }, - "underlyingEntityGuid": "d912e284-f2ce-4fe2-bff4-2ee2bde25dfe", + "underlyingEntityGuid": "1a31f221-d81b-42ef-8509-8f2ec4a6674e", "name": "To Pedigree from Producers", - "guid": "52afe96d-9ab3-4e30-9f0c-2914edc7c503" + "guid": "c5621380-3225-43a7-b7b1-d8c21ccf77b1" } ], "displayNames": { @@ -37419,7 +37443,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "1cf2c619-a204-4744-8b2f-2359068778b7" + "guid": "e9bbfeea-80ad-4741-8cf3-83cc2aae9dd2" } } } @@ -37609,9 +37633,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": "b07a41df-a075-4aae-a81f-5e80dcd9919c", - "sourceTableGuid": "777d0658-2799-4b48-8816-629c984ed3d9", - "linkGroupGuid": "0fc43682-7ec7-4314-99ab-e8dd4d417582" + "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", + "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", + "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" } }, "Example 8": { @@ -37623,13 +37647,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "1a6b2dc8-1103-4aba-89b2-12d2b1080a5e", - "tabularAttributeGuid": "fff0227a-4b3e-4958-9e32-77ee8944dcd2" + "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", + "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" }, { "forwards": false, - "sourceDatabaseVersionGuid": "41475608-e80c-4fbc-a064-21d0b5bfa5fc", - "tabularAttributeGuid": "cb6d98cf-350d-4ff5-b72d-e5dce0eb725c" + "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", + "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" } ] } @@ -37709,9 +37733,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": "b07a41df-a075-4aae-a81f-5e80dcd9919c", - "sourceTableGuid": "777d0658-2799-4b48-8816-629c984ed3d9", - "linkGroupGuid": "0fc43682-7ec7-4314-99ab-e8dd4d417582" + "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", + "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", + "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" } }, "Example 8": { @@ -37723,13 +37747,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "1a6b2dc8-1103-4aba-89b2-12d2b1080a5e", - "tabularAttributeGuid": "fff0227a-4b3e-4958-9e32-77ee8944dcd2" + "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", + "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" }, { "forwards": false, - "sourceDatabaseVersionGuid": "41475608-e80c-4fbc-a064-21d0b5bfa5fc", - "tabularAttributeGuid": "cb6d98cf-350d-4ff5-b72d-e5dce0eb725c" + "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", + "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" } ] } @@ -37809,9 +37833,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": "b07a41df-a075-4aae-a81f-5e80dcd9919c", - "sourceTableGuid": "777d0658-2799-4b48-8816-629c984ed3d9", - "linkGroupGuid": "0fc43682-7ec7-4314-99ab-e8dd4d417582" + "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", + "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", + "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" } }, "Example 8": { @@ -37823,13 +37847,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "1a6b2dc8-1103-4aba-89b2-12d2b1080a5e", - "tabularAttributeGuid": "fff0227a-4b3e-4958-9e32-77ee8944dcd2" + "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", + "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" }, { "forwards": false, - "sourceDatabaseVersionGuid": "41475608-e80c-4fbc-a064-21d0b5bfa5fc", - "tabularAttributeGuid": "cb6d98cf-350d-4ff5-b72d-e5dce0eb725c" + "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", + "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" } ] } @@ -37909,9 +37933,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": "b07a41df-a075-4aae-a81f-5e80dcd9919c", - "sourceTableGuid": "777d0658-2799-4b48-8816-629c984ed3d9", - "linkGroupGuid": "0fc43682-7ec7-4314-99ab-e8dd4d417582" + "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", + "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", + "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" } }, "Example 8": { @@ -37923,13 +37947,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "1a6b2dc8-1103-4aba-89b2-12d2b1080a5e", - "tabularAttributeGuid": "fff0227a-4b3e-4958-9e32-77ee8944dcd2" + "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", + "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" }, { "forwards": false, - "sourceDatabaseVersionGuid": "41475608-e80c-4fbc-a064-21d0b5bfa5fc", - "tabularAttributeGuid": "cb6d98cf-350d-4ff5-b72d-e5dce0eb725c" + "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", + "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" } ] } @@ -37957,7 +37981,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "4f2f03a0-da8e-4f3b-8644-07d62abd5030" + "guid": "bc4cf756-5af8-4400-9671-92931c9b65cf" } }, "Example 2": { @@ -37977,7 +38001,7 @@ } ], "tabularColumnGuids": null, - "guid": "1fd9b7bc-6f42-4e0f-8731-1da393ddba63" + "guid": "99ffab6b-943e-48b1-96ed-0796581fd7f2" } }, "Example 3": { @@ -38021,9 +38045,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": "27824c23-7948-4869-9e06-3e3770d0d66d", - "sourceTableGuid": "7ea5c13c-5c0b-4eb4-aba1-0162446a3d99", - "linkGroupGuid": "dc292dac-5620-4eb1-a323-a6ca21a85bd9", + "sourceDatabaseGuid": "5fce2114-9c22-4a1f-93f9-c15a90d8957e", + "sourceTableGuid": "3311c6df-93ab-433c-8dfb-83431444ca3c", + "linkGroupGuid": "c3941b74-561e-4135-a9dc-c0cd2a2076e0", "guid": null } }, @@ -38037,12 +38061,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "57dc5878-0956-4d0d-b14c-fe98e5c6f389" + "tabularAttributeGuid": "b53932d9-8ff6-4a2d-b8dc-01a5e9aa99c4" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "3f491952-f196-420b-bc60-1d3dfa06e870" + "tabularAttributeGuid": "c9bb2075-46ab-4877-be00-5ad9d13d4a82" } ], "guid": null @@ -38275,7 +38299,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": "1ad62479-5415-41f5-979d-e947440a4ce5" + "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" } }, "Example 3": { @@ -38308,7 +38332,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": "1ad62479-5415-41f5-979d-e947440a4ce5" + "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" } }, "Example 3": { @@ -38341,7 +38365,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": "1ad62479-5415-41f5-979d-e947440a4ce5" + "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" } }, "Example 3": { @@ -38374,7 +38398,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": "1ad62479-5415-41f5-979d-e947440a4ce5" + "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" } }, "Example 3": { @@ -38404,7 +38428,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "ea6c7af7-50bd-4264-a21c-fdc60eb8491b" + "guid": "26d676cd-29e2-4bec-bdd5-0c1c1782584c" } } } @@ -38543,9 +38567,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "27bc72fb-f31b-4b4e-a332-a86bbec95336", + "underlyingEntityGuid": "2142e27d-ba43-460c-a0db-cccf2af9aabc", "name": "Price", - "guid": "2f45e188-1183-4c08-a744-13f6b17bb1be" + "guid": "df3b5f62-c685-4b62-adde-a31abae993c6" }, { "itemType": "attribute", @@ -38553,9 +38577,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "5552c47e-5418-4237-b705-e5c355959da5", + "underlyingEntityGuid": "15997690-41d3-4c43-9bac-7f3e7ae262c5", "name": "Density", - "guid": "441493a6-bae6-4212-9279-2ca52cdc8108" + "guid": "a472edb3-0baa-4487-af7e-94c6c7ad83cc" } ], "displayNames": { @@ -38574,9 +38598,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "331f40a4-7540-4eab-818b-8534df894b4d", + "underlyingEntityGuid": "b775130e-014f-4492-a500-96ba0e9d23ac", "name": "Young's modulus", - "guid": "806671da-995a-4ce8-a5ad-db15f1fbb7d0" + "guid": "39d5e620-87e5-4589-b179-f4db723c7c2e" }, { "itemType": "attribute", @@ -38584,9 +38608,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "38e04175-3179-4d99-8165-24aa76b0f608", + "underlyingEntityGuid": "9c34c8e7-3803-4d2d-be20-933fab5a29a2", "name": "Tensile strength", - "guid": "d4d2f76d-4698-4034-98f4-b5299c687896" + "guid": "4c704c95-742f-4df7-971c-4a02c90e8946" }, { "itemType": "attribute", @@ -38594,9 +38618,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "4e00cdbd-62f6-43a4-a848-01a4203b6926", + "underlyingEntityGuid": "35c5084e-eeeb-41c0-8768-061864d27a2c", "name": "Shape factor", - "guid": "10eb1161-0a89-4ae3-bcc3-eec580055cb7" + "guid": "b6c7603a-a929-4385-8270-479e1b504cd0" } ], "displayNames": { @@ -38675,7 +38699,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "2887b6bc-325b-48cc-921a-c9dac1176865" + "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" } }, "Example 2": { @@ -38708,7 +38732,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "2887b6bc-325b-48cc-921a-c9dac1176865" + "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" } }, "Example 2": { @@ -38741,7 +38765,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "2887b6bc-325b-48cc-921a-c9dac1176865" + "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" } }, "Example 2": { @@ -38774,7 +38798,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "2887b6bc-325b-48cc-921a-c9dac1176865" + "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" } }, "Example 2": { @@ -38807,7 +38831,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "7e5f7467-12fe-498f-a787-30f0122dc29b" + "guid": "2cedb3f4-502a-496b-98e4-c0f5ef3b2f90" } } } @@ -39104,7 +39128,7 @@ { "type": "discrete", "name": "Red", - "guid": "816044fd-e3fe-4641-ba8a-9b77a597eaff" + "guid": "ff495d8c-b879-44b7-b506-e14549955c46" }, { "type": "discrete", @@ -39114,7 +39138,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "960eb1a1-8ece-4cc9-bbbf-ec47e6e169cc" + "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" } }, "Example 3": { @@ -39242,7 +39266,7 @@ { "type": "discrete", "name": "Red", - "guid": "816044fd-e3fe-4641-ba8a-9b77a597eaff" + "guid": "ff495d8c-b879-44b7-b506-e14549955c46" }, { "type": "discrete", @@ -39252,7 +39276,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "960eb1a1-8ece-4cc9-bbbf-ec47e6e169cc" + "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" } }, "Example 3": { @@ -39380,7 +39404,7 @@ { "type": "discrete", "name": "Red", - "guid": "816044fd-e3fe-4641-ba8a-9b77a597eaff" + "guid": "ff495d8c-b879-44b7-b506-e14549955c46" }, { "type": "discrete", @@ -39390,7 +39414,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "960eb1a1-8ece-4cc9-bbbf-ec47e6e169cc" + "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" } }, "Example 3": { @@ -39518,7 +39542,7 @@ { "type": "discrete", "name": "Red", - "guid": "816044fd-e3fe-4641-ba8a-9b77a597eaff" + "guid": "ff495d8c-b879-44b7-b506-e14549955c46" }, { "type": "discrete", @@ -39528,7 +39552,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "960eb1a1-8ece-4cc9-bbbf-ec47e6e169cc" + "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" } }, "Example 3": { @@ -39796,7 +39820,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "fb9d6ef9-993c-4eba-a45b-601bb0360bef" + "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" } }, "Example 2": { @@ -39807,7 +39831,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "4a14a518-7582-458e-9bc6-d5dd42fe210e" + "guid": "f2838392-782b-400f-85fa-eabf09f5504e" } }, "Example 3": { @@ -39815,7 +39839,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": "1e8b04eb-bdc8-49ef-b642-5ec427ef0880" + "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" } }, "Example 4": { @@ -39834,7 +39858,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20ff439c-7941-45e8-9902-e6602f6dd394" + "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" } }, "Example 6": { @@ -39874,7 +39898,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "fb9d6ef9-993c-4eba-a45b-601bb0360bef" + "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" } }, "Example 2": { @@ -39885,7 +39909,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "4a14a518-7582-458e-9bc6-d5dd42fe210e" + "guid": "f2838392-782b-400f-85fa-eabf09f5504e" } }, "Example 3": { @@ -39893,7 +39917,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": "1e8b04eb-bdc8-49ef-b642-5ec427ef0880" + "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" } }, "Example 4": { @@ -39912,7 +39936,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20ff439c-7941-45e8-9902-e6602f6dd394" + "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" } }, "Example 6": { @@ -39952,7 +39976,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "fb9d6ef9-993c-4eba-a45b-601bb0360bef" + "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" } }, "Example 2": { @@ -39963,7 +39987,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "4a14a518-7582-458e-9bc6-d5dd42fe210e" + "guid": "f2838392-782b-400f-85fa-eabf09f5504e" } }, "Example 3": { @@ -39971,7 +39995,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": "1e8b04eb-bdc8-49ef-b642-5ec427ef0880" + "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" } }, "Example 4": { @@ -39990,7 +40014,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20ff439c-7941-45e8-9902-e6602f6dd394" + "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" } }, "Example 6": { @@ -40030,7 +40054,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "fb9d6ef9-993c-4eba-a45b-601bb0360bef" + "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" } }, "Example 2": { @@ -40041,7 +40065,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "4a14a518-7582-458e-9bc6-d5dd42fe210e" + "guid": "f2838392-782b-400f-85fa-eabf09f5504e" } }, "Example 3": { @@ -40049,7 +40073,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": "1e8b04eb-bdc8-49ef-b642-5ec427ef0880" + "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" } }, "Example 4": { @@ -40068,7 +40092,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20ff439c-7941-45e8-9902-e6602f6dd394" + "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" } }, "Example 6": { @@ -40361,7 +40385,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "28c74c01-f45a-4705-bb61-845709c80721" + "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" } }, "Example 2": { @@ -40370,7 +40394,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "92711b97-dc73-4d17-a36e-0616e32edfe1" + "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" } }, "Example 3": { @@ -40378,7 +40402,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": "992af08c-db5d-4bd1-996c-a11617d1ca33" + "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" } } } @@ -40395,7 +40419,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "28c74c01-f45a-4705-bb61-845709c80721" + "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" } }, "Example 2": { @@ -40404,7 +40428,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "92711b97-dc73-4d17-a36e-0616e32edfe1" + "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" } }, "Example 3": { @@ -40412,7 +40436,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": "992af08c-db5d-4bd1-996c-a11617d1ca33" + "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" } } } @@ -40429,7 +40453,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "28c74c01-f45a-4705-bb61-845709c80721" + "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" } }, "Example 2": { @@ -40438,7 +40462,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "92711b97-dc73-4d17-a36e-0616e32edfe1" + "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" } }, "Example 3": { @@ -40446,7 +40470,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": "992af08c-db5d-4bd1-996c-a11617d1ca33" + "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" } } } @@ -40463,7 +40487,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "28c74c01-f45a-4705-bb61-845709c80721" + "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" } }, "Example 2": { @@ -40472,7 +40496,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "92711b97-dc73-4d17-a36e-0616e32edfe1" + "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" } }, "Example 3": { @@ -40480,7 +40504,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": "992af08c-db5d-4bd1-996c-a11617d1ca33" + "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" } } } @@ -41136,7 +41160,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": "0d03d9db-48a4-4660-9553-843038ee112c" + "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" } }, "Example 3": { @@ -41147,7 +41171,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "20f0c441-d0b1-4896-9f96-c04a0ebf80b1" + "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" } } } @@ -41169,7 +41193,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": "0d03d9db-48a4-4660-9553-843038ee112c" + "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" } }, "Example 3": { @@ -41180,7 +41204,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "20f0c441-d0b1-4896-9f96-c04a0ebf80b1" + "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" } } } @@ -41202,7 +41226,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": "0d03d9db-48a4-4660-9553-843038ee112c" + "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" } }, "Example 3": { @@ -41213,7 +41237,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "20f0c441-d0b1-4896-9f96-c04a0ebf80b1" + "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" } } } @@ -41235,7 +41259,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": "0d03d9db-48a4-4660-9553-843038ee112c" + "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" } }, "Example 3": { @@ -41246,7 +41270,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "20f0c441-d0b1-4896-9f96-c04a0ebf80b1" + "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" } } } @@ -41388,7 +41412,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": "51764805-433d-4e25-95d9-4f1cd63c0998" + "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" } }, "Example 2": { @@ -41408,7 +41432,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f6aef68e-8354-4027-9531-ae9716b5beb1", + "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41424,7 +41448,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": "51764805-433d-4e25-95d9-4f1cd63c0998" + "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" } }, "Example 2": { @@ -41444,7 +41468,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f6aef68e-8354-4027-9531-ae9716b5beb1", + "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41460,7 +41484,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": "51764805-433d-4e25-95d9-4f1cd63c0998" + "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" } }, "Example 2": { @@ -41480,7 +41504,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f6aef68e-8354-4027-9531-ae9716b5beb1", + "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41496,7 +41520,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": "51764805-433d-4e25-95d9-4f1cd63c0998" + "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" } }, "Example 2": { @@ -41516,7 +41540,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f6aef68e-8354-4027-9531-ae9716b5beb1", + "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41698,7 +41722,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "076c9d33-a0f1-499b-8470-003e40011d1a" + "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" } }, "Example 3": { @@ -41709,7 +41733,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "23f4e382-8ae8-4cb7-ad18-1d97c9fb4732" + "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" } } } @@ -41733,7 +41757,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "076c9d33-a0f1-499b-8470-003e40011d1a" + "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" } }, "Example 3": { @@ -41744,7 +41768,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "23f4e382-8ae8-4cb7-ad18-1d97c9fb4732" + "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" } } } @@ -41768,7 +41792,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "076c9d33-a0f1-499b-8470-003e40011d1a" + "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" } }, "Example 3": { @@ -41779,7 +41803,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "23f4e382-8ae8-4cb7-ad18-1d97c9fb4732" + "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" } } } @@ -41803,7 +41827,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "076c9d33-a0f1-499b-8470-003e40011d1a" + "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" } }, "Example 3": { @@ -41814,7 +41838,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "23f4e382-8ae8-4cb7-ad18-1d97c9fb4732" + "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" } } } @@ -41951,7 +41975,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75d016bf-2eae-4912-87e3-a5e7c1ef7fa8" + "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" } }, "Example 2": { @@ -41966,7 +41990,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": "f2594663-131d-4891-81ba-1347bdae661b" + "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" } } } @@ -41982,7 +42006,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75d016bf-2eae-4912-87e3-a5e7c1ef7fa8" + "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" } }, "Example 2": { @@ -41997,7 +42021,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": "f2594663-131d-4891-81ba-1347bdae661b" + "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" } } } @@ -42013,7 +42037,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75d016bf-2eae-4912-87e3-a5e7c1ef7fa8" + "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" } }, "Example 2": { @@ -42028,7 +42052,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": "f2594663-131d-4891-81ba-1347bdae661b" + "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" } } } @@ -42044,7 +42068,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75d016bf-2eae-4912-87e3-a5e7c1ef7fa8" + "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" } }, "Example 2": { @@ -42059,7 +42083,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": "f2594663-131d-4891-81ba-1347bdae661b" + "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" } } } @@ -42229,7 +42253,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "33213e94-fc46-40ad-942a-1d09beb03d53" + "guid": "f1f98fc0-f41f-4dfa-8353-e55ab955ba58" } ] } @@ -42299,7 +42323,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b1d0d8c2-89dd-44ab-99c0-f794adf7956e" + "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" } }, "Example 3": { @@ -42309,7 +42333,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "dd727b37-5554-451a-aba0-711f7868087b" + "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42322,12 +42346,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "b3e6a033-1b70-48b7-97f2-17b2f5ab56b9", - "tableGuid": "018d22f7-bc15-47cd-a2cf-586baf3c1627" + "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", + "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "e0a504d8-c7e8-4ed8-92e7-fb938f1b78a7" + "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" } }, "Example 5": { @@ -42374,7 +42398,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "db0c5b51-4686-45f6-a79b-e2d8c3da9d91" + "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" } } } @@ -42410,7 +42434,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b1d0d8c2-89dd-44ab-99c0-f794adf7956e" + "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" } }, "Example 3": { @@ -42420,7 +42444,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "dd727b37-5554-451a-aba0-711f7868087b" + "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42433,12 +42457,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "b3e6a033-1b70-48b7-97f2-17b2f5ab56b9", - "tableGuid": "018d22f7-bc15-47cd-a2cf-586baf3c1627" + "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", + "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "e0a504d8-c7e8-4ed8-92e7-fb938f1b78a7" + "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" } }, "Example 5": { @@ -42485,7 +42509,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "db0c5b51-4686-45f6-a79b-e2d8c3da9d91" + "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" } } } @@ -42521,7 +42545,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b1d0d8c2-89dd-44ab-99c0-f794adf7956e" + "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" } }, "Example 3": { @@ -42531,7 +42555,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "dd727b37-5554-451a-aba0-711f7868087b" + "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42544,12 +42568,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "b3e6a033-1b70-48b7-97f2-17b2f5ab56b9", - "tableGuid": "018d22f7-bc15-47cd-a2cf-586baf3c1627" + "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", + "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "e0a504d8-c7e8-4ed8-92e7-fb938f1b78a7" + "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" } }, "Example 5": { @@ -42596,7 +42620,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "db0c5b51-4686-45f6-a79b-e2d8c3da9d91" + "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" } } } @@ -42632,7 +42656,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "b1d0d8c2-89dd-44ab-99c0-f794adf7956e" + "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" } }, "Example 3": { @@ -42642,7 +42666,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "dd727b37-5554-451a-aba0-711f7868087b" + "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42655,12 +42679,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "b3e6a033-1b70-48b7-97f2-17b2f5ab56b9", - "tableGuid": "018d22f7-bc15-47cd-a2cf-586baf3c1627" + "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", + "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "e0a504d8-c7e8-4ed8-92e7-fb938f1b78a7" + "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" } }, "Example 5": { @@ -42707,7 +42731,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "db0c5b51-4686-45f6-a79b-e2d8c3da9d91" + "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" } } } @@ -42762,8 +42786,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "c1afbdae-52cc-4e55-bd54-54ee45e2bf7b", - "tableGuid": "4601a6fb-2434-468a-8b4f-80595e3f7bca" + "databaseGuid": "d939d7a2-b53c-4cc5-84eb-594891d8b25e", + "tableGuid": "6e6f9c3d-9c14-45c9-99c7-e1a1667b097a" } }, "identity": 1, @@ -42771,7 +42795,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "1b75beca-c550-4700-823c-c82a84d55f5b" + "guid": "0c7567ca-dd3f-4184-9cad-657a37620ff9" } }, "Example 6": { @@ -42962,8 +42986,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "31492232-5545-47bf-a93a-334b5f539e2c", - "tableGuid": "25cae6de-be04-4692-bafd-c1a65659d6d7" + "databaseGuid": "1a2bf1f6-94d1-494a-9a63-94fa262066de", + "tableGuid": "2447cd93-897e-434c-a23a-15d98bd99706" } }, "identity": 1, @@ -42971,7 +42995,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "1de1a0c0-36b8-4d6d-8dcd-91a392445dda" + "guid": "da2a0d8a-de7e-46ae-935c-2768fe50ca7d" } }, "Example 3": { @@ -43142,7 +43166,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": "84e7ea4d-1866-43cf-b4fb-67aea9d38d33" + "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" } }, "Example 2": { @@ -43162,7 +43186,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "06431901-448e-45d8-840c-3ad33549907b" + "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" } }, "Example 4": { @@ -43173,7 +43197,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dd910c9f-ae07-4e0e-82a3-2b8ca97bf473" + "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" } }, "Example 5": { @@ -43195,7 +43219,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "0508eca8-2277-42db-a81e-402a63c0a2c9" + "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" } } } @@ -43210,7 +43234,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": "84e7ea4d-1866-43cf-b4fb-67aea9d38d33" + "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" } }, "Example 2": { @@ -43230,7 +43254,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "06431901-448e-45d8-840c-3ad33549907b" + "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" } }, "Example 4": { @@ -43241,7 +43265,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dd910c9f-ae07-4e0e-82a3-2b8ca97bf473" + "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" } }, "Example 5": { @@ -43263,7 +43287,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "0508eca8-2277-42db-a81e-402a63c0a2c9" + "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" } } } @@ -43278,7 +43302,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": "84e7ea4d-1866-43cf-b4fb-67aea9d38d33" + "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" } }, "Example 2": { @@ -43298,7 +43322,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "06431901-448e-45d8-840c-3ad33549907b" + "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" } }, "Example 4": { @@ -43309,7 +43333,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dd910c9f-ae07-4e0e-82a3-2b8ca97bf473" + "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" } }, "Example 5": { @@ -43331,7 +43355,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "0508eca8-2277-42db-a81e-402a63c0a2c9" + "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" } } } @@ -43346,7 +43370,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": "84e7ea4d-1866-43cf-b4fb-67aea9d38d33" + "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" } }, "Example 2": { @@ -43366,7 +43390,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "06431901-448e-45d8-840c-3ad33549907b" + "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" } }, "Example 4": { @@ -43377,7 +43401,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "dd910c9f-ae07-4e0e-82a3-2b8ca97bf473" + "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" } }, "Example 5": { @@ -43399,7 +43423,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "0508eca8-2277-42db-a81e-402a63c0a2c9" + "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" } } } @@ -43454,8 +43478,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "a715c871-afb6-4b7f-a5ec-6d111061d688", - "tableGuid": "2fe52edb-1af3-4962-9a87-296ded13f9e6" + "databaseGuid": "8c54c25a-f28a-4ced-bebf-8089c26fbf4e", + "tableGuid": "1139114d-2e41-4f37-a31b-e56f3ddb8d32" } }, "identity": 1, @@ -43463,7 +43487,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "161c8042-04e6-4a84-8edc-76a894933257" + "guid": "f3d1aee8-4c15-4d06-91ab-7a81b58ecbad" } }, "Example 9": { @@ -43614,7 +43638,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": "c65b1cf6-73f5-4ebe-abe5-3a3f6515fd1e" + "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" } } } @@ -43638,7 +43662,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": "c65b1cf6-73f5-4ebe-abe5-3a3f6515fd1e" + "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" } } } @@ -43662,7 +43686,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": "c65b1cf6-73f5-4ebe-abe5-3a3f6515fd1e" + "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" } } } @@ -43686,7 +43710,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": "c65b1cf6-73f5-4ebe-abe5-3a3f6515fd1e" + "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" } } } @@ -43811,7 +43835,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c2ed94c5-dd00-427a-9022-9854afcc386b" + "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" } }, "Example 2": { @@ -43841,7 +43865,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c2ed94c5-dd00-427a-9022-9854afcc386b" + "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" } }, "Example 2": { @@ -43871,7 +43895,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c2ed94c5-dd00-427a-9022-9854afcc386b" + "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" } }, "Example 2": { @@ -43901,7 +43925,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c2ed94c5-dd00-427a-9022-9854afcc386b" + "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" } }, "Example 2": { @@ -44093,7 +44117,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "99038dbd-7f8a-4922-b1b3-4fd9418f43c5" + "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" } ], "name": "Unification" @@ -44174,7 +44198,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "99038dbd-7f8a-4922-b1b3-4fd9418f43c5" + "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" } ], "name": "Unification" @@ -44255,7 +44279,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "99038dbd-7f8a-4922-b1b3-4fd9418f43c5" + "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" } ], "name": "Unification" @@ -44336,7 +44360,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "99038dbd-7f8a-4922-b1b3-4fd9418f43c5" + "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" } ], "name": "Unification" @@ -44474,7 +44498,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": "b0fb1980-764c-43ea-9957-eda8325d1d30" + "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" } }, "Example 3": { @@ -44524,7 +44548,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": "b0fb1980-764c-43ea-9957-eda8325d1d30" + "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" } }, "Example 3": { @@ -44574,7 +44598,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": "b0fb1980-764c-43ea-9957-eda8325d1d30" + "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" } }, "Example 3": { @@ -44624,7 +44648,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": "b0fb1980-764c-43ea-9957-eda8325d1d30" + "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" } }, "Example 3": { @@ -44855,7 +44879,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": "c15192af-c292-4fae-ad32-4e3370906923" + "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" } }, "Example 3": { @@ -44887,7 +44911,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": "c15192af-c292-4fae-ad32-4e3370906923" + "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" } }, "Example 3": { @@ -44919,7 +44943,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": "c15192af-c292-4fae-ad32-4e3370906923" + "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" } }, "Example 3": { @@ -44951,7 +44975,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": "c15192af-c292-4fae-ad32-4e3370906923" + "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" } }, "Example 3": { @@ -45140,7 +45164,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "76b9a2a4-6a87-4bb7-bac8-712752ccd6ce" + "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" } }, "Example 2": { @@ -45181,7 +45205,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "76b9a2a4-6a87-4bb7-bac8-712752ccd6ce" + "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" } }, "Example 2": { @@ -45222,7 +45246,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "76b9a2a4-6a87-4bb7-bac8-712752ccd6ce" + "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" } }, "Example 2": { @@ -45263,7 +45287,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "76b9a2a4-6a87-4bb7-bac8-712752ccd6ce" + "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" } }, "Example 2": { @@ -45765,7 +45789,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "b67a924b-d2b8-404d-b909-7cd284bf93c6" + "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" } }, "Example 3": { @@ -45800,7 +45824,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "b67a924b-d2b8-404d-b909-7cd284bf93c6" + "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" } }, "Example 3": { @@ -45835,7 +45859,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "b67a924b-d2b8-404d-b909-7cd284bf93c6" + "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" } }, "Example 3": { @@ -45870,7 +45894,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "b67a924b-d2b8-404d-b909-7cd284bf93c6" + "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" } }, "Example 3": { @@ -46102,7 +46126,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "ebad60d6-ccac-4554-9bf3-5027e89064be" + "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" } }, "Example 2": { @@ -46163,7 +46187,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "ebad60d6-ccac-4554-9bf3-5027e89064be" + "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" } }, "Example 2": { @@ -46224,7 +46248,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "ebad60d6-ccac-4554-9bf3-5027e89064be" + "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" } }, "Example 2": { @@ -46285,7 +46309,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "ebad60d6-ccac-4554-9bf3-5027e89064be" + "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" } }, "Example 2": { @@ -46771,9 +46795,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "c4562578-34bf-4657-bdca-c9d835da7d7d", - "databaseVersionGuid": "2e3dc1cc-0c11-4975-8e38-4d37a4be985d", - "tableGuid": "cd46447f-04b9-4aa3-a3ed-6ca72978bffd" + "databaseGuid": "099eb3a4-f437-4d11-a807-2a90aa78e92c", + "databaseVersionGuid": "577d4a1b-be22-4758-951d-1233c82f2c31", + "tableGuid": "a369e360-7a5d-473d-9227-269ad056c80a" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -46783,7 +46807,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "c42ccd30-6988-4cd7-afa8-ef58693531a2" + "guid": "d4679b7e-1b97-49bb-bf46-4f355f59b8ad" }, { "identity": 8944, @@ -47311,7 +47335,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": "01482888-ed0a-4747-a9ce-4100d5f6a826" + "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" } } } @@ -47326,7 +47350,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": "01482888-ed0a-4747-a9ce-4100d5f6a826" + "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" } } } @@ -47341,7 +47365,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": "01482888-ed0a-4747-a9ce-4100d5f6a826" + "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" } } } @@ -47356,7 +47380,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": "01482888-ed0a-4747-a9ce-4100d5f6a826" + "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" } } } @@ -47465,7 +47489,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": "d322a219-01b5-467f-b0f7-453b05a5f84b" + "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" } }, "Example 2": { @@ -47479,7 +47503,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": "0ccf621a-923e-4ca3-a3ec-5b0a3c91e31e" + "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" } } } @@ -47494,7 +47518,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": "d322a219-01b5-467f-b0f7-453b05a5f84b" + "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" } }, "Example 2": { @@ -47508,7 +47532,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": "0ccf621a-923e-4ca3-a3ec-5b0a3c91e31e" + "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" } } } @@ -47523,7 +47547,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": "d322a219-01b5-467f-b0f7-453b05a5f84b" + "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" } }, "Example 2": { @@ -47537,7 +47561,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": "0ccf621a-923e-4ca3-a3ec-5b0a3c91e31e" + "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" } } } @@ -47552,7 +47576,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": "d322a219-01b5-467f-b0f7-453b05a5f84b" + "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" } }, "Example 2": { @@ -47566,7 +47590,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": "0ccf621a-923e-4ca3-a3ec-5b0a3c91e31e" + "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" } } } @@ -48025,8 +48049,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "377562f8-822b-464d-bb15-9f959cd51cd6", - "ceaa1814-ca27-435a-8ce1-17d5a12de786" + "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", + "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" ], "type": "recordListMember" }, @@ -48814,8 +48838,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "377562f8-822b-464d-bb15-9f959cd51cd6", - "ceaa1814-ca27-435a-8ce1-17d5a12de786" + "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", + "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" ], "type": "recordListMember" }, @@ -49603,8 +49627,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "377562f8-822b-464d-bb15-9f959cd51cd6", - "ceaa1814-ca27-435a-8ce1-17d5a12de786" + "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", + "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" ], "type": "recordListMember" }, @@ -50392,8 +50416,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "377562f8-822b-464d-bb15-9f959cd51cd6", - "ceaa1814-ca27-435a-8ce1-17d5a12de786" + "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", + "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" ], "type": "recordListMember" }, @@ -51259,8 +51283,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9610986d-7cf2-47b9-b34a-198bb51df15a", - "1b1404de-203c-4de7-88d4-0410ac1e7020" + "47d8fd05-fb9e-418e-8fc6-f650408da101", + "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" ], "type": "recordListMember" }, @@ -52048,8 +52072,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9610986d-7cf2-47b9-b34a-198bb51df15a", - "1b1404de-203c-4de7-88d4-0410ac1e7020" + "47d8fd05-fb9e-418e-8fc6-f650408da101", + "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" ], "type": "recordListMember" }, @@ -52837,8 +52861,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9610986d-7cf2-47b9-b34a-198bb51df15a", - "1b1404de-203c-4de7-88d4-0410ac1e7020" + "47d8fd05-fb9e-418e-8fc6-f650408da101", + "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" ], "type": "recordListMember" }, @@ -53626,8 +53650,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "9610986d-7cf2-47b9-b34a-198bb51df15a", - "1b1404de-203c-4de7-88d4-0410ac1e7020" + "47d8fd05-fb9e-418e-8fc6-f650408da101", + "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" ], "type": "recordListMember" }, @@ -54484,8 +54508,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a44c84da-09a5-49e1-926a-64e24cf4cdd0", - "662982e1-78b6-48ed-b1a1-764664cf1760" + "129db7a6-5b0f-41a0-aa7f-54b914b931d6", + "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" ], "type": "recordListMember" }, @@ -55273,8 +55297,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a44c84da-09a5-49e1-926a-64e24cf4cdd0", - "662982e1-78b6-48ed-b1a1-764664cf1760" + "129db7a6-5b0f-41a0-aa7f-54b914b931d6", + "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" ], "type": "recordListMember" }, @@ -56062,8 +56086,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a44c84da-09a5-49e1-926a-64e24cf4cdd0", - "662982e1-78b6-48ed-b1a1-764664cf1760" + "129db7a6-5b0f-41a0-aa7f-54b914b931d6", + "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" ], "type": "recordListMember" }, @@ -56851,8 +56875,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a44c84da-09a5-49e1-926a-64e24cf4cdd0", - "662982e1-78b6-48ed-b1a1-764664cf1760" + "129db7a6-5b0f-41a0-aa7f-54b914b931d6", + "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" ], "type": "recordListMember" }, @@ -57685,8 +57709,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "368d1e2e-a127-4123-b1b4-02d31747d560", - "e2bc16fc-9f78-470d-a3af-ead32c6be6ba" + "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", + "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" ], "type": "recordListMember" }, @@ -58474,8 +58498,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "368d1e2e-a127-4123-b1b4-02d31747d560", - "e2bc16fc-9f78-470d-a3af-ead32c6be6ba" + "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", + "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" ], "type": "recordListMember" }, @@ -59263,8 +59287,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "368d1e2e-a127-4123-b1b4-02d31747d560", - "e2bc16fc-9f78-470d-a3af-ead32c6be6ba" + "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", + "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" ], "type": "recordListMember" }, @@ -60052,8 +60076,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "368d1e2e-a127-4123-b1b4-02d31747d560", - "e2bc16fc-9f78-470d-a3af-ead32c6be6ba" + "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", + "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" ], "type": "recordListMember" }, @@ -74697,6 +74721,24 @@ "x-discriminator-value": "recordAncestorHistoryIdentity", "x-discriminator-name": "type" }, + "GsaRecordCapabilities": { + "required": [ + "canModify", + "canWrite" + ], + "type": "object", + "properties": { + "canWrite": { + "type": "boolean", + "description": "True if the current user has write permission for this record version, and is in write mode.\r\nWrite permission is required to edit record properties, and to perform version control actions." + }, + "canModify": { + "type": "boolean", + "description": "True if the current user can modify this record version, e.g. edit record properties.\r\nThe user needs write permission, and if the table is version controlled, the record must be unreleased." + } + }, + "additionalProperties": false + }, "GsaRecordColor": { "enum": [ "red", @@ -75530,6 +75572,7 @@ }, "GsaRecordVersion": { "required": [ + "capabilities", "createdByUser", "createdDate", "databaseKey", @@ -75584,6 +75627,9 @@ "recordColor": { "$ref": "#/components/schemas/GsaRecordColor" }, + "capabilities": { + "$ref": "#/components/schemas/GsaRecordCapabilities" + }, "versionNumber": { "type": "integer", "format": "int32"