From 32f9e07be5773607108b9533fd0cb377fa304b45 Mon Sep 17 00:00:00 2001 From: PyAnsys CI Bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:07:44 +0100 Subject: [PATCH] Update Swagger.json (12363342505) (#281) Co-authored-by: pyansys-ci-bot --- .../pyproject.toml | 2 +- .../grantami/serverapi_openapi/__init__.py | 2 + .../api/list_audit_log_api.py | 6 +- .../serverapi_openapi/models/__init__.py | 2 + .../models/gsa_list_action.py | 22 +- .../models/gsa_list_audit_log_item.py | 316 +++++ .../models/gsa_record_capabilities.py | 144 +++ yaml/server-api.json | 1143 +++++++++-------- 8 files changed, 1090 insertions(+), 547 deletions(-) create mode 100644 ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_audit_log_item.py diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index 150c3b22..96bbaffc 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.dev362" +version = "4.0.0.dev364" 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 9a323d72..c39f25e9 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 @@ -575,6 +575,7 @@ from .models.gsa_linking_value_match_behavior import GsaLinkingValueMatchBehavior from .models.gsa_links_info import GsaLinksInfo from .models.gsa_list_action import GsaListAction +from .models.gsa_list_audit_log_item import GsaListAuditLogItem from .models.gsa_list_audit_log_search_request import GsaListAuditLogSearchRequest from .models.gsa_list_boolean_criterion import GsaListBooleanCriterion from .models.gsa_list_criterion import GsaListCriterion @@ -1497,6 +1498,7 @@ "GsaLinkingValueMatchBehavior", "GsaLinksInfo", "GsaListAction", + "GsaListAuditLogItem", "GsaListAuditLogSearchRequest", "GsaListBooleanCriterion", "GsaListCriterion", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/list_audit_log_api.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/list_audit_log_api.py index 14d6ab4a..66b0e78c 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/list_audit_log_api.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/list_audit_log_api.py @@ -50,7 +50,7 @@ class ListAuditLogApi(ApiBase): def get_list_audit_log_search_results( self, *, result_resource_identifier: "str" - ) -> "Union[GsaRecordListSearchResultsInfo, None]": + ) -> "Union[None, list[GsaListAuditLogItem]]": """Returns the search results found in the specified resource This method makes a synchronous HTTP request. @@ -61,7 +61,7 @@ def get_list_audit_log_search_results( Returns ------- - Union[GsaRecordListSearchResultsInfo, None] + Union[None, list[GsaListAuditLogItem]] """ data = self._get_list_audit_log_search_results_with_http_info( result_resource_identifier, _return_http_data_only=True @@ -115,7 +115,7 @@ def _get_list_audit_log_search_results_with_http_info( ) response_type_map: dict[int, Optional[str]] = { - 200: "GsaRecordListSearchResultsInfo", + 200: "list[GsaListAuditLogItem]", 403: None, 404: None, 410: None, 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 3c054627..a69d529f 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 @@ -507,6 +507,7 @@ from .gsa_linking_value_match_behavior import GsaLinkingValueMatchBehavior from .gsa_links_info import GsaLinksInfo from .gsa_list_action import GsaListAction +from .gsa_list_audit_log_item import GsaListAuditLogItem from .gsa_list_audit_log_search_request import GsaListAuditLogSearchRequest from .gsa_list_boolean_criterion import GsaListBooleanCriterion from .gsa_list_criterion import GsaListCriterion @@ -1374,6 +1375,7 @@ "GsaLinkingValueMatchBehavior", "GsaLinksInfo", "GsaListAction", + "GsaListAuditLogItem", "GsaListAuditLogSearchRequest", "GsaListBooleanCriterion", "GsaListCriterion", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_action.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_action.py index 6cc77267..a6b18699 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_action.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_action.py @@ -42,8 +42,18 @@ class GsaListAction(Enum): """ Allowed Enum values """ + LISTCREATED = "ListCreated" + LISTDELETED = "ListDeleted" ITEMADDED = "ItemAdded" ITEMREMOVED = "ItemRemoved" + LISTNAMECHANGED = "ListNameChanged" + LISTDESCRIPTIONCHANGED = "ListDescriptionChanged" + LISTNOTESCHANGED = "ListNotesChanged" + LISTSETTOAWAITINGAPPROVAL = "ListSetToAwaitingApproval" + LISTAWAITINGAPPROVALREMOVED = "ListAwaitingApprovalRemoved" + LISTPUBLISHED = "ListPublished" + LISTUNPUBLISHED = "ListUnpublished" + LISTREVISIONCREATED = "ListRevisionCreated" USERSUBSCRIBED = "UserSubscribed" USERUNSUBSCRIBED = "UserUnsubscribed" LISTCURATORADDED = "ListCuratorAdded" @@ -52,17 +62,5 @@ class GsaListAction(Enum): LISTADMINREMOVED = "ListAdminRemoved" LISTPUBLISHERADDED = "ListPublisherAdded" LISTPUBLISHERREMOVED = "ListPublisherRemoved" - LISTNAMECHANGED = "ListNameChanged" - LISTDESCRIPTIONCHANGED = "ListDescriptionChanged" - LISTNOTESCHANGED = "ListNotesChanged" LISTMADEINTERNAL = "ListMadeInternal" LISTMADENOTINTERNAL = "ListMadeNotInternal" - LISTCREATED = "ListCreated" - LISTDELETED = "ListDeleted" - LISTSETTOAWAITINGAPPROVAL = "ListSetToAwaitingApproval" - LISTSETTOAWAITINGUNPUBLISH = "ListSetToAwaitingUnpublish" - LISTAWAITINGAPPROVALREMOVED = "ListAwaitingApprovalRemoved" - LISTPUBLISHED = "ListPublished" - LISTUNPUBLISHED = "ListUnpublished" - LISTREVISIONCREATED = "ListRevisionCreated" - LISTCOPIED = "ListCopied" diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_audit_log_item.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_audit_log_item.py new file mode 100644 index 00000000..a113c7c2 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_list_audit_log_item.py @@ -0,0 +1,316 @@ +# 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 GsaListAuditLogItem(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] = { + "action": "GsaListAction", + "initiating_user": "GsaListsUserOrGroup", + "list_identifier": "str", + "list_item_affected": "GsaListItem", + "timestamp": "datetime", + "user_or_group_affected": "GsaListsUserOrGroup", + } + + attribute_map: dict[str, str] = { + "action": "action", + "initiating_user": "initiatingUser", + "list_identifier": "listIdentifier", + "list_item_affected": "listItemAffected", + "timestamp": "timestamp", + "user_or_group_affected": "userOrGroupAffected", + } + + subtype_mapping: dict[str, str] = { + "initiatingUser": "GsaListsUserOrGroup", + "userOrGroupAffected": "GsaListsUserOrGroup", + "listItemAffected": "GsaListItem", + "action": "GsaListAction", + } + + discriminator: Optional[str] = None + + def __init__( + self, + *, + action: "Union[GsaListAction, Unset_Type]" = Unset, + initiating_user: "Union[GsaListsUserOrGroup, Unset_Type]" = Unset, + list_identifier: "Union[str, Unset_Type]" = Unset, + list_item_affected: "Union[GsaListItem, Unset_Type]" = Unset, + timestamp: "Union[datetime, Unset_Type]" = Unset, + user_or_group_affected: "Union[GsaListsUserOrGroup, Unset_Type]" = Unset, + ) -> None: + """GsaListAuditLogItem - a model defined in Swagger + + Parameters + ---------- + action: GsaListAction, optional + initiating_user: GsaListsUserOrGroup, optional + list_identifier: str, optional + list_item_affected: GsaListItem, optional + timestamp: datetime, optional + user_or_group_affected: GsaListsUserOrGroup, optional + """ + self._list_identifier: Union[str, Unset_Type] = Unset + self._initiating_user: Union[GsaListsUserOrGroup, Unset_Type] = Unset + self._user_or_group_affected: Union[GsaListsUserOrGroup, Unset_Type] = Unset + self._list_item_affected: Union[GsaListItem, Unset_Type] = Unset + self._action: Union[GsaListAction, Unset_Type] = Unset + self._timestamp: Union[datetime, Unset_Type] = Unset + + if list_identifier is not Unset: + self.list_identifier = list_identifier + if initiating_user is not Unset: + self.initiating_user = initiating_user + if user_or_group_affected is not Unset: + self.user_or_group_affected = user_or_group_affected + if list_item_affected is not Unset: + self.list_item_affected = list_item_affected + if action is not Unset: + self.action = action + if timestamp is not Unset: + self.timestamp = timestamp + + @property + def list_identifier(self) -> "Union[str, Unset_Type]": + """Gets the list_identifier of this GsaListAuditLogItem. + The identifier of the list that the action was performed on + + Returns + ------- + Union[str, Unset_Type] + The list_identifier of this GsaListAuditLogItem. + """ + return self._list_identifier + + @list_identifier.setter + def list_identifier(self, list_identifier: "Union[str, Unset_Type]") -> None: + """Sets the list_identifier of this GsaListAuditLogItem. + The identifier of the list that the action was performed on + + Parameters + ---------- + list_identifier: Union[str, Unset_Type] + The list_identifier of this GsaListAuditLogItem. + """ + # Field is not nullable + if list_identifier is None: + raise ValueError("Invalid value for 'list_identifier', must not be 'None'") + self._list_identifier = list_identifier + + @property + def initiating_user(self) -> "Union[GsaListsUserOrGroup, Unset_Type]": + """Gets the initiating_user of this GsaListAuditLogItem. + + Returns + ------- + Union[GsaListsUserOrGroup, Unset_Type] + The initiating_user of this GsaListAuditLogItem. + """ + return self._initiating_user + + @initiating_user.setter + def initiating_user(self, initiating_user: "Union[GsaListsUserOrGroup, Unset_Type]") -> None: + """Sets the initiating_user of this GsaListAuditLogItem. + + Parameters + ---------- + initiating_user: Union[GsaListsUserOrGroup, Unset_Type] + The initiating_user of this GsaListAuditLogItem. + """ + # Field is not nullable + if initiating_user is None: + raise ValueError("Invalid value for 'initiating_user', must not be 'None'") + self._initiating_user = initiating_user + + @property + def user_or_group_affected(self) -> "Union[GsaListsUserOrGroup, Unset_Type]": + """Gets the user_or_group_affected of this GsaListAuditLogItem. + + Returns + ------- + Union[GsaListsUserOrGroup, Unset_Type] + The user_or_group_affected of this GsaListAuditLogItem. + """ + return self._user_or_group_affected + + @user_or_group_affected.setter + def user_or_group_affected( + self, user_or_group_affected: "Union[GsaListsUserOrGroup, Unset_Type]" + ) -> None: + """Sets the user_or_group_affected of this GsaListAuditLogItem. + + Parameters + ---------- + user_or_group_affected: Union[GsaListsUserOrGroup, Unset_Type] + The user_or_group_affected of this GsaListAuditLogItem. + """ + # Field is not nullable + if user_or_group_affected is None: + raise ValueError("Invalid value for 'user_or_group_affected', must not be 'None'") + self._user_or_group_affected = user_or_group_affected + + @property + def list_item_affected(self) -> "Union[GsaListItem, Unset_Type]": + """Gets the list_item_affected of this GsaListAuditLogItem. + + Returns + ------- + Union[GsaListItem, Unset_Type] + The list_item_affected of this GsaListAuditLogItem. + """ + return self._list_item_affected + + @list_item_affected.setter + def list_item_affected(self, list_item_affected: "Union[GsaListItem, Unset_Type]") -> None: + """Sets the list_item_affected of this GsaListAuditLogItem. + + Parameters + ---------- + list_item_affected: Union[GsaListItem, Unset_Type] + The list_item_affected of this GsaListAuditLogItem. + """ + # Field is not nullable + if list_item_affected is None: + raise ValueError("Invalid value for 'list_item_affected', must not be 'None'") + self._list_item_affected = list_item_affected + + @property + def action(self) -> "Union[GsaListAction, Unset_Type]": + """Gets the action of this GsaListAuditLogItem. + + Returns + ------- + Union[GsaListAction, Unset_Type] + The action of this GsaListAuditLogItem. + """ + return self._action + + @action.setter + def action(self, action: "Union[GsaListAction, Unset_Type]") -> None: + """Sets the action of this GsaListAuditLogItem. + + Parameters + ---------- + action: Union[GsaListAction, Unset_Type] + The action of this GsaListAuditLogItem. + """ + # Field is not nullable + if action is None: + raise ValueError("Invalid value for 'action', must not be 'None'") + self._action = action + + @property + def timestamp(self) -> "Union[datetime, Unset_Type]": + """Gets the timestamp of this GsaListAuditLogItem. + The date/time that the action occurred. + + Returns + ------- + Union[datetime, Unset_Type] + The timestamp of this GsaListAuditLogItem. + """ + return self._timestamp + + @timestamp.setter + def timestamp(self, timestamp: "Union[datetime, Unset_Type]") -> None: + """Sets the timestamp of this GsaListAuditLogItem. + The date/time that the action occurred. + + Parameters + ---------- + timestamp: Union[datetime, Unset_Type] + The timestamp of this GsaListAuditLogItem. + """ + # Field is not nullable + if timestamp is None: + raise ValueError("Invalid value for 'timestamp', must not be 'None'") + self._timestamp = timestamp + + @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, GsaListAuditLogItem): + 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_capabilities.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_capabilities.py index c1b847e3..345bc86b 100644 --- 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 @@ -61,12 +61,20 @@ class GsaRecordCapabilities(ModelBase): Name of the property used as discriminator for subtypes. """ swagger_types: dict[str, str] = { + "can_delete": "bool", + "can_get_modifiable_version": "bool", "can_modify": "bool", + "can_release": "bool", + "can_withdraw": "bool", "can_write": "bool", } attribute_map: dict[str, str] = { + "can_delete": "canDelete", + "can_get_modifiable_version": "canGetModifiableVersion", "can_modify": "canModify", + "can_release": "canRelease", + "can_withdraw": "canWithdraw", "can_write": "canWrite", } @@ -77,21 +85,37 @@ class GsaRecordCapabilities(ModelBase): def __init__( self, *, + can_delete: "bool", + can_get_modifiable_version: "bool", can_modify: "bool", + can_release: "bool", + can_withdraw: "bool", can_write: "bool", ) -> None: """GsaRecordCapabilities - a model defined in Swagger Parameters ---------- + can_delete: bool + can_get_modifiable_version: bool can_modify: bool + can_release: bool + can_withdraw: bool can_write: bool """ self._can_write: bool self._can_modify: bool + self._can_release: bool + self._can_get_modifiable_version: bool + self._can_withdraw: bool + self._can_delete: bool self.can_write = can_write self.can_modify = can_modify + self.can_release = can_release + self.can_get_modifiable_version = can_get_modifiable_version + self.can_withdraw = can_withdraw + self.can_delete = can_delete @property def can_write(self) -> "bool": @@ -153,6 +177,126 @@ def can_modify(self, can_modify: "bool") -> None: raise ValueError("Invalid value for 'can_modify', must not be 'Unset'") self._can_modify = can_modify + @property + def can_release(self) -> "bool": + """Gets the can_release of this GsaRecordCapabilities. + True if the current user can release this record version. + + Returns + ------- + bool + The can_release of this GsaRecordCapabilities. + """ + return self._can_release + + @can_release.setter + def can_release(self, can_release: "bool") -> None: + """Sets the can_release of this GsaRecordCapabilities. + True if the current user can release this record version. + + Parameters + ---------- + can_release: bool + The can_release of this GsaRecordCapabilities. + """ + # Field is not nullable + if can_release is None: + raise ValueError("Invalid value for 'can_release', must not be 'None'") + # Field is required + if can_release is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'can_release', must not be 'Unset'") + self._can_release = can_release + + @property + def can_get_modifiable_version(self) -> "bool": + """Gets the can_get_modifiable_version of this GsaRecordCapabilities. + True if the current user can get a modifiable version of this record version (gets the latest modifiable record version, or creates a new one if none exists). + + Returns + ------- + bool + The can_get_modifiable_version of this GsaRecordCapabilities. + """ + return self._can_get_modifiable_version + + @can_get_modifiable_version.setter + def can_get_modifiable_version(self, can_get_modifiable_version: "bool") -> None: + """Sets the can_get_modifiable_version of this GsaRecordCapabilities. + True if the current user can get a modifiable version of this record version (gets the latest modifiable record version, or creates a new one if none exists). + + Parameters + ---------- + can_get_modifiable_version: bool + The can_get_modifiable_version of this GsaRecordCapabilities. + """ + # Field is not nullable + if can_get_modifiable_version is None: + raise ValueError("Invalid value for 'can_get_modifiable_version', must not be 'None'") + # Field is required + if can_get_modifiable_version is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'can_get_modifiable_version', must not be 'Unset'") + self._can_get_modifiable_version = can_get_modifiable_version + + @property + def can_withdraw(self) -> "bool": + """Gets the can_withdraw of this GsaRecordCapabilities. + True if the current user can withdraw this record version. + + Returns + ------- + bool + The can_withdraw of this GsaRecordCapabilities. + """ + return self._can_withdraw + + @can_withdraw.setter + def can_withdraw(self, can_withdraw: "bool") -> None: + """Sets the can_withdraw of this GsaRecordCapabilities. + True if the current user can withdraw this record version. + + Parameters + ---------- + can_withdraw: bool + The can_withdraw of this GsaRecordCapabilities. + """ + # Field is not nullable + if can_withdraw is None: + raise ValueError("Invalid value for 'can_withdraw', must not be 'None'") + # Field is required + if can_withdraw is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'can_withdraw', must not be 'Unset'") + self._can_withdraw = can_withdraw + + @property + def can_delete(self) -> "bool": + """Gets the can_delete of this GsaRecordCapabilities. + True if the current user can delete this record version. + + Returns + ------- + bool + The can_delete of this GsaRecordCapabilities. + """ + return self._can_delete + + @can_delete.setter + def can_delete(self, can_delete: "bool") -> None: + """Sets the can_delete of this GsaRecordCapabilities. + True if the current user can delete this record version. + + Parameters + ---------- + can_delete: bool + The can_delete of this GsaRecordCapabilities. + """ + # Field is not nullable + if can_delete is None: + raise ValueError("Invalid value for 'can_delete', must not be 'None'") + # Field is required + if can_delete is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'can_delete', must not be 'Unset'") + self._can_delete = can_delete + @classmethod def get_real_child_model(cls, data: dict[str, str]) -> str: """Raises a NotImplementedError for a type without a discriminator defined. diff --git a/yaml/server-api.json b/yaml/server-api.json index 5f89c725..3b5bf519 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -170,7 +170,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", + "criterionGuid": "c532af9b-e310-496f-882d-893cc3e74987", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -196,7 +196,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", + "criterionGuid": "7476b2e2-1985-46ca-a034-f3edee6f4a36", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -228,7 +228,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", + "criterionGuid": "83219b6b-4c9a-48aa-9b8a-2b85ffed9f20", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -390,7 +390,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", + "criterionGuid": "c532af9b-e310-496f-882d-893cc3e74987", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -416,7 +416,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", + "criterionGuid": "7476b2e2-1985-46ca-a034-f3edee6f4a36", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -448,7 +448,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", + "criterionGuid": "83219b6b-4c9a-48aa-9b8a-2b85ffed9f20", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -610,7 +610,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", + "criterionGuid": "c532af9b-e310-496f-882d-893cc3e74987", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -636,7 +636,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", + "criterionGuid": "7476b2e2-1985-46ca-a034-f3edee6f4a36", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -668,7 +668,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", + "criterionGuid": "83219b6b-4c9a-48aa-9b8a-2b85ffed9f20", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -830,7 +830,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5b5f8b1e-c8f7-4226-85c8-1759d4e754bd", + "criterionGuid": "c532af9b-e310-496f-882d-893cc3e74987", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -856,7 +856,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb8a4815-b635-4826-9924-fc8e5ec95865", + "criterionGuid": "7476b2e2-1985-46ca-a034-f3edee6f4a36", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -888,7 +888,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "10d18ad5-a98f-4e22-bcf2-227ae2bcac99", + "criterionGuid": "83219b6b-4c9a-48aa-9b8a-2b85ffed9f20", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1131,7 +1131,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", + "criterionGuid": "8666bb2e-8c50-43b0-9090-480e2ce24447", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1157,7 +1157,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", + "criterionGuid": "e0118646-6c30-48e1-ac50-b673a79943e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1189,7 +1189,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", + "criterionGuid": "7e67b0ac-1f1f-436f-8a61-08ce515270aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1351,7 +1351,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", + "criterionGuid": "8666bb2e-8c50-43b0-9090-480e2ce24447", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1377,7 +1377,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", + "criterionGuid": "e0118646-6c30-48e1-ac50-b673a79943e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1409,7 +1409,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", + "criterionGuid": "7e67b0ac-1f1f-436f-8a61-08ce515270aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1571,7 +1571,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", + "criterionGuid": "8666bb2e-8c50-43b0-9090-480e2ce24447", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1597,7 +1597,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", + "criterionGuid": "e0118646-6c30-48e1-ac50-b673a79943e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1629,7 +1629,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", + "criterionGuid": "7e67b0ac-1f1f-436f-8a61-08ce515270aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1791,7 +1791,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "91cadfe9-ed62-4e8e-a06c-57ecbc9d8693", + "criterionGuid": "8666bb2e-8c50-43b0-9090-480e2ce24447", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1817,7 +1817,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d8eaccdb-f0ea-4d5c-bd60-aa9005c8efca", + "criterionGuid": "e0118646-6c30-48e1-ac50-b673a79943e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1849,7 +1849,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0b43d5ae-f3b8-4150-bb58-9a7403e51780", + "criterionGuid": "7e67b0ac-1f1f-436f-8a61-08ce515270aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2083,7 +2083,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", + "criterionGuid": "2d5c32bd-696b-42c8-af67-26b1ac676b21", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2109,7 +2109,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", + "criterionGuid": "1ee08b81-313a-484a-b730-47443c60efe5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2141,7 +2141,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", + "criterionGuid": "6b879d42-45de-4565-9f01-371e8883f16e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2303,7 +2303,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", + "criterionGuid": "2d5c32bd-696b-42c8-af67-26b1ac676b21", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2329,7 +2329,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", + "criterionGuid": "1ee08b81-313a-484a-b730-47443c60efe5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2361,7 +2361,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", + "criterionGuid": "6b879d42-45de-4565-9f01-371e8883f16e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2523,7 +2523,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", + "criterionGuid": "2d5c32bd-696b-42c8-af67-26b1ac676b21", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2549,7 +2549,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", + "criterionGuid": "1ee08b81-313a-484a-b730-47443c60efe5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2581,7 +2581,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", + "criterionGuid": "6b879d42-45de-4565-9f01-371e8883f16e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2743,7 +2743,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "62b7b222-4366-4327-afc4-9b80e34bb669", + "criterionGuid": "2d5c32bd-696b-42c8-af67-26b1ac676b21", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2769,7 +2769,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d88587c7-24fc-46bd-99c5-59da9c9fafdd", + "criterionGuid": "1ee08b81-313a-484a-b730-47443c60efe5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2801,7 +2801,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "0cbf2ede-c4fa-456d-93c5-a49145e9fcc7", + "criterionGuid": "6b879d42-45de-4565-9f01-371e8883f16e", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3011,7 +3011,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", + "criterionGuid": "1d455e2c-b772-43bf-8daf-0c244af730e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3037,7 +3037,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", + "criterionGuid": "b4a9c9f5-e15f-40b0-ac58-e2e7742b7d3c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3069,7 +3069,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", + "criterionGuid": "cd68b3fc-3e56-46c4-82af-3ffc7d55c13a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3231,7 +3231,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", + "criterionGuid": "1d455e2c-b772-43bf-8daf-0c244af730e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3257,7 +3257,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", + "criterionGuid": "b4a9c9f5-e15f-40b0-ac58-e2e7742b7d3c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3289,7 +3289,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", + "criterionGuid": "cd68b3fc-3e56-46c4-82af-3ffc7d55c13a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3451,7 +3451,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", + "criterionGuid": "1d455e2c-b772-43bf-8daf-0c244af730e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3477,7 +3477,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", + "criterionGuid": "b4a9c9f5-e15f-40b0-ac58-e2e7742b7d3c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3509,7 +3509,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", + "criterionGuid": "cd68b3fc-3e56-46c4-82af-3ffc7d55c13a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3671,7 +3671,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "b783ad45-e5c6-4289-ade4-b79ce5fe45b2", + "criterionGuid": "1d455e2c-b772-43bf-8daf-0c244af730e2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3697,7 +3697,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "3e0c2e3e-8001-465a-ae41-2310ad0ccbf5", + "criterionGuid": "b4a9c9f5-e15f-40b0-ac58-e2e7742b7d3c", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3729,7 +3729,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8a3dd124-df0f-417f-b6f6-c5c49045cf60", + "criterionGuid": "cd68b3fc-3e56-46c4-82af-3ffc7d55c13a", "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-13T23:49:48.4489709+00:00" + "value": "2024-12-16T23:53:36.5724155+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-13T23:49:48.4489709+00:00" + "value": "2024-12-16T23:53:36.5724155+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-13T23:49:48.4489709+00:00" + "value": "2024-12-16T23:53:36.5724155+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-13T23:49:48.4489709+00:00" + "value": "2024-12-16T23:53:36.5724155+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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-13T23:49:48.4645784+00:00" + "value": "2024-12-16T23:53:36.5880378+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": [ - "bad8afd0-be29-498e-86f8-984659d2c686" + "2b31cea0-b847-456e-9661-9059a3d116f7" ], "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": [ - "bad8afd0-be29-498e-86f8-984659d2c686" + "2b31cea0-b847-456e-9661-9059a3d116f7" ], "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": [ - "bad8afd0-be29-498e-86f8-984659d2c686" + "2b31cea0-b847-456e-9661-9059a3d116f7" ], "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": [ - "bad8afd0-be29-498e-86f8-984659d2c686" + "2b31cea0-b847-456e-9661-9059a3d116f7" ], "listActionsToInclude": [ "ItemAdded", @@ -17129,17 +17129,26 @@ "content": { "text/plain": { "schema": { - "$ref": "#/components/schemas/GsaRecordListSearchResultsInfo" + "type": "array", + "items": { + "$ref": "#/components/schemas/GsaListAuditLogItem" + } } }, "application/json": { "schema": { - "$ref": "#/components/schemas/GsaRecordListSearchResultsInfo" + "type": "array", + "items": { + "$ref": "#/components/schemas/GsaListAuditLogItem" + } } }, "text/json": { "schema": { - "$ref": "#/components/schemas/GsaRecordListSearchResultsInfo" + "type": "array", + "items": { + "$ref": "#/components/schemas/GsaListAuditLogItem" + } } } } @@ -18774,7 +18783,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" + "guid": "dd0410c6-a842-405f-a9c8-276e5d8657a4" } }, "Example 4": { @@ -18836,7 +18845,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" + "guid": "dd0410c6-a842-405f-a9c8-276e5d8657a4" } }, "Example 4": { @@ -18898,7 +18907,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" + "guid": "dd0410c6-a842-405f-a9c8-276e5d8657a4" } }, "Example 4": { @@ -18960,7 +18969,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "55fda508-80cc-4f56-81f0-e662d99f9b12" + "guid": "dd0410c6-a842-405f-a9c8-276e5d8657a4" } }, "Example 4": { @@ -19015,11 +19024,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "c33332af-c520-4e22-b6b8-6851864f3c71" + "guid": "b8d8aeb7-6755-4010-8912-18f6c93c783d" } ], "subsets": [], - "guid": "44971967-f993-447d-be64-1b3bfc6a1b92" + "guid": "92b93770-2c23-4f58-9a96-acb8de25a2c5" } } } @@ -19740,7 +19749,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "cc7d206c-3b8c-4f2c-8510-a4ec27650048" + "guid": "a36bf58f-5983-46a3-9027-b431a1bce4d3" } } } @@ -20026,7 +20035,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "403c3b09-e63a-4404-b7cb-d7506ab29bcf" + "guid": "05abacb9-2017-482e-8401-0b2f216ef589" } } } @@ -20192,7 +20201,11 @@ "recordColor": "fuchsia", "capabilities": { "canWrite": true, - "canModify": true + "canModify": true, + "canRelease": false, + "canGetModifiableVersion": false, + "canWithdraw": false, + "canDelete": true }, "versionNumber": 1, "versionState": "unversioned", @@ -20287,7 +20300,11 @@ "recordColor": "fuchsia", "capabilities": { "canWrite": true, - "canModify": true + "canModify": true, + "canRelease": false, + "canGetModifiableVersion": false, + "canWithdraw": false, + "canDelete": true }, "versionNumber": 1, "versionState": "unversioned", @@ -20400,7 +20417,11 @@ "recordColor": "fuchsia", "capabilities": { "canWrite": true, - "canModify": true + "canModify": true, + "canRelease": false, + "canGetModifiableVersion": false, + "canWithdraw": false, + "canDelete": true }, "versionNumber": 1, "versionState": "unversioned", @@ -20544,7 +20565,11 @@ "recordColor": "red", "capabilities": { "canWrite": true, - "canModify": false + "canModify": false, + "canRelease": false, + "canGetModifiableVersion": true, + "canWithdraw": true, + "canDelete": false }, "versionNumber": 1, "versionState": "released", @@ -20593,7 +20618,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID '640cfa2b-5757-46a7-bb2e-e64f0327719f'.", + "message": "Cannot release record version with GUID 'da6aafb1-543d-4579-b1cf-d59b50c7acb7'.", "code": 400, "errors": [ { @@ -20689,7 +20714,11 @@ "recordColor": "red", "capabilities": { "canWrite": true, - "canModify": true + "canModify": true, + "canRelease": true, + "canGetModifiableVersion": false, + "canWithdraw": false, + "canDelete": true }, "versionNumber": 2, "versionState": "unreleased", @@ -20738,7 +20767,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID '19f02304-80f2-4ad0-9304-e6115d71f4b4'.", + "message": "Cannot create a new version from the record version with GUID '5cb6c643-3cbf-406a-bf8b-052fbae91ce7'.", "code": 400, "errors": [ { @@ -20748,7 +20777,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "c20a6ad6-4a1b-4c03-9265-949b7f74f442" + "guid": "6a2cf8af-83bc-4e2a-b569-f53dcb1f5b0d" } } ] @@ -20840,7 +20869,11 @@ "recordColor": "red", "capabilities": { "canWrite": true, - "canModify": false + "canModify": false, + "canRelease": false, + "canGetModifiableVersion": true, + "canWithdraw": false, + "canDelete": false }, "versionNumber": 1, "versionState": "withdrawn", @@ -21058,7 +21091,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" + "guid": "8d86895d-c6e7-47db-ad08-e6603560aab9" } }, "Example 3": { @@ -21458,7 +21491,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" + "guid": "8d86895d-c6e7-47db-ad08-e6603560aab9" } }, "Example 3": { @@ -21858,7 +21891,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" + "guid": "8d86895d-c6e7-47db-ad08-e6603560aab9" } }, "Example 3": { @@ -22258,7 +22291,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "bc1c66ae-e532-4941-bab9-74493268d7cd" + "guid": "8d86895d-c6e7-47db-ad08-e6603560aab9" } }, "Example 3": { @@ -22745,7 +22778,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "94926af4-97c0-4761-be08-9f0c198a549f" + "guid": "c7582b35-dc96-43a1-86d9-f70165c3f196" } ], "primaryDynamicLinkGroups": [], @@ -23047,7 +23080,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "7890f32f-f564-44d1-bc96-e90ee5eb7fd0" + "guid": "6e46cb26-acb4-4c76-8a98-0e814b64f31d" } ], "primaryDynamicLinkGroups": [], @@ -24317,7 +24350,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "5d9490da-63cd-49aa-93ef-3f9ad2d30f19" + "guid": "1929e5f1-34ad-403d-aa03-7f401255ad2f" } ], "primaryDynamicLinkGroups": [], @@ -24764,7 +24797,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "a6a79b3d-a7b6-40ec-b518-239053415a94" + "guid": "e57c13fa-ae06-4f09-bd31-39932695c5b5" } ], "primaryDynamicLinkGroups": [], @@ -25226,7 +25259,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "ee6acaaa-c4b9-4d3c-a9a1-cc432027b92d" + "guid": "c607e5b0-e623-4081-add2-6d1edb674f52" } ], "primaryDynamicLinkGroups": [], @@ -25405,7 +25438,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute 'Notes' (GUID = 'bf8612dd-02d0-46ce-b3a4-c20aa168d4ee').", + "message": "Cannot delete attribute 'Notes' (GUID = 'b052d233-9f37-4cb3-9baa-2267c0db8136').", "code": 400, "errors": [ { @@ -25420,7 +25453,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "a257a466-ebb9-4a35-910c-cdabd3f01563" + "guid": "8b98285f-fc4c-4c22-acc9-7c86f182d274" } ] } @@ -25728,7 +25761,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "b431870c-4169-4ed7-b3b1-5e165b08e2eb" + "guid": "cd85c538-c221-4c27-8c0b-a417fa77f821" } ], "primaryDynamicLinkGroups": [], @@ -28254,7 +28287,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": "6985165e-5128-488c-b280-1532a4b66d7f" + "guid": "38bd5808-9164-4093-b44d-b0ad3d26f703" } } } @@ -28279,7 +28312,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": "6985165e-5128-488c-b280-1532a4b66d7f" + "guid": "38bd5808-9164-4093-b44d-b0ad3d26f703" } } } @@ -28304,7 +28337,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": "6985165e-5128-488c-b280-1532a4b66d7f" + "guid": "38bd5808-9164-4093-b44d-b0ad3d26f703" } } } @@ -28329,7 +28362,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": "6985165e-5128-488c-b280-1532a4b66d7f" + "guid": "38bd5808-9164-4093-b44d-b0ad3d26f703" } } } @@ -28480,7 +28513,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": "316c61be-ec29-4142-a073-ad5d1f25ec8b" + "guid": "9aeaef99-7107-4647-962b-ea9629608e69" } }, "Example 2": { @@ -28504,7 +28537,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": "316c61be-ec29-4142-a073-ad5d1f25ec8b" + "guid": "9aeaef99-7107-4647-962b-ea9629608e69" } }, "Example 2": { @@ -28528,7 +28561,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": "316c61be-ec29-4142-a073-ad5d1f25ec8b" + "guid": "9aeaef99-7107-4647-962b-ea9629608e69" } }, "Example 2": { @@ -28552,7 +28585,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": "316c61be-ec29-4142-a073-ad5d1f25ec8b" + "guid": "9aeaef99-7107-4647-962b-ea9629608e69" } }, "Example 2": { @@ -28781,7 +28814,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" + "guid": "bc0f4a20-66df-4817-9f63-4e1f21c3bdec" } }, "Example 3": { @@ -28814,7 +28847,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" + "guid": "bc0f4a20-66df-4817-9f63-4e1f21c3bdec" } }, "Example 3": { @@ -28847,7 +28880,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" + "guid": "bc0f4a20-66df-4817-9f63-4e1f21c3bdec" } }, "Example 3": { @@ -28880,7 +28913,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "f60799cc-68de-4629-a6bc-16740ecacb64" + "guid": "bc0f4a20-66df-4817-9f63-4e1f21c3bdec" } }, "Example 3": { @@ -29023,7 +29056,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" + "guid": "ad8a3528-bfed-4934-896c-bfd592f6e7b6" } }, "Example 2": { @@ -29038,7 +29071,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": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" + "guid": "72845293-5357-4a61-b765-23094f3278c6" } } } @@ -29055,7 +29088,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" + "guid": "ad8a3528-bfed-4934-896c-bfd592f6e7b6" } }, "Example 2": { @@ -29070,7 +29103,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": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" + "guid": "72845293-5357-4a61-b765-23094f3278c6" } } } @@ -29087,7 +29120,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" + "guid": "ad8a3528-bfed-4934-896c-bfd592f6e7b6" } }, "Example 2": { @@ -29102,7 +29135,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": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" + "guid": "72845293-5357-4a61-b765-23094f3278c6" } } } @@ -29119,7 +29152,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "4ff28aa0-64d8-4ef3-836d-5d564e28f23e" + "guid": "ad8a3528-bfed-4934-896c-bfd592f6e7b6" } }, "Example 2": { @@ -29134,7 +29167,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": "5d71fb47-d6fa-4274-ae8a-d5eca47ac160" + "guid": "72845293-5357-4a61-b765-23094f3278c6" } } } @@ -29738,8 +29771,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": "0093544d-ead1-4133-b4ba-fd16e962f851", - "guid": "39083468-a2ea-4886-b557-0e0c7870d604", + "versionGuid": "ddb8aac4-2e50-4962-bc09-ef6c41a81abd", + "guid": "d36f1e2e-d891-472e-a075-ccaf21a7f21e", "name": "MI Training (Updated)" } }, @@ -29764,8 +29797,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": "0093544d-ead1-4133-b4ba-fd16e962f851", - "guid": "39083468-a2ea-4886-b557-0e0c7870d604", + "versionGuid": "ddb8aac4-2e50-4962-bc09-ef6c41a81abd", + "guid": "d36f1e2e-d891-472e-a075-ccaf21a7f21e", "name": "MI Training (Updated)" } }, @@ -29790,8 +29823,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": "0093544d-ead1-4133-b4ba-fd16e962f851", - "guid": "39083468-a2ea-4886-b557-0e0c7870d604", + "versionGuid": "ddb8aac4-2e50-4962-bc09-ef6c41a81abd", + "guid": "d36f1e2e-d891-472e-a075-ccaf21a7f21e", "name": "MI Training (Updated)" } }, @@ -29816,8 +29849,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": "0093544d-ead1-4133-b4ba-fd16e962f851", - "guid": "39083468-a2ea-4886-b557-0e0c7870d604", + "versionGuid": "ddb8aac4-2e50-4962-bc09-ef6c41a81abd", + "guid": "d36f1e2e-d891-472e-a075-ccaf21a7f21e", "name": "MI Training (Updated)" } }, @@ -30823,7 +30856,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" + "guid": "340ed228-1515-460a-8c3c-e1a886e869fc" } } } @@ -30845,7 +30878,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" + "guid": "340ed228-1515-460a-8c3c-e1a886e869fc" } } } @@ -30867,7 +30900,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" + "guid": "340ed228-1515-460a-8c3c-e1a886e869fc" } } } @@ -30889,7 +30922,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "bbb8c527-41f3-4685-b83a-18bc61dff609" + "guid": "340ed228-1515-460a-8c3c-e1a886e869fc" } } } @@ -31627,7 +31660,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" + "guid": "34a7ca30-1e98-48b3-b36e-bd96b162b50c" } } } @@ -31648,7 +31681,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" + "guid": "34a7ca30-1e98-48b3-b36e-bd96b162b50c" } } } @@ -31669,7 +31702,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" + "guid": "34a7ca30-1e98-48b3-b36e-bd96b162b50c" } } } @@ -31690,7 +31723,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "08cfccaa-1cb5-4931-b92d-aa90d8894395" + "guid": "34a7ca30-1e98-48b3-b36e-bd96b162b50c" } } } @@ -32093,11 +32126,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "0c56ef94-a3ff-4ab7-a996-07e12d22b62a" + "guid": "b4e85b9a-6975-46a7-8403-7f15f8f145dc" }, { "name": "no-transform.xslt", - "guid": "9629abe9-d7c8-49e6-90bc-ddc5d2342d70" + "guid": "2c996c6f-b9f7-4062-a4b4-97e8522dec0d" } ] } @@ -32110,11 +32143,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "0c56ef94-a3ff-4ab7-a996-07e12d22b62a" + "guid": "b4e85b9a-6975-46a7-8403-7f15f8f145dc" }, { "name": "no-transform.xslt", - "guid": "9629abe9-d7c8-49e6-90bc-ddc5d2342d70" + "guid": "2c996c6f-b9f7-4062-a4b4-97e8522dec0d" } ] } @@ -32127,11 +32160,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "0c56ef94-a3ff-4ab7-a996-07e12d22b62a" + "guid": "b4e85b9a-6975-46a7-8403-7f15f8f145dc" }, { "name": "no-transform.xslt", - "guid": "9629abe9-d7c8-49e6-90bc-ddc5d2342d70" + "guid": "2c996c6f-b9f7-4062-a4b4-97e8522dec0d" } ] } @@ -32209,7 +32242,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "3ea7957d-be3c-4b98-927c-75ff7bb80f05" + "guid": "ba46eed6-c4ff-4c12-8fb1-fe35579c2b49" } }, "application/json": { @@ -32223,7 +32256,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "3ea7957d-be3c-4b98-927c-75ff7bb80f05" + "guid": "ba46eed6-c4ff-4c12-8fb1-fe35579c2b49" } }, "text/json": { @@ -32237,7 +32270,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "3ea7957d-be3c-4b98-927c-75ff7bb80f05" + "guid": "ba46eed6-c4ff-4c12-8fb1-fe35579c2b49" } } } @@ -32304,7 +32337,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "57fa99a8-8e68-4579-afe1-3c748f222c3b" + "guid": "ae7ff416-5866-44f3-bb36-0af86786045a" } }, "application/json": { @@ -32318,7 +32351,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "57fa99a8-8e68-4579-afe1-3c748f222c3b" + "guid": "ae7ff416-5866-44f3-bb36-0af86786045a" } }, "text/json": { @@ -32332,7 +32365,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "57fa99a8-8e68-4579-afe1-3c748f222c3b" + "guid": "ae7ff416-5866-44f3-bb36-0af86786045a" } } } @@ -32401,7 +32434,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" + "guid": "0d630aa3-c313-4e24-a413-4923795001ab" } } } @@ -32429,7 +32462,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" + "guid": "0d630aa3-c313-4e24-a413-4923795001ab" } } } @@ -32457,7 +32490,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" + "guid": "0d630aa3-c313-4e24-a413-4923795001ab" } } } @@ -32485,7 +32518,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "7204314f-fc98-402c-ad96-77fa1f1b5a82" + "guid": "0d630aa3-c313-4e24-a413-4923795001ab" } } } @@ -32507,7 +32540,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "de573f33-d029-464b-b4bd-7fe02cab59da" + "guid": "5dae76d2-0edf-4485-bb23-41a9c8060289" } }, "application/json": { @@ -32521,7 +32554,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "de573f33-d029-464b-b4bd-7fe02cab59da" + "guid": "5dae76d2-0edf-4485-bb23-41a9c8060289" } }, "text/json": { @@ -32535,7 +32568,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "de573f33-d029-464b-b4bd-7fe02cab59da" + "guid": "5dae76d2-0edf-4485-bb23-41a9c8060289" } } } @@ -32753,7 +32786,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2ab3a6ba-a41f-438d-8eac-fbc9e63cbafa" + "guid": "f77bf485-d311-4e37-91a2-5b69f460dfc7" } }, "application/json": { @@ -32767,7 +32800,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2ab3a6ba-a41f-438d-8eac-fbc9e63cbafa" + "guid": "f77bf485-d311-4e37-91a2-5b69f460dfc7" } }, "text/json": { @@ -32781,7 +32814,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2ab3a6ba-a41f-438d-8eac-fbc9e63cbafa" + "guid": "f77bf485-d311-4e37-91a2-5b69f460dfc7" } } } @@ -32924,7 +32957,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" + "guid": "a86e609d-d830-4a1f-906c-16f3f4f74fe0" } }, "Example 3": { @@ -32959,7 +32992,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" + "guid": "a86e609d-d830-4a1f-906c-16f3f4f74fe0" } }, "Example 3": { @@ -32994,7 +33027,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" + "guid": "a86e609d-d830-4a1f-906c-16f3f4f74fe0" } }, "Example 3": { @@ -33029,7 +33062,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "19efc89f-1c65-4539-8406-3bcfa3dc246d" + "guid": "a86e609d-d830-4a1f-906c-16f3f4f74fe0" } }, "Example 3": { @@ -33341,7 +33374,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" + "guid": "0926809f-219a-4ed8-864e-3f204f8c691c" } }, "Example 2": { @@ -33367,7 +33400,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" + "guid": "0926809f-219a-4ed8-864e-3f204f8c691c" } }, "Example 2": { @@ -33393,7 +33426,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" + "guid": "0926809f-219a-4ed8-864e-3f204f8c691c" } }, "Example 2": { @@ -33419,7 +33452,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "b338e631-d913-41c9-bffb-d82e9d83aa58" + "guid": "0926809f-219a-4ed8-864e-3f204f8c691c" } }, "Example 2": { @@ -34057,7 +34090,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": "5026bd87-0b39-4b7c-9332-933f272d832e" + "guid": "3aeae825-516f-4540-94bd-12f4d5fffcb9" } } } @@ -34078,7 +34111,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": "5026bd87-0b39-4b7c-9332-933f272d832e" + "guid": "3aeae825-516f-4540-94bd-12f4d5fffcb9" } } } @@ -34099,7 +34132,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": "5026bd87-0b39-4b7c-9332-933f272d832e" + "guid": "3aeae825-516f-4540-94bd-12f4d5fffcb9" } } } @@ -34120,7 +34153,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": "5026bd87-0b39-4b7c-9332-933f272d832e" + "guid": "3aeae825-516f-4540-94bd-12f4d5fffcb9" } } } @@ -34589,7 +34622,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "028e0297-2bc5-4fb6-93e2-d65836949838" + "guid": "9d1bb4f0-a145-4dae-b1d2-acd1be69ac7f" } }, "application/json": { @@ -34603,7 +34636,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "028e0297-2bc5-4fb6-93e2-d65836949838" + "guid": "9d1bb4f0-a145-4dae-b1d2-acd1be69ac7f" } }, "text/json": { @@ -34617,7 +34650,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "028e0297-2bc5-4fb6-93e2-d65836949838" + "guid": "9d1bb4f0-a145-4dae-b1d2-acd1be69ac7f" } } } @@ -34781,7 +34814,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" + "guid": "37d60ea9-5817-4ffe-9efd-892ad1f7d98a" } } } @@ -34809,7 +34842,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" + "guid": "37d60ea9-5817-4ffe-9efd-892ad1f7d98a" } } } @@ -34837,7 +34870,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" + "guid": "37d60ea9-5817-4ffe-9efd-892ad1f7d98a" } } } @@ -34865,7 +34898,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "476eaf04-6f46-4628-bb3d-1395ef557a41" + "guid": "37d60ea9-5817-4ffe-9efd-892ad1f7d98a" } } } @@ -34887,7 +34920,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d668fe84-c4e8-4c9d-ac75-edef75e5de4b" + "guid": "183bcf8f-ee68-430a-87bf-06101e18abdc" } }, "application/json": { @@ -34901,7 +34934,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d668fe84-c4e8-4c9d-ac75-edef75e5de4b" + "guid": "183bcf8f-ee68-430a-87bf-06101e18abdc" } }, "text/json": { @@ -34915,7 +34948,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d668fe84-c4e8-4c9d-ac75-edef75e5de4b" + "guid": "183bcf8f-ee68-430a-87bf-06101e18abdc" } } } @@ -35133,7 +35166,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "ba932613-382e-4185-8693-9bf6e18ddc34" + "guid": "3c875625-4c8b-468c-a3fc-7c066b151f5e" } }, "application/json": { @@ -35147,7 +35180,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "ba932613-382e-4185-8693-9bf6e18ddc34" + "guid": "3c875625-4c8b-468c-a3fc-7c066b151f5e" } }, "text/json": { @@ -35161,7 +35194,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "ba932613-382e-4185-8693-9bf6e18ddc34" + "guid": "3c875625-4c8b-468c-a3fc-7c066b151f5e" } } } @@ -35212,7 +35245,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "3ccf8640-6574-4bd3-a864-3771146bbd3f" + "guid": "af1858f9-0936-49cf-9fff-9efd2097c8ba" } ] } @@ -35230,7 +35263,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "3ccf8640-6574-4bd3-a864-3771146bbd3f" + "guid": "af1858f9-0936-49cf-9fff-9efd2097c8ba" } ] } @@ -35248,7 +35281,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "3ccf8640-6574-4bd3-a864-3771146bbd3f" + "guid": "af1858f9-0936-49cf-9fff-9efd2097c8ba" } ] } @@ -35478,7 +35511,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "35ad6f26-67dc-4d13-9e23-8df1f8598394" + "guid": "68bbe5e7-7c7d-4366-ae90-7174348af9aa" } }, "application/json": { @@ -35488,7 +35521,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "35ad6f26-67dc-4d13-9e23-8df1f8598394" + "guid": "68bbe5e7-7c7d-4366-ae90-7174348af9aa" } }, "text/json": { @@ -35498,7 +35531,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "35ad6f26-67dc-4d13-9e23-8df1f8598394" + "guid": "68bbe5e7-7c7d-4366-ae90-7174348af9aa" } } } @@ -35551,7 +35584,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": "daa70ac1-2fff-4d08-9096-c34f2455c496" + "guid": "79eee739-df77-4b37-b9ad-f9e2cecb4420" } } } @@ -35572,7 +35605,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": "daa70ac1-2fff-4d08-9096-c34f2455c496" + "guid": "79eee739-df77-4b37-b9ad-f9e2cecb4420" } } } @@ -35593,7 +35626,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": "daa70ac1-2fff-4d08-9096-c34f2455c496" + "guid": "79eee739-df77-4b37-b9ad-f9e2cecb4420" } } } @@ -35614,7 +35647,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": "daa70ac1-2fff-4d08-9096-c34f2455c496" + "guid": "79eee739-df77-4b37-b9ad-f9e2cecb4420" } } } @@ -35742,7 +35775,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "b4a2ef25-bf5c-4167-b492-20d5faddce4e" + "guid": "33d5b8ff-96a7-4b6e-b8c0-8bbc849f092b" } ] } @@ -35756,7 +35789,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "b4a2ef25-bf5c-4167-b492-20d5faddce4e" + "guid": "33d5b8ff-96a7-4b6e-b8c0-8bbc849f092b" } ] } @@ -35770,7 +35803,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "b4a2ef25-bf5c-4167-b492-20d5faddce4e" + "guid": "33d5b8ff-96a7-4b6e-b8c0-8bbc849f092b" } ] } @@ -35952,11 +35985,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "d95b289c-3b6a-4c05-a327-778b93142f59" + "guid": "1065be13-e38c-4b88-84b9-1ef248c7ec39" }, { "name": "home-page-2.html", - "guid": "9c3dece7-9d0a-4671-b333-bbdcb4d9aeef" + "guid": "03683e63-a401-4d01-8a25-c8b498c6e125" } ] } @@ -35969,11 +36002,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "d95b289c-3b6a-4c05-a327-778b93142f59" + "guid": "1065be13-e38c-4b88-84b9-1ef248c7ec39" }, { "name": "home-page-2.html", - "guid": "9c3dece7-9d0a-4671-b333-bbdcb4d9aeef" + "guid": "03683e63-a401-4d01-8a25-c8b498c6e125" } ] } @@ -35986,11 +36019,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "d95b289c-3b6a-4c05-a327-778b93142f59" + "guid": "1065be13-e38c-4b88-84b9-1ef248c7ec39" }, { "name": "home-page-2.html", - "guid": "9c3dece7-9d0a-4671-b333-bbdcb4d9aeef" + "guid": "03683e63-a401-4d01-8a25-c8b498c6e125" } ] } @@ -36068,7 +36101,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9536dfd7-87e2-4c80-a716-d88ded1bc4b6" + "guid": "826911cc-ac95-47c9-be65-ed32e867e8a6" } }, "application/json": { @@ -36082,7 +36115,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9536dfd7-87e2-4c80-a716-d88ded1bc4b6" + "guid": "826911cc-ac95-47c9-be65-ed32e867e8a6" } }, "text/json": { @@ -36096,7 +36129,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9536dfd7-87e2-4c80-a716-d88ded1bc4b6" + "guid": "826911cc-ac95-47c9-be65-ed32e867e8a6" } } } @@ -36163,7 +36196,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "fb3857fd-e5b8-4656-a75e-300eaa4562ab" + "guid": "6518257d-b45d-40df-948e-8752cab81af9" } }, "application/json": { @@ -36177,7 +36210,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "fb3857fd-e5b8-4656-a75e-300eaa4562ab" + "guid": "6518257d-b45d-40df-948e-8752cab81af9" } }, "text/json": { @@ -36191,7 +36224,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "fb3857fd-e5b8-4656-a75e-300eaa4562ab" + "guid": "6518257d-b45d-40df-948e-8752cab81af9" } } } @@ -36260,7 +36293,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": "ceb91e09-9699-41b0-b981-48cb25e6115d" + "guid": "892c1029-2e8b-4bb4-bf69-ad277947b5a8" } } } @@ -36288,7 +36321,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": "ceb91e09-9699-41b0-b981-48cb25e6115d" + "guid": "892c1029-2e8b-4bb4-bf69-ad277947b5a8" } } } @@ -36316,7 +36349,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": "ceb91e09-9699-41b0-b981-48cb25e6115d" + "guid": "892c1029-2e8b-4bb4-bf69-ad277947b5a8" } } } @@ -36344,7 +36377,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": "ceb91e09-9699-41b0-b981-48cb25e6115d" + "guid": "892c1029-2e8b-4bb4-bf69-ad277947b5a8" } } } @@ -36366,7 +36399,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5842cf1f-0332-44ca-8d8b-58cf7547f812" + "guid": "20d0bdd0-1bf7-46af-9de4-6c7f42438064" } }, "application/json": { @@ -36380,7 +36413,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5842cf1f-0332-44ca-8d8b-58cf7547f812" + "guid": "20d0bdd0-1bf7-46af-9de4-6c7f42438064" } }, "text/json": { @@ -36394,7 +36427,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "5842cf1f-0332-44ca-8d8b-58cf7547f812" + "guid": "20d0bdd0-1bf7-46af-9de4-6c7f42438064" } } } @@ -36612,7 +36645,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9931369f-9d29-41f6-9642-de5e8d542122" + "guid": "be4babba-e3df-4a9e-8536-27e8e2c9af82" } }, "application/json": { @@ -36626,7 +36659,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9931369f-9d29-41f6-9642-de5e8d542122" + "guid": "be4babba-e3df-4a9e-8536-27e8e2c9af82" } }, "text/json": { @@ -36640,7 +36673,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "9931369f-9d29-41f6-9642-de5e8d542122" + "guid": "be4babba-e3df-4a9e-8536-27e8e2c9af82" } } } @@ -36772,9 +36805,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "9c6c56e3-e76d-4db7-84b3-a927650f7584", + "underlyingEntityGuid": "081ba230-8230-49be-aee2-10f3df6d73c9", "name": "Price", - "guid": "7b52a91e-2c1b-4253-bce9-c13b80fc0832" + "guid": "8409d747-aa93-4238-9da7-eeeeef0160a3" }, { "itemType": "attribute", @@ -36782,9 +36815,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "7c9f4c04-44fb-41ed-a787-bb061629094e", + "underlyingEntityGuid": "57f9e2d7-b155-4a39-9b9a-81084471ee2a", "name": "Density", - "guid": "c9321bef-7252-4cb6-b179-9785499489f6" + "guid": "4097cc74-ff1e-412e-aec4-43368937d93b" } ], "displayNames": { @@ -36803,9 +36836,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "7b89fdb8-46bd-4086-9dab-2fa074a631a1", + "underlyingEntityGuid": "0763d5f0-d447-40d4-9d4c-9c0379a558f7", "name": "Young's modulus", - "guid": "227c9b17-9277-4502-82a5-e5d2ee7207a7" + "guid": "3858cd5b-f79d-4a3f-a40f-034397dbf78b" }, { "itemType": "attribute", @@ -36813,9 +36846,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "e44b28e6-2725-452d-a2e6-a7827dbcda9a", + "underlyingEntityGuid": "d0f8d2d6-b604-4eed-baec-5a4e2fe8ae81", "name": "Tensile strength", - "guid": "943afbe4-0587-4d14-9e27-e88fc1a9db5c" + "guid": "a40841f8-665d-4dd4-8b0e-b5185c646012" }, { "itemType": "attribute", @@ -36823,9 +36856,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "66bd0fd7-0c86-4233-95ac-a401d9dc250f", + "underlyingEntityGuid": "34ddbeca-8a09-4f4d-8d99-f5efa335b025", "name": "Shape factor", - "guid": "fe829d19-38d3-4550-a259-1ccafb12e3c5" + "guid": "20fae11c-634d-4ce2-8ef9-49f7638d063b" } ], "displayNames": { @@ -36900,7 +36933,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": "d09e92dd-d0a5-4089-bce2-b637a71b6934" + "guid": "d441a64c-001d-48da-a04e-68c0682ad745" } } } @@ -36922,7 +36955,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": "d09e92dd-d0a5-4089-bce2-b637a71b6934" + "guid": "d441a64c-001d-48da-a04e-68c0682ad745" } } } @@ -36944,7 +36977,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": "d09e92dd-d0a5-4089-bce2-b637a71b6934" + "guid": "d441a64c-001d-48da-a04e-68c0682ad745" } } } @@ -36966,7 +36999,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": "d09e92dd-d0a5-4089-bce2-b637a71b6934" + "guid": "d441a64c-001d-48da-a04e-68c0682ad745" } } } @@ -36985,7 +37018,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "eeff9c4b-7ca7-47c2-8434-ad1482dfb8e7" + "guid": "f4a59ce8-60eb-47bd-a74b-8317927d649c" } } } @@ -37628,7 +37661,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "1c0011fb-9c6a-4dcd-b849-ba38d65790df" + "guid": "5b818ff0-7e80-4ff2-8c3a-4e984c11fdb0" } }, "Example 2": { @@ -37643,9 +37676,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "0b2fd191-97c7-4cc1-92ca-bfd0eceb2c44", + "underlyingEntityGuid": "21c3429f-d8da-475c-a612-2e3fb6261c27", "name": "Form", - "guid": "71787919-0224-43c3-a4b9-24c5048938b9" + "guid": "34a25b8e-797f-43c8-9028-fe7545db3fb9" }, { "itemType": "attribute", @@ -37658,34 +37691,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "82c13adf-cd69-4fe4-8823-40a94c33eaba", + "underlyingEntityGuid": "65b2b697-054d-4d64-b1d9-e6f2c8ab5f21", "name": "Sources", - "guid": "6506021b-527a-4ad5-b35b-4df1c3dc9d10" + "guid": "73c75a3b-ab92-45a3-9fd5-febc7963d4a5" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "db59168d-ac41-4d17-9825-c80924f7f53e", + "underlyingEntityGuid": "3769af4a-9083-4782-9110-d805587c499d", "name": "Notes", - "guid": "5f2affc0-2916-4efe-8825-e61d731c043e" + "guid": "2178c579-53bd-4422-9e24-60ff46cd6770" } ], - "underlyingEntityGuid": "9fe6dcb2-5983-4d26-bf3b-3aadf75d7e7e", + "underlyingEntityGuid": "6a666d05-2abf-488d-9b1c-ca0ace959a05", "name": "Chemical resistance", - "guid": "f2f72bd6-13ce-4a8b-9ed7-ddb11f06b127" + "guid": "2a414f91-b28c-4983-8a9f-4cc1dd452a0b" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "8db186f6-a320-49d1-92cb-880d9c85c566", - "targetDatabaseVersion": "4b4249a0-1db1-4ebf-b2e4-d9a92a5fac8b", - "targetTable": "d1d7169b-dc7d-4e01-a7fa-db9b6a45e171", + "targetDatabase": "1bd2e502-8b75-4ce9-9b1a-693771edc94d", + "targetDatabaseVersion": "7c845ef2-97c5-49bd-93cc-704a5afd9ed7", + "targetTable": "c3676520-b31b-4d19-824c-c06678f3a76d", "forwards": true, - "underlyingEntityGuid": "0e0b6ab6-8a71-40aa-963d-e8b5570d6472", + "underlyingEntityGuid": "4cac7904-d13a-4a3b-a892-f33a00f54328", "name": "Material Pedigree", - "guid": "71f011d2-2a6b-4322-acf5-8397d1b3d6df" + "guid": "935a1209-51dc-4c44-bcdc-372fec28a3b7" }, { "itemType": "attribute", @@ -37696,42 +37729,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "29a8271d-096d-49a1-9eb3-01f221891ec1", + "tabularColumnGuid": "f9b8336c-09a9-4edb-b9a2-6695936402dd", "name": "Offset Yield Stress", - "guid": "a2c380c3-58e3-4e44-8b29-13a3eb51ceab" + "guid": "1d7a51de-a277-4a20-86e0-b4ac621d25c7" }, { "columnType": "localShortText", - "tabularColumnGuid": "0438375c-0935-417b-acb7-694e5e9fedcd", + "tabularColumnGuid": "c8d24742-f32d-44bd-90f9-f27aaf693b03", "name": "Young's Modulus Notes", - "guid": "98616c02-8c9b-444d-b8da-8eace08ecd4c" + "guid": "0b5e22a7-fb8d-422b-b1a4-4c05bd92a23d" } ], - "underlyingEntityGuid": "90470472-cf17-46ac-9c1c-f9f16a491562", + "underlyingEntityGuid": "c11c8e84-3913-46cc-9fc8-d8006d573742", "name": "Reference Characteristics", - "guid": "f850b2aa-587b-433e-aa3d-bfada2613e0a" + "guid": "a06145ae-76b0-4972-8847-39c6a703ea9b" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "8db186f6-a320-49d1-92cb-880d9c85c566", - "targetDatabaseVersion": "4b4249a0-1db1-4ebf-b2e4-d9a92a5fac8b", - "targetTable": "b43b3832-f4ee-48c3-b190-472f619d88cd", + "targetDatabase": "1bd2e502-8b75-4ce9-9b1a-693771edc94d", + "targetDatabaseVersion": "7c845ef2-97c5-49bd-93cc-704a5afd9ed7", + "targetTable": "c80faf82-2ea9-433e-94f1-a9d794d1c88e", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "8db186f6-a320-49d1-92cb-880d9c85c566", - "targetDatabaseVersion": "4b4249a0-1db1-4ebf-b2e4-d9a92a5fac8b", - "targetTable": "f43fe682-21a3-4a4c-948a-48cbf31f66a8", + "targetDatabase": "1bd2e502-8b75-4ce9-9b1a-693771edc94d", + "targetDatabaseVersion": "7c845ef2-97c5-49bd-93cc-704a5afd9ed7", + "targetTable": "a3d50408-a955-49e5-a6f4-a6ba07be7019", "forwards": false, - "underlyingEntityGuid": "98e0b83c-078e-4817-9e71-df33abac2e1e", + "underlyingEntityGuid": "52b13b1c-58a2-474a-8acd-cc14f048234b", "name": "Pedigree information", - "guid": "3b7b366c-a23d-4a9a-b0fa-e7a583afc451" + "guid": "2d57f12e-325e-44e9-bde9-9e0ee662c000" }, - "underlyingEntityGuid": "00204060-37db-45d2-a507-b0caade069b4", + "underlyingEntityGuid": "27c3c2ac-03b7-4d18-94f2-972813eb6547", "name": "To Pedigree from Producers", - "guid": "0ad12d2e-a6ec-45be-986b-63693943084e" + "guid": "8bb6e77d-41b4-4937-b970-7355332c8e97" } ], "displayNames": { @@ -37739,7 +37772,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "f1eb1238-c5a0-46e7-b1cc-f9c949340402" + "guid": "4b6b9527-4f8f-496a-bdfa-95c811930c5b" } } } @@ -37929,9 +37962,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": "e757130d-0739-48c4-ada8-a2908f7b1a36", - "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", - "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" + "sourceDatabaseGuid": "90275315-4cb0-4540-b9d2-fa8b7c322ffd", + "sourceTableGuid": "d963c229-75ad-40ca-9ce7-c46686f03ca9", + "linkGroupGuid": "cc90c9e9-56f4-4bde-a6df-8aa389b61239" } }, "Example 8": { @@ -37943,13 +37976,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", - "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" + "sourceDatabaseVersionGuid": "76fbc779-73f1-4b41-b8c1-3b985989493a", + "tabularAttributeGuid": "136293f4-0e51-41ca-b8ce-f040640aab5e" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", - "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" + "sourceDatabaseVersionGuid": "1a2b9cfa-a5a9-4b98-8047-2b183a05f72d", + "tabularAttributeGuid": "18f8a332-202f-44e6-bccc-2701fb3efe7d" } ] } @@ -38029,9 +38062,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": "e757130d-0739-48c4-ada8-a2908f7b1a36", - "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", - "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" + "sourceDatabaseGuid": "90275315-4cb0-4540-b9d2-fa8b7c322ffd", + "sourceTableGuid": "d963c229-75ad-40ca-9ce7-c46686f03ca9", + "linkGroupGuid": "cc90c9e9-56f4-4bde-a6df-8aa389b61239" } }, "Example 8": { @@ -38043,13 +38076,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", - "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" + "sourceDatabaseVersionGuid": "76fbc779-73f1-4b41-b8c1-3b985989493a", + "tabularAttributeGuid": "136293f4-0e51-41ca-b8ce-f040640aab5e" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", - "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" + "sourceDatabaseVersionGuid": "1a2b9cfa-a5a9-4b98-8047-2b183a05f72d", + "tabularAttributeGuid": "18f8a332-202f-44e6-bccc-2701fb3efe7d" } ] } @@ -38129,9 +38162,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": "e757130d-0739-48c4-ada8-a2908f7b1a36", - "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", - "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" + "sourceDatabaseGuid": "90275315-4cb0-4540-b9d2-fa8b7c322ffd", + "sourceTableGuid": "d963c229-75ad-40ca-9ce7-c46686f03ca9", + "linkGroupGuid": "cc90c9e9-56f4-4bde-a6df-8aa389b61239" } }, "Example 8": { @@ -38143,13 +38176,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", - "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" + "sourceDatabaseVersionGuid": "76fbc779-73f1-4b41-b8c1-3b985989493a", + "tabularAttributeGuid": "136293f4-0e51-41ca-b8ce-f040640aab5e" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", - "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" + "sourceDatabaseVersionGuid": "1a2b9cfa-a5a9-4b98-8047-2b183a05f72d", + "tabularAttributeGuid": "18f8a332-202f-44e6-bccc-2701fb3efe7d" } ] } @@ -38229,9 +38262,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": "e757130d-0739-48c4-ada8-a2908f7b1a36", - "sourceTableGuid": "b45646c8-b76f-4744-bd87-5f9253966883", - "linkGroupGuid": "835391af-cb1c-462e-a539-45bc6d77f752" + "sourceDatabaseGuid": "90275315-4cb0-4540-b9d2-fa8b7c322ffd", + "sourceTableGuid": "d963c229-75ad-40ca-9ce7-c46686f03ca9", + "linkGroupGuid": "cc90c9e9-56f4-4bde-a6df-8aa389b61239" } }, "Example 8": { @@ -38243,13 +38276,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "9bc3f7a1-a4ce-4a3d-8e6c-b188b920384a", - "tabularAttributeGuid": "ef6740ec-9a1f-4ef7-9803-c3307131d303" + "sourceDatabaseVersionGuid": "76fbc779-73f1-4b41-b8c1-3b985989493a", + "tabularAttributeGuid": "136293f4-0e51-41ca-b8ce-f040640aab5e" }, { "forwards": false, - "sourceDatabaseVersionGuid": "0707c9cb-6349-4ae9-90d8-211050482b4e", - "tabularAttributeGuid": "77bdc706-205e-42ad-8825-17eac3bf0d6b" + "sourceDatabaseVersionGuid": "1a2b9cfa-a5a9-4b98-8047-2b183a05f72d", + "tabularAttributeGuid": "18f8a332-202f-44e6-bccc-2701fb3efe7d" } ] } @@ -38277,7 +38310,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "2d61f580-5111-4cfd-ba34-4b4564ed4be9" + "guid": "6a2a1578-279f-4f30-8407-2b190257916b" } }, "Example 2": { @@ -38297,7 +38330,7 @@ } ], "tabularColumnGuids": null, - "guid": "b6a1d9b5-0680-44bd-84ed-5434d7b4dcc4" + "guid": "6a4106bb-e2c3-4d46-b4b0-be9f082f18b6" } }, "Example 3": { @@ -38341,9 +38374,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": "31a7ac10-cc7f-4b8b-aa0f-572953115351", - "sourceTableGuid": "078d60d9-e3e4-4261-9ac0-bc731e9252a8", - "linkGroupGuid": "af12efcc-8516-4594-ba8c-41ff9edbdc44", + "sourceDatabaseGuid": "f553744b-c729-41e6-b310-e03558348ba6", + "sourceTableGuid": "d50d6812-0dcc-4612-bb9a-d67f388a6c3f", + "linkGroupGuid": "f56fa4d2-7bb0-45c8-8097-281988f01104", "guid": null } }, @@ -38357,12 +38390,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "41a061d8-54ef-4134-a592-ec661d5af89d" + "tabularAttributeGuid": "85b88433-d783-45a4-9155-7941559a798d" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "046cf4e1-0d29-4546-b0d4-1ee0e95d9802" + "tabularAttributeGuid": "56e4622c-8ed4-4fac-b915-06db51a617ce" } ], "guid": null @@ -38595,7 +38628,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "43469621-d8b0-4e62-b5ab-7ad618d82259" + "guid": "cea0d8ca-f499-4ba6-be7d-7555f85eaba7" } }, "Example 3": { @@ -38628,7 +38661,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "43469621-d8b0-4e62-b5ab-7ad618d82259" + "guid": "cea0d8ca-f499-4ba6-be7d-7555f85eaba7" } }, "Example 3": { @@ -38661,7 +38694,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "43469621-d8b0-4e62-b5ab-7ad618d82259" + "guid": "cea0d8ca-f499-4ba6-be7d-7555f85eaba7" } }, "Example 3": { @@ -38694,7 +38727,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": "43469621-d8b0-4e62-b5ab-7ad618d82259" + "guid": "cea0d8ca-f499-4ba6-be7d-7555f85eaba7" } }, "Example 3": { @@ -38724,7 +38757,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "c3cee5e0-bc63-4474-9b0c-2f381807bbfc" + "guid": "45a8eea8-a66f-4a2d-8b4b-6796ec50bcef" } } } @@ -38863,9 +38896,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "34eea884-6c18-4ae1-bf8f-f174a20edf26", + "underlyingEntityGuid": "11e70179-18bc-4ca4-bcf4-e918ec13a8a2", "name": "Price", - "guid": "92edcd6c-dc95-41b2-97ed-c50192288da1" + "guid": "42051c7e-2b04-43bc-bbe9-74b93c56716e" }, { "itemType": "attribute", @@ -38873,9 +38906,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "6a43cc6b-d8e7-44ff-a198-f803b997bd7b", + "underlyingEntityGuid": "4104cdd5-f72f-4889-ba2f-1749aab5755c", "name": "Density", - "guid": "dd302033-5d9d-4851-9906-8e0d93777313" + "guid": "7b359647-179a-4265-b3c2-ea5cae24e125" } ], "displayNames": { @@ -38894,9 +38927,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "46ab2a6a-fab7-4c1f-adae-4f1291b91e2e", + "underlyingEntityGuid": "5c771104-c9ab-4ce9-bbb2-8b3a8e65f5bb", "name": "Young's modulus", - "guid": "d1f35e5f-20c8-49a7-aa90-9d80a0cd5a9b" + "guid": "4e70f412-e352-4880-9070-220c0fd1f744" }, { "itemType": "attribute", @@ -38904,9 +38937,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "9335e6d5-d5f8-49b7-b832-486bff9ab6b8", + "underlyingEntityGuid": "92dd9e67-b33b-4fed-87c3-6f0c3f2e61b7", "name": "Tensile strength", - "guid": "b0ac34dc-a03c-4232-9b51-1e38e3613e9d" + "guid": "fbc0ba17-8d4c-4777-9107-f8deada2b81c" }, { "itemType": "attribute", @@ -38914,9 +38947,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "bb0f94d8-604f-4c93-a983-6930765224b1", + "underlyingEntityGuid": "920bdf57-c2de-48f0-baa1-885cad083b97", "name": "Shape factor", - "guid": "53e173a8-88e3-4f45-a932-aa967af92612" + "guid": "31c3acc0-4aa2-486b-96b9-f0e8d8a8d4ef" } ], "displayNames": { @@ -38995,7 +39028,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" + "guid": "27ae3c36-6b85-4e30-a6b9-af4831cb0060" } }, "Example 2": { @@ -39028,7 +39061,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" + "guid": "27ae3c36-6b85-4e30-a6b9-af4831cb0060" } }, "Example 2": { @@ -39061,7 +39094,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" + "guid": "27ae3c36-6b85-4e30-a6b9-af4831cb0060" } }, "Example 2": { @@ -39094,7 +39127,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "32af9ff9-964a-4c65-b2e7-0199c6c504ca" + "guid": "27ae3c36-6b85-4e30-a6b9-af4831cb0060" } }, "Example 2": { @@ -39127,7 +39160,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "f33d7b8a-906b-4b06-9c30-f083db8869fb" + "guid": "ea45ee4c-20a5-454e-b524-022a3209b813" } } } @@ -39424,7 +39457,7 @@ { "type": "discrete", "name": "Red", - "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" + "guid": "73c16a59-c70c-4c85-a0df-bdc453befd1f" }, { "type": "discrete", @@ -39434,7 +39467,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" + "guid": "c373a636-8466-47b1-9fd3-4066341de9d2" } }, "Example 3": { @@ -39562,7 +39595,7 @@ { "type": "discrete", "name": "Red", - "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" + "guid": "73c16a59-c70c-4c85-a0df-bdc453befd1f" }, { "type": "discrete", @@ -39572,7 +39605,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" + "guid": "c373a636-8466-47b1-9fd3-4066341de9d2" } }, "Example 3": { @@ -39700,7 +39733,7 @@ { "type": "discrete", "name": "Red", - "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" + "guid": "73c16a59-c70c-4c85-a0df-bdc453befd1f" }, { "type": "discrete", @@ -39710,7 +39743,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" + "guid": "c373a636-8466-47b1-9fd3-4066341de9d2" } }, "Example 3": { @@ -39838,7 +39871,7 @@ { "type": "discrete", "name": "Red", - "guid": "ecca1fce-7bd5-4e2a-bef0-b909d0758d9e" + "guid": "73c16a59-c70c-4c85-a0df-bdc453befd1f" }, { "type": "discrete", @@ -39848,7 +39881,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "0e61ef77-c7cf-45b2-ba51-aaf3a18e4cef" + "guid": "c373a636-8466-47b1-9fd3-4066341de9d2" } }, "Example 3": { @@ -40116,7 +40149,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" + "guid": "373d05f2-fbc4-44c5-8fb3-389a7e294206" } }, "Example 2": { @@ -40127,7 +40160,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" + "guid": "db84f408-996c-4b29-bf98-468a094d2cac" } }, "Example 3": { @@ -40135,7 +40168,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": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" + "guid": "d5f4abea-a4b2-41e2-be99-e22f2791b3c8" } }, "Example 4": { @@ -40154,7 +40187,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" + "guid": "1e653881-f017-414b-9379-6ef4e527c663" } }, "Example 6": { @@ -40194,7 +40227,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" + "guid": "373d05f2-fbc4-44c5-8fb3-389a7e294206" } }, "Example 2": { @@ -40205,7 +40238,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" + "guid": "db84f408-996c-4b29-bf98-468a094d2cac" } }, "Example 3": { @@ -40213,7 +40246,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": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" + "guid": "d5f4abea-a4b2-41e2-be99-e22f2791b3c8" } }, "Example 4": { @@ -40232,7 +40265,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" + "guid": "1e653881-f017-414b-9379-6ef4e527c663" } }, "Example 6": { @@ -40272,7 +40305,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" + "guid": "373d05f2-fbc4-44c5-8fb3-389a7e294206" } }, "Example 2": { @@ -40283,7 +40316,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" + "guid": "db84f408-996c-4b29-bf98-468a094d2cac" } }, "Example 3": { @@ -40291,7 +40324,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": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" + "guid": "d5f4abea-a4b2-41e2-be99-e22f2791b3c8" } }, "Example 4": { @@ -40310,7 +40343,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" + "guid": "1e653881-f017-414b-9379-6ef4e527c663" } }, "Example 6": { @@ -40350,7 +40383,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "3c970558-a445-4d88-94ee-6ed8e188efbd" + "guid": "373d05f2-fbc4-44c5-8fb3-389a7e294206" } }, "Example 2": { @@ -40361,7 +40394,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "47d2032c-58fa-4409-9f0b-20e1d9e9a80f" + "guid": "db84f408-996c-4b29-bf98-468a094d2cac" } }, "Example 3": { @@ -40369,7 +40402,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": "82d4d787-4d01-42d2-b1e7-b1cc729ec058" + "guid": "d5f4abea-a4b2-41e2-be99-e22f2791b3c8" } }, "Example 4": { @@ -40388,7 +40421,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "fa40cdc4-c1a7-4826-9a55-1062b2b121c6" + "guid": "1e653881-f017-414b-9379-6ef4e527c663" } }, "Example 6": { @@ -40681,7 +40714,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" + "guid": "72c9e0cf-f5a0-4b39-b7ef-c71cc6e5dbcc" } }, "Example 2": { @@ -40690,7 +40723,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" + "guid": "8dbafb67-8068-47c7-97bf-733387003c81" } }, "Example 3": { @@ -40698,7 +40731,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": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" + "guid": "0771914e-e30d-4a94-9700-e143922d96da" } } } @@ -40715,7 +40748,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" + "guid": "72c9e0cf-f5a0-4b39-b7ef-c71cc6e5dbcc" } }, "Example 2": { @@ -40724,7 +40757,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" + "guid": "8dbafb67-8068-47c7-97bf-733387003c81" } }, "Example 3": { @@ -40732,7 +40765,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": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" + "guid": "0771914e-e30d-4a94-9700-e143922d96da" } } } @@ -40749,7 +40782,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" + "guid": "72c9e0cf-f5a0-4b39-b7ef-c71cc6e5dbcc" } }, "Example 2": { @@ -40758,7 +40791,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" + "guid": "8dbafb67-8068-47c7-97bf-733387003c81" } }, "Example 3": { @@ -40766,7 +40799,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": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" + "guid": "0771914e-e30d-4a94-9700-e143922d96da" } } } @@ -40783,7 +40816,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "67cbc2bf-d1af-4156-a2f2-8145202a0f33" + "guid": "72c9e0cf-f5a0-4b39-b7ef-c71cc6e5dbcc" } }, "Example 2": { @@ -40792,7 +40825,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "7a174b35-a84f-4652-9c7b-c3384f5e346e" + "guid": "8dbafb67-8068-47c7-97bf-733387003c81" } }, "Example 3": { @@ -40800,7 +40833,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": "9cbd3ef5-2b16-403e-a44c-150f83f2809f" + "guid": "0771914e-e30d-4a94-9700-e143922d96da" } } } @@ -41456,7 +41489,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" + "guid": "ef3e8563-1d75-43d1-b228-b61743ef33d4" } }, "Example 3": { @@ -41467,7 +41500,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" + "guid": "8fbd3f05-7a39-440b-bd62-981c35b8b8aa" } } } @@ -41489,7 +41522,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" + "guid": "ef3e8563-1d75-43d1-b228-b61743ef33d4" } }, "Example 3": { @@ -41500,7 +41533,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" + "guid": "8fbd3f05-7a39-440b-bd62-981c35b8b8aa" } } } @@ -41522,7 +41555,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" + "guid": "ef3e8563-1d75-43d1-b228-b61743ef33d4" } }, "Example 3": { @@ -41533,7 +41566,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" + "guid": "8fbd3f05-7a39-440b-bd62-981c35b8b8aa" } } } @@ -41555,7 +41588,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": "2034dcd0-0c7c-4676-bbb0-d5fe7c1050c3" + "guid": "ef3e8563-1d75-43d1-b228-b61743ef33d4" } }, "Example 3": { @@ -41566,7 +41599,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "ce8dbbd7-664d-4f46-a3b3-c7c17daa4ef5" + "guid": "8fbd3f05-7a39-440b-bd62-981c35b8b8aa" } } } @@ -41708,7 +41741,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": "11d94a63-d377-4823-9137-2390b1383eff" + "guid": "8697d497-c726-4df1-b9a7-b6da369f5330" } }, "Example 2": { @@ -41728,7 +41761,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", + "guid": "e585b9fa-7097-446f-89c6-8b2bea915ac5", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41744,7 +41777,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": "11d94a63-d377-4823-9137-2390b1383eff" + "guid": "8697d497-c726-4df1-b9a7-b6da369f5330" } }, "Example 2": { @@ -41764,7 +41797,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", + "guid": "e585b9fa-7097-446f-89c6-8b2bea915ac5", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41780,7 +41813,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": "11d94a63-d377-4823-9137-2390b1383eff" + "guid": "8697d497-c726-4df1-b9a7-b6da369f5330" } }, "Example 2": { @@ -41800,7 +41833,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", + "guid": "e585b9fa-7097-446f-89c6-8b2bea915ac5", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41816,7 +41849,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": "11d94a63-d377-4823-9137-2390b1383eff" + "guid": "8697d497-c726-4df1-b9a7-b6da369f5330" } }, "Example 2": { @@ -41836,7 +41869,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "3de0cf14-5ca6-4a96-a9f5-69fbc8d1aeda", + "guid": "e585b9fa-7097-446f-89c6-8b2bea915ac5", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -42018,7 +42051,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" + "guid": "5b98a977-100c-4a30-aa58-472ebb40f909" } }, "Example 3": { @@ -42029,7 +42062,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" + "guid": "46b1185b-780a-4a7d-821d-a1ff73227055" } } } @@ -42053,7 +42086,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" + "guid": "5b98a977-100c-4a30-aa58-472ebb40f909" } }, "Example 3": { @@ -42064,7 +42097,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" + "guid": "46b1185b-780a-4a7d-821d-a1ff73227055" } } } @@ -42088,7 +42121,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" + "guid": "5b98a977-100c-4a30-aa58-472ebb40f909" } }, "Example 3": { @@ -42099,7 +42132,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" + "guid": "46b1185b-780a-4a7d-821d-a1ff73227055" } } } @@ -42123,7 +42156,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "c80e7b1f-df04-4f8f-974c-36fa7465a503" + "guid": "5b98a977-100c-4a30-aa58-472ebb40f909" } }, "Example 3": { @@ -42134,7 +42167,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "369724ba-0c13-4524-bdb3-fa33b8917ed7" + "guid": "46b1185b-780a-4a7d-821d-a1ff73227055" } } } @@ -42271,7 +42304,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" + "guid": "7cd34cca-e026-49c9-8308-62630a358496" } }, "Example 2": { @@ -42286,7 +42319,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": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" + "guid": "92c44e76-c163-434e-9f3d-ed7e22376ada" } } } @@ -42302,7 +42335,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" + "guid": "7cd34cca-e026-49c9-8308-62630a358496" } }, "Example 2": { @@ -42317,7 +42350,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": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" + "guid": "92c44e76-c163-434e-9f3d-ed7e22376ada" } } } @@ -42333,7 +42366,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" + "guid": "7cd34cca-e026-49c9-8308-62630a358496" } }, "Example 2": { @@ -42348,7 +42381,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": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" + "guid": "92c44e76-c163-434e-9f3d-ed7e22376ada" } } } @@ -42364,7 +42397,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "9600ce83-a78c-443d-91f8-fddf3fae7471" + "guid": "7cd34cca-e026-49c9-8308-62630a358496" } }, "Example 2": { @@ -42379,7 +42412,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": "e861f7a9-3b88-4a81-9cd4-00b8606255b5" + "guid": "92c44e76-c163-434e-9f3d-ed7e22376ada" } } } @@ -42549,7 +42582,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "1e319716-05e2-4149-9c11-13e54e06285a" + "guid": "7e4b100f-427a-47ac-9acd-bd7d946b3f0b" } ] } @@ -42619,7 +42652,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" + "guid": "4d6d8780-c652-4a20-a0a4-289f829faac5" } }, "Example 3": { @@ -42629,7 +42662,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" + "tableGuid": "e830886a-696a-4826-9d2d-45f2c362993c" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42642,12 +42675,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", - "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" + "databaseGuid": "cb844416-8d8f-4cfe-8933-26e0edd7bcce", + "tableGuid": "7ef5fc4d-c490-47fe-90e4-2dded58c8ac3" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" + "guid": "efcc3d69-8c69-42f3-af7d-6e1c9254e269" } }, "Example 5": { @@ -42694,7 +42727,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" + "guid": "27201d92-de48-4951-9bde-d1dc3f5e7990" } } } @@ -42730,7 +42763,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" + "guid": "4d6d8780-c652-4a20-a0a4-289f829faac5" } }, "Example 3": { @@ -42740,7 +42773,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" + "tableGuid": "e830886a-696a-4826-9d2d-45f2c362993c" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42753,12 +42786,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", - "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" + "databaseGuid": "cb844416-8d8f-4cfe-8933-26e0edd7bcce", + "tableGuid": "7ef5fc4d-c490-47fe-90e4-2dded58c8ac3" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" + "guid": "efcc3d69-8c69-42f3-af7d-6e1c9254e269" } }, "Example 5": { @@ -42805,7 +42838,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" + "guid": "27201d92-de48-4951-9bde-d1dc3f5e7990" } } } @@ -42841,7 +42874,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" + "guid": "4d6d8780-c652-4a20-a0a4-289f829faac5" } }, "Example 3": { @@ -42851,7 +42884,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" + "tableGuid": "e830886a-696a-4826-9d2d-45f2c362993c" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42864,12 +42897,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", - "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" + "databaseGuid": "cb844416-8d8f-4cfe-8933-26e0edd7bcce", + "tableGuid": "7ef5fc4d-c490-47fe-90e4-2dded58c8ac3" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" + "guid": "efcc3d69-8c69-42f3-af7d-6e1c9254e269" } }, "Example 5": { @@ -42916,7 +42949,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" + "guid": "27201d92-de48-4951-9bde-d1dc3f5e7990" } } } @@ -42952,7 +42985,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "3e680fca-7108-4d40-885b-819b4ac708ef" + "guid": "4d6d8780-c652-4a20-a0a4-289f829faac5" } }, "Example 3": { @@ -42962,7 +42995,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "a6db29d2-f258-4829-afef-433ea29712ea" + "tableGuid": "e830886a-696a-4826-9d2d-45f2c362993c" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42975,12 +43008,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "f0b96c4c-15ce-468e-992f-087d6129ccb3", - "tableGuid": "4867d221-6f0a-4c5a-898b-ab55fb632a82" + "databaseGuid": "cb844416-8d8f-4cfe-8933-26e0edd7bcce", + "tableGuid": "7ef5fc4d-c490-47fe-90e4-2dded58c8ac3" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "54f7a153-d51a-41a1-89e7-325b9ae088fe" + "guid": "efcc3d69-8c69-42f3-af7d-6e1c9254e269" } }, "Example 5": { @@ -43027,7 +43060,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "e8a3e45e-c718-44b9-9dfd-96fc76d66e43" + "guid": "27201d92-de48-4951-9bde-d1dc3f5e7990" } } } @@ -43082,8 +43115,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "66095711-4691-437e-8801-1d045a63a496", - "tableGuid": "8f2a9f2b-3b66-4781-bf43-2b1f5adac6e6" + "databaseGuid": "e410eb1a-6e45-4f86-90d9-5a60a9d20d27", + "tableGuid": "d962594e-254c-45d8-bb9a-2de3dd2563fc" } }, "identity": 1, @@ -43091,7 +43124,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "0af9bb0c-f260-4b60-867d-40535989ac57" + "guid": "de62db77-7fc4-43ae-8da3-28f4d3cea5c5" } }, "Example 6": { @@ -43282,8 +43315,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "f11e200d-96fb-4da1-980f-983e5b4ba471", - "tableGuid": "f9e57769-6e2a-43d7-8db3-0c59e7307a58" + "databaseGuid": "c263cdba-f2a7-44d6-a2ce-52912a5e4f0d", + "tableGuid": "ebb9e86e-777d-42e5-97f0-b7f189131a4a" } }, "identity": 1, @@ -43291,7 +43324,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "a50168d7-a8be-4f70-aa9c-9a00146f9dfc" + "guid": "65132ab6-1bf8-4506-9ea1-c0c6633ebe71" } }, "Example 3": { @@ -43462,7 +43495,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": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" + "guid": "c15b9672-514e-4cc6-8db0-9eb49388c224" } }, "Example 2": { @@ -43482,7 +43515,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" + "guid": "92507ef2-5a81-43b0-b9a6-fca1417ea0b1" } }, "Example 4": { @@ -43493,7 +43526,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" + "guid": "64931b3b-0d8e-4f2b-852f-fcb4179745b8" } }, "Example 5": { @@ -43515,7 +43548,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "228da2e0-033f-425f-be65-3609369b4418" + "guid": "8f0e37f8-6241-4af2-9b07-09cf44bd3fec" } } } @@ -43530,7 +43563,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": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" + "guid": "c15b9672-514e-4cc6-8db0-9eb49388c224" } }, "Example 2": { @@ -43550,7 +43583,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" + "guid": "92507ef2-5a81-43b0-b9a6-fca1417ea0b1" } }, "Example 4": { @@ -43561,7 +43594,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" + "guid": "64931b3b-0d8e-4f2b-852f-fcb4179745b8" } }, "Example 5": { @@ -43583,7 +43616,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "228da2e0-033f-425f-be65-3609369b4418" + "guid": "8f0e37f8-6241-4af2-9b07-09cf44bd3fec" } } } @@ -43598,7 +43631,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": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" + "guid": "c15b9672-514e-4cc6-8db0-9eb49388c224" } }, "Example 2": { @@ -43618,7 +43651,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" + "guid": "92507ef2-5a81-43b0-b9a6-fca1417ea0b1" } }, "Example 4": { @@ -43629,7 +43662,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" + "guid": "64931b3b-0d8e-4f2b-852f-fcb4179745b8" } }, "Example 5": { @@ -43651,7 +43684,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "228da2e0-033f-425f-be65-3609369b4418" + "guid": "8f0e37f8-6241-4af2-9b07-09cf44bd3fec" } } } @@ -43666,7 +43699,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": "9dbae307-8bc3-4ec6-8935-c50f6727de8b" + "guid": "c15b9672-514e-4cc6-8db0-9eb49388c224" } }, "Example 2": { @@ -43686,7 +43719,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "dd09ce1d-c2c7-4247-aa8a-c845f5539c68" + "guid": "92507ef2-5a81-43b0-b9a6-fca1417ea0b1" } }, "Example 4": { @@ -43697,7 +43730,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a7154555-e59a-48da-b41b-cd2e6407c9f6" + "guid": "64931b3b-0d8e-4f2b-852f-fcb4179745b8" } }, "Example 5": { @@ -43719,7 +43752,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "228da2e0-033f-425f-be65-3609369b4418" + "guid": "8f0e37f8-6241-4af2-9b07-09cf44bd3fec" } } } @@ -43774,8 +43807,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "1063a7eb-4fb9-4d01-ab6e-19656949133d", - "tableGuid": "520c9d99-f407-47c1-b8de-88a1b4ada2b5" + "databaseGuid": "6e7b72c0-3144-487b-b0d9-f1f40e4dad0b", + "tableGuid": "8c83acbc-f65d-4307-86d8-5d20c45623af" } }, "identity": 1, @@ -43783,7 +43816,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "db5f0bb8-df9e-4669-b469-2cfa6d8e80fa" + "guid": "98a7f250-8327-424d-8129-e671ab603260" } }, "Example 9": { @@ -43934,7 +43967,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": "f62f56de-9b16-4edb-9364-6a9e8a419833" + "guid": "3cc597e1-eada-4642-84ed-71fc8590f668" } } } @@ -43958,7 +43991,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": "f62f56de-9b16-4edb-9364-6a9e8a419833" + "guid": "3cc597e1-eada-4642-84ed-71fc8590f668" } } } @@ -43982,7 +44015,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": "f62f56de-9b16-4edb-9364-6a9e8a419833" + "guid": "3cc597e1-eada-4642-84ed-71fc8590f668" } } } @@ -44006,7 +44039,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": "f62f56de-9b16-4edb-9364-6a9e8a419833" + "guid": "3cc597e1-eada-4642-84ed-71fc8590f668" } } } @@ -44131,7 +44164,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" + "guid": "d78be029-90df-4408-94c3-2d945ab16fc3" } }, "Example 2": { @@ -44161,7 +44194,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" + "guid": "d78be029-90df-4408-94c3-2d945ab16fc3" } }, "Example 2": { @@ -44191,7 +44224,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" + "guid": "d78be029-90df-4408-94c3-2d945ab16fc3" } }, "Example 2": { @@ -44221,7 +44254,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "202ed5b7-5827-408e-afcc-08ea8c9f8d91" + "guid": "d78be029-90df-4408-94c3-2d945ab16fc3" } }, "Example 2": { @@ -44413,7 +44446,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70e66292-3561-4caf-a158-32b2d3724fde" + "guid": "7d0c1656-2d71-4736-ab20-e0cc9d5e94b1" } ], "name": "Unification" @@ -44494,7 +44527,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70e66292-3561-4caf-a158-32b2d3724fde" + "guid": "7d0c1656-2d71-4736-ab20-e0cc9d5e94b1" } ], "name": "Unification" @@ -44575,7 +44608,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70e66292-3561-4caf-a158-32b2d3724fde" + "guid": "7d0c1656-2d71-4736-ab20-e0cc9d5e94b1" } ], "name": "Unification" @@ -44656,7 +44689,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70e66292-3561-4caf-a158-32b2d3724fde" + "guid": "7d0c1656-2d71-4736-ab20-e0cc9d5e94b1" } ], "name": "Unification" @@ -44794,7 +44827,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": "30525a62-69c0-46d4-bd49-51f55e42527d" + "guid": "a1b57b3d-6a3b-4eb3-8ace-f3342f46484b" } }, "Example 3": { @@ -44844,7 +44877,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": "30525a62-69c0-46d4-bd49-51f55e42527d" + "guid": "a1b57b3d-6a3b-4eb3-8ace-f3342f46484b" } }, "Example 3": { @@ -44894,7 +44927,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": "30525a62-69c0-46d4-bd49-51f55e42527d" + "guid": "a1b57b3d-6a3b-4eb3-8ace-f3342f46484b" } }, "Example 3": { @@ -44944,7 +44977,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": "30525a62-69c0-46d4-bd49-51f55e42527d" + "guid": "a1b57b3d-6a3b-4eb3-8ace-f3342f46484b" } }, "Example 3": { @@ -45175,7 +45208,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": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" + "guid": "79c2a5ca-7567-4fdd-b49e-0072019dabc0" } }, "Example 3": { @@ -45207,7 +45240,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": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" + "guid": "79c2a5ca-7567-4fdd-b49e-0072019dabc0" } }, "Example 3": { @@ -45239,7 +45272,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": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" + "guid": "79c2a5ca-7567-4fdd-b49e-0072019dabc0" } }, "Example 3": { @@ -45271,7 +45304,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": "9dc296f3-fcc4-4031-8bb7-0c14228faab7" + "guid": "79c2a5ca-7567-4fdd-b49e-0072019dabc0" } }, "Example 3": { @@ -45460,7 +45493,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "81b31447-d84c-40e6-a607-39dad8baa112" + "guid": "69ab6ec6-28de-4c44-88e2-53a6b031a9ad" } }, "Example 2": { @@ -45501,7 +45534,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "81b31447-d84c-40e6-a607-39dad8baa112" + "guid": "69ab6ec6-28de-4c44-88e2-53a6b031a9ad" } }, "Example 2": { @@ -45542,7 +45575,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "81b31447-d84c-40e6-a607-39dad8baa112" + "guid": "69ab6ec6-28de-4c44-88e2-53a6b031a9ad" } }, "Example 2": { @@ -45583,7 +45616,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "81b31447-d84c-40e6-a607-39dad8baa112" + "guid": "69ab6ec6-28de-4c44-88e2-53a6b031a9ad" } }, "Example 2": { @@ -46085,7 +46118,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" + "guid": "467b5b2e-11e9-40c8-8d79-93b1b43ba3ef" } }, "Example 3": { @@ -46120,7 +46153,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" + "guid": "467b5b2e-11e9-40c8-8d79-93b1b43ba3ef" } }, "Example 3": { @@ -46155,7 +46188,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" + "guid": "467b5b2e-11e9-40c8-8d79-93b1b43ba3ef" } }, "Example 3": { @@ -46190,7 +46223,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "266c2899-4b07-4410-924c-a1f8e06c125b" + "guid": "467b5b2e-11e9-40c8-8d79-93b1b43ba3ef" } }, "Example 3": { @@ -46422,7 +46455,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" + "guid": "cfe08292-01f7-4b36-9b3b-e4b4d763ccce" } }, "Example 2": { @@ -46483,7 +46516,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" + "guid": "cfe08292-01f7-4b36-9b3b-e4b4d763ccce" } }, "Example 2": { @@ -46544,7 +46577,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" + "guid": "cfe08292-01f7-4b36-9b3b-e4b4d763ccce" } }, "Example 2": { @@ -46605,7 +46638,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "7b767ad2-2c07-427e-aeea-74e31bbdd22e" + "guid": "cfe08292-01f7-4b36-9b3b-e4b4d763ccce" } }, "Example 2": { @@ -47091,9 +47124,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "804b9113-d588-47ae-9f74-41c5f89459db", - "databaseVersionGuid": "9f4218a4-841d-4d7f-94ed-6addae2fd1d1", - "tableGuid": "7105c833-078b-42fd-a1a6-d8edacf00430" + "databaseGuid": "f3355e0e-5db6-482c-9133-b83a63039f6d", + "databaseVersionGuid": "29ea19db-f69b-426c-a575-86cb80fc5e76", + "tableGuid": "7162a583-4033-4e11-9cc0-cf003553acb5" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -47103,7 +47136,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "f360e9b8-a559-48de-b6da-f69b54b21710" + "guid": "4e44357f-b6f2-40e6-ad62-6d7b61106179" }, { "identity": 8944, @@ -47631,7 +47664,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": "1525d2fa-004a-4e26-8305-65308cef3498" + "guid": "5b6eb39f-5816-4534-828b-8d0fa62b87cc" } } } @@ -47646,7 +47679,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": "1525d2fa-004a-4e26-8305-65308cef3498" + "guid": "5b6eb39f-5816-4534-828b-8d0fa62b87cc" } } } @@ -47661,7 +47694,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": "1525d2fa-004a-4e26-8305-65308cef3498" + "guid": "5b6eb39f-5816-4534-828b-8d0fa62b87cc" } } } @@ -47676,7 +47709,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": "1525d2fa-004a-4e26-8305-65308cef3498" + "guid": "5b6eb39f-5816-4534-828b-8d0fa62b87cc" } } } @@ -47785,7 +47818,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": "467cfe8a-852b-425f-b208-9534bc55d592" + "guid": "e5728cce-f3bc-4513-9d51-7630709cb5bc" } }, "Example 2": { @@ -47799,7 +47832,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": "4edaefce-646f-4668-a67e-0f3b735adbf8" + "guid": "8a914364-fa46-4c00-a92f-b3c326da1b22" } } } @@ -47814,7 +47847,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": "467cfe8a-852b-425f-b208-9534bc55d592" + "guid": "e5728cce-f3bc-4513-9d51-7630709cb5bc" } }, "Example 2": { @@ -47828,7 +47861,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": "4edaefce-646f-4668-a67e-0f3b735adbf8" + "guid": "8a914364-fa46-4c00-a92f-b3c326da1b22" } } } @@ -47843,7 +47876,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": "467cfe8a-852b-425f-b208-9534bc55d592" + "guid": "e5728cce-f3bc-4513-9d51-7630709cb5bc" } }, "Example 2": { @@ -47857,7 +47890,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": "4edaefce-646f-4668-a67e-0f3b735adbf8" + "guid": "8a914364-fa46-4c00-a92f-b3c326da1b22" } } } @@ -47872,7 +47905,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": "467cfe8a-852b-425f-b208-9534bc55d592" + "guid": "e5728cce-f3bc-4513-9d51-7630709cb5bc" } }, "Example 2": { @@ -47886,7 +47919,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": "4edaefce-646f-4668-a67e-0f3b735adbf8" + "guid": "8a914364-fa46-4c00-a92f-b3c326da1b22" } } } @@ -48345,8 +48378,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a8ee6f28-242e-4168-8221-cf7b8e537c01", - "513d38f1-05d7-4db9-a681-4eb2d9104dbc" + "812aa806-d446-4ef6-85b8-b172eea94218", + "ab2b4dc2-d6a3-4812-a67e-d566eab80372" ], "type": "recordListMember" }, @@ -49170,8 +49203,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a8ee6f28-242e-4168-8221-cf7b8e537c01", - "513d38f1-05d7-4db9-a681-4eb2d9104dbc" + "812aa806-d446-4ef6-85b8-b172eea94218", + "ab2b4dc2-d6a3-4812-a67e-d566eab80372" ], "type": "recordListMember" }, @@ -49995,8 +50028,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a8ee6f28-242e-4168-8221-cf7b8e537c01", - "513d38f1-05d7-4db9-a681-4eb2d9104dbc" + "812aa806-d446-4ef6-85b8-b172eea94218", + "ab2b4dc2-d6a3-4812-a67e-d566eab80372" ], "type": "recordListMember" }, @@ -50820,8 +50853,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a8ee6f28-242e-4168-8221-cf7b8e537c01", - "513d38f1-05d7-4db9-a681-4eb2d9104dbc" + "812aa806-d446-4ef6-85b8-b172eea94218", + "ab2b4dc2-d6a3-4812-a67e-d566eab80372" ], "type": "recordListMember" }, @@ -51723,8 +51756,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b339af51-5015-4c72-887d-cbd6875f0799", - "5fd9f980-d755-4c1d-a5bd-f59490f282f7" + "1f759881-f491-42da-a385-c5adb7f8a646", + "6209e6d8-c7fc-468e-82a9-317de8614b36" ], "type": "recordListMember" }, @@ -52548,8 +52581,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b339af51-5015-4c72-887d-cbd6875f0799", - "5fd9f980-d755-4c1d-a5bd-f59490f282f7" + "1f759881-f491-42da-a385-c5adb7f8a646", + "6209e6d8-c7fc-468e-82a9-317de8614b36" ], "type": "recordListMember" }, @@ -53373,8 +53406,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b339af51-5015-4c72-887d-cbd6875f0799", - "5fd9f980-d755-4c1d-a5bd-f59490f282f7" + "1f759881-f491-42da-a385-c5adb7f8a646", + "6209e6d8-c7fc-468e-82a9-317de8614b36" ], "type": "recordListMember" }, @@ -54198,8 +54231,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "b339af51-5015-4c72-887d-cbd6875f0799", - "5fd9f980-d755-4c1d-a5bd-f59490f282f7" + "1f759881-f491-42da-a385-c5adb7f8a646", + "6209e6d8-c7fc-468e-82a9-317de8614b36" ], "type": "recordListMember" }, @@ -55092,8 +55125,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "23717047-f411-4fe7-9b21-cea2d3fb50fa", - "9303101c-153a-43c7-b35e-f3918a5417cc" + "d0585d0b-3aa7-42f5-9a2d-a95b57dba5ec", + "fa7f9895-31e2-48e0-a85a-8a83e0c592d1" ], "type": "recordListMember" }, @@ -55917,8 +55950,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "23717047-f411-4fe7-9b21-cea2d3fb50fa", - "9303101c-153a-43c7-b35e-f3918a5417cc" + "d0585d0b-3aa7-42f5-9a2d-a95b57dba5ec", + "fa7f9895-31e2-48e0-a85a-8a83e0c592d1" ], "type": "recordListMember" }, @@ -56742,8 +56775,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "23717047-f411-4fe7-9b21-cea2d3fb50fa", - "9303101c-153a-43c7-b35e-f3918a5417cc" + "d0585d0b-3aa7-42f5-9a2d-a95b57dba5ec", + "fa7f9895-31e2-48e0-a85a-8a83e0c592d1" ], "type": "recordListMember" }, @@ -57567,8 +57600,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "23717047-f411-4fe7-9b21-cea2d3fb50fa", - "9303101c-153a-43c7-b35e-f3918a5417cc" + "d0585d0b-3aa7-42f5-9a2d-a95b57dba5ec", + "fa7f9895-31e2-48e0-a85a-8a83e0c592d1" ], "type": "recordListMember" }, @@ -58437,8 +58470,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", - "4dc7440c-ff61-435e-b81c-ee6559250e7a" + "f1fefe8d-5d3f-4931-846c-9d997d374b6e", + "d6f0a9e6-2939-45b9-9674-420cc136fbaf" ], "type": "recordListMember" }, @@ -59262,8 +59295,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", - "4dc7440c-ff61-435e-b81c-ee6559250e7a" + "f1fefe8d-5d3f-4931-846c-9d997d374b6e", + "d6f0a9e6-2939-45b9-9674-420cc136fbaf" ], "type": "recordListMember" }, @@ -60087,8 +60120,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", - "4dc7440c-ff61-435e-b81c-ee6559250e7a" + "f1fefe8d-5d3f-4931-846c-9d997d374b6e", + "d6f0a9e6-2939-45b9-9674-420cc136fbaf" ], "type": "recordListMember" }, @@ -60912,8 +60945,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "982aa0be-94a8-4a68-b1a9-db1ae3e5642e", - "4dc7440c-ff61-435e-b81c-ee6559250e7a" + "f1fefe8d-5d3f-4931-846c-9d997d374b6e", + "d6f0a9e6-2939-45b9-9674-420cc136fbaf" ], "type": "recordListMember" }, @@ -72167,8 +72200,18 @@ }, "GsaListAction": { "enum": [ + "ListCreated", + "ListDeleted", "ItemAdded", "ItemRemoved", + "ListNameChanged", + "ListDescriptionChanged", + "ListNotesChanged", + "ListSetToAwaitingApproval", + "ListAwaitingApprovalRemoved", + "ListPublished", + "ListUnpublished", + "ListRevisionCreated", "UserSubscribed", "UserUnsubscribed", "ListCuratorAdded", @@ -72177,22 +72220,40 @@ "ListAdminRemoved", "ListPublisherAdded", "ListPublisherRemoved", - "ListNameChanged", - "ListDescriptionChanged", - "ListNotesChanged", "ListMadeInternal", - "ListMadeNotInternal", - "ListCreated", - "ListDeleted", - "ListSetToAwaitingApproval", - "ListSetToAwaitingUnpublish", - "ListAwaitingApprovalRemoved", - "ListPublished", - "ListUnpublished", - "ListRevisionCreated", - "ListCopied" + "ListMadeNotInternal" ], - "type": "string" + "type": "string", + "description": "

Possible values:

\r\n
    \r\n
  • ListCreated: A list has been created.
  • \r\n
  • ListDeleted: A list has been deleted.
  • \r\n
  • ItemAdded: An item has been added to a list.
  • \r\n
  • ItemRemoved: An item has been removed from a list.
  • \r\n
  • ListNameChanged: The name of a list has been changed.
  • \r\n
  • ListDescriptionChanged: The description of a list has been changed.
  • \r\n
  • ListNotesChanged: The notes for a list have been changed.
  • \r\n
  • ListSetToAwaitingApproval: The status of the list was set to 'awaiting approval'.
  • \r\n
  • ListAwaitingApprovalRemoved: The 'awaiting approval' status of the list was removed.
  • \r\n
  • ListPublished: The status of the list was set to 'published'.
  • \r\n
  • ListUnpublished: The status of the list was set to 'unpublished'.
  • \r\n
  • ListRevisionCreated: A revision of the list was created.
  • \r\n
  • UserSubscribed: A user subscribed to a list.
  • \r\n
  • UserUnsubscribed: A user subscribed to a list.
  • \r\n
  • ListCuratorAdded: Permissions changed - a user was set as curator for a list.
  • \r\n
  • ListCuratorRemoved: Permissions changed - a user was removed as a curator for a list.
  • \r\n
  • ListAdminAdded: Permissions changed - a user was set as admin for a list.
  • \r\n
  • ListAdminRemoved: Permissions changed - a user was removed as an admin for a list.
  • \r\n
  • ListPublisherAdded: Permissions changed - a user was set a publisher for a list.
  • \r\n
  • ListPublisherRemoved: Permissions changed - a user was removed as a publisher for a list.
  • \r\n
  • ListMadeInternal: A list was changed to be flagged as 'internal use'.
  • \r\n
  • ListMadeNotInternal: A list was changed to be flagged as 'not internal use'.
  • \r\n
\r\n" + }, + "GsaListAuditLogItem": { + "type": "object", + "properties": { + "listIdentifier": { + "type": "string", + "description": "The identifier of the list that the action was performed on", + "format": "uuid" + }, + "initiatingUser": { + "$ref": "#/components/schemas/GsaListsUserOrGroup" + }, + "userOrGroupAffected": { + "$ref": "#/components/schemas/GsaListsUserOrGroup" + }, + "listItemAffected": { + "$ref": "#/components/schemas/GsaListItem" + }, + "action": { + "$ref": "#/components/schemas/GsaListAction" + }, + "timestamp": { + "type": "string", + "description": "The date/time that the action occurred.", + "format": "date-time" + } + }, + "additionalProperties": false, + "description": "\r\n\r\ninitiatingUser: The user that carried out the action\r\n\r\nuserOrGroupAffected: The user or group associated with the action. May be null if not relevant to the action\r\n\r\nlistItemAffected: The list item associated with the action. May be null if not relevant to the action\r\n\r\naction: The action that was carried out." }, "GsaListAuditLogSearchRequest": { "type": "object", @@ -75652,7 +75713,11 @@ }, "GsaRecordCapabilities": { "required": [ + "canDelete", + "canGetModifiableVersion", "canModify", + "canRelease", + "canWithdraw", "canWrite" ], "type": "object", @@ -75664,6 +75729,22 @@ "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." + }, + "canRelease": { + "type": "boolean", + "description": "True if the current user can release this record version." + }, + "canGetModifiableVersion": { + "type": "boolean", + "description": "True if the current user can get a modifiable version of this record version (gets the latest modifiable record version, or creates a new one if none exists)." + }, + "canWithdraw": { + "type": "boolean", + "description": "True if the current user can withdraw this record version." + }, + "canDelete": { + "type": "boolean", + "description": "True if the current user can delete this record version." } }, "additionalProperties": false