diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index 5fb44769..9fd5ea53 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.dev356" +version = "4.0.0.dev358" 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 e031730d..9a323d72 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 @@ -736,9 +736,11 @@ GsaRangeHistogramAggregationDatumCriterion, ) from .models.gsa_record_ancestor_criterion import GsaRecordAncestorCriterion +from .models.gsa_record_ancestor_history_criterion import GsaRecordAncestorHistoryCriterion from .models.gsa_record_ancestor_history_identity_criterion import ( GsaRecordAncestorHistoryIdentityCriterion, ) +from .models.gsa_record_ancestor_identity_criterion import GsaRecordAncestorIdentityCriterion from .models.gsa_record_capabilities import GsaRecordCapabilities from .models.gsa_record_color import GsaRecordColor from .models.gsa_record_color_property import GsaRecordColorProperty @@ -1640,7 +1642,9 @@ "GsaRangeHistogramAggregation", "GsaRangeHistogramAggregationDatumCriterion", "GsaRecordAncestorCriterion", + "GsaRecordAncestorHistoryCriterion", "GsaRecordAncestorHistoryIdentityCriterion", + "GsaRecordAncestorIdentityCriterion", "GsaRecordCapabilities", "GsaRecordColor", "GsaRecordColorProperty", 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 a3c013d2..3c054627 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 @@ -660,9 +660,11 @@ GsaRangeHistogramAggregationDatumCriterion, ) from .gsa_record_ancestor_criterion import GsaRecordAncestorCriterion +from .gsa_record_ancestor_history_criterion import GsaRecordAncestorHistoryCriterion from .gsa_record_ancestor_history_identity_criterion import ( GsaRecordAncestorHistoryIdentityCriterion, ) +from .gsa_record_ancestor_identity_criterion import GsaRecordAncestorIdentityCriterion from .gsa_record_capabilities import GsaRecordCapabilities from .gsa_record_color import GsaRecordColor from .gsa_record_color_property import GsaRecordColorProperty @@ -1517,7 +1519,9 @@ "GsaRangeHistogramAggregation", "GsaRangeHistogramAggregationDatumCriterion", "GsaRecordAncestorCriterion", + "GsaRecordAncestorHistoryCriterion", "GsaRecordAncestorHistoryIdentityCriterion", + "GsaRecordAncestorIdentityCriterion", "GsaRecordCapabilities", "GsaRecordColor", "GsaRecordColorProperty", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion.py index d6d3c36d..e40cd1d9 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion.py @@ -81,8 +81,10 @@ class GsaCriterion(ModelBase): "recordListMember".lower(): "#/components/schemas/GsaRecordListMemberCriterion", "recordProperty".lower(): "#/components/schemas/GsaRecordPropertyCriterion", "reference".lower(): "#/components/schemas/GsaRecordReferenceCriterion", + "recordAncestorIdentity".lower(): "#/components/schemas/GsaRecordAncestorIdentityCriterion", "recordAncestor".lower(): "#/components/schemas/GsaRecordAncestorCriterion", "recordAncestorHistoryIdentity".lower(): "#/components/schemas/GsaRecordAncestorHistoryIdentityCriterion", + "recordAncestorHistory".lower(): "#/components/schemas/GsaRecordAncestorHistoryCriterion", "subset".lower(): "#/components/schemas/GsaRecordSubsetCriterion", "tabularLinkingValue".lower(): "#/components/schemas/GsaTabularLinkingValueCriterion", "attribute".lower(): "#/components/schemas/GsaAttributeCriterion", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion_type.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion_type.py index 39fab39f..b420de17 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion_type.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_criterion_type.py @@ -48,8 +48,10 @@ class GsaCriterionType(Enum): RECORDLISTMEMBER = "recordListMember" RECORDPROPERTY = "recordProperty" REFERENCE = "reference" + RECORDANCESTORIDENTITY = "recordAncestorIdentity" RECORDANCESTOR = "recordAncestor" RECORDANCESTORHISTORYIDENTITY = "recordAncestorHistoryIdentity" + RECORDANCESTORHISTORY = "recordAncestorHistory" SUBSET = "subset" TABULARLINKINGVALUE = "tabularLinkingValue" ATTRIBUTE = "attribute" diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_criterion.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_criterion.py index 0c37ba1e..52f34ffb 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_criterion.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_criterion.py @@ -66,13 +66,13 @@ class GsaRecordAncestorCriterion(GsaCriterion): swagger_types: dict[str, str] = { "direct_parent_only": "bool", "type": "GsaCriterionType", - "ancestor_identity": "int", + "ancestor_guid": "str", } attribute_map: dict[str, str] = { "direct_parent_only": "directParentOnly", "type": "type", - "ancestor_identity": "ancestorIdentity", + "ancestor_guid": "ancestorGuid", } subtype_mapping: dict[str, str] = {} @@ -84,7 +84,7 @@ def __init__( *, direct_parent_only: "bool", type: "GsaCriterionType" = GsaCriterionType.RECORDANCESTOR, - ancestor_identity: "Union[int, None, Unset_Type]" = Unset, + ancestor_guid: "Union[str, None, Unset_Type]" = Unset, ) -> None: """GsaRecordAncestorCriterion - a model defined in Swagger @@ -92,37 +92,37 @@ def __init__( ---------- direct_parent_only: bool type: GsaCriterionType - ancestor_identity: int, optional + ancestor_guid: str, optional """ super().__init__(type=type) - self._ancestor_identity: Union[int, None, Unset_Type] = Unset + self._ancestor_guid: Union[str, None, Unset_Type] = Unset self._direct_parent_only: bool - if ancestor_identity is not Unset: - self.ancestor_identity = ancestor_identity + if ancestor_guid is not Unset: + self.ancestor_guid = ancestor_guid self.direct_parent_only = direct_parent_only @property - def ancestor_identity(self) -> "Union[int, None, Unset_Type]": - """Gets the ancestor_identity of this GsaRecordAncestorCriterion. + def ancestor_guid(self) -> "Union[str, None, Unset_Type]": + """Gets the ancestor_guid of this GsaRecordAncestorCriterion. Returns ------- - Union[int, None, Unset_Type] - The ancestor_identity of this GsaRecordAncestorCriterion. + Union[str, None, Unset_Type] + The ancestor_guid of this GsaRecordAncestorCriterion. """ - return self._ancestor_identity + return self._ancestor_guid - @ancestor_identity.setter - def ancestor_identity(self, ancestor_identity: "Union[int, None, Unset_Type]") -> None: - """Sets the ancestor_identity of this GsaRecordAncestorCriterion. + @ancestor_guid.setter + def ancestor_guid(self, ancestor_guid: "Union[str, None, Unset_Type]") -> None: + """Sets the ancestor_guid of this GsaRecordAncestorCriterion. Parameters ---------- - ancestor_identity: Union[int, None, Unset_Type] - The ancestor_identity of this GsaRecordAncestorCriterion. + ancestor_guid: Union[str, None, Unset_Type] + The ancestor_guid of this GsaRecordAncestorCriterion. """ - self._ancestor_identity = ancestor_identity + self._ancestor_guid = ancestor_guid @property def direct_parent_only(self) -> "bool": diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_history_criterion.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_history_criterion.py new file mode 100644 index 00000000..fc7923a8 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_history_criterion.py @@ -0,0 +1,184 @@ +# 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 ansys.grantami.serverapi_openapi.models.gsa_criterion import GsaCriterion # noqa: F401 +from ansys.grantami.serverapi_openapi.models.gsa_criterion_type import GsaCriterionType + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaRecordAncestorHistoryCriterion(GsaCriterion): + """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] = { + "direct_parent_only": "bool", + "type": "GsaCriterionType", + "ancestor_history_guid": "str", + } + + attribute_map: dict[str, str] = { + "direct_parent_only": "directParentOnly", + "type": "type", + "ancestor_history_guid": "ancestorHistoryGuid", + } + + subtype_mapping: dict[str, str] = {} + + discriminator: Optional[str] = None + + def __init__( + self, + *, + direct_parent_only: "bool", + type: "GsaCriterionType" = GsaCriterionType.RECORDANCESTORHISTORY, + ancestor_history_guid: "Union[str, None, Unset_Type]" = Unset, + ) -> None: + """GsaRecordAncestorHistoryCriterion - a model defined in Swagger + + Parameters + ---------- + direct_parent_only: bool + type: GsaCriterionType + ancestor_history_guid: str, optional + """ + super().__init__(type=type) + self._ancestor_history_guid: Union[str, None, Unset_Type] = Unset + self._direct_parent_only: bool + + if ancestor_history_guid is not Unset: + self.ancestor_history_guid = ancestor_history_guid + self.direct_parent_only = direct_parent_only + + @property + def ancestor_history_guid(self) -> "Union[str, None, Unset_Type]": + """Gets the ancestor_history_guid of this GsaRecordAncestorHistoryCriterion. + + Returns + ------- + Union[str, None, Unset_Type] + The ancestor_history_guid of this GsaRecordAncestorHistoryCriterion. + """ + return self._ancestor_history_guid + + @ancestor_history_guid.setter + def ancestor_history_guid(self, ancestor_history_guid: "Union[str, None, Unset_Type]") -> None: + """Sets the ancestor_history_guid of this GsaRecordAncestorHistoryCriterion. + + Parameters + ---------- + ancestor_history_guid: Union[str, None, Unset_Type] + The ancestor_history_guid of this GsaRecordAncestorHistoryCriterion. + """ + self._ancestor_history_guid = ancestor_history_guid + + @property + def direct_parent_only(self) -> "bool": + """Gets the direct_parent_only of this GsaRecordAncestorHistoryCriterion. + + Returns + ------- + bool + The direct_parent_only of this GsaRecordAncestorHistoryCriterion. + """ + return self._direct_parent_only + + @direct_parent_only.setter + def direct_parent_only(self, direct_parent_only: "bool") -> None: + """Sets the direct_parent_only of this GsaRecordAncestorHistoryCriterion. + + Parameters + ---------- + direct_parent_only: bool + The direct_parent_only of this GsaRecordAncestorHistoryCriterion. + """ + # Field is not nullable + if direct_parent_only is None: + raise ValueError("Invalid value for 'direct_parent_only', must not be 'None'") + # Field is required + if direct_parent_only is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'direct_parent_only', must not be 'Unset'") + self._direct_parent_only = direct_parent_only + + @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, GsaRecordAncestorHistoryCriterion): + 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_ancestor_identity_criterion.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_identity_criterion.py new file mode 100644 index 00000000..29bf9134 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_record_ancestor_identity_criterion.py @@ -0,0 +1,184 @@ +# 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 ansys.grantami.serverapi_openapi.models.gsa_criterion import GsaCriterion # noqa: F401 +from ansys.grantami.serverapi_openapi.models.gsa_criterion_type import GsaCriterionType + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaRecordAncestorIdentityCriterion(GsaCriterion): + """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] = { + "direct_parent_only": "bool", + "type": "GsaCriterionType", + "ancestor_identity": "int", + } + + attribute_map: dict[str, str] = { + "direct_parent_only": "directParentOnly", + "type": "type", + "ancestor_identity": "ancestorIdentity", + } + + subtype_mapping: dict[str, str] = {} + + discriminator: Optional[str] = None + + def __init__( + self, + *, + direct_parent_only: "bool", + type: "GsaCriterionType" = GsaCriterionType.RECORDANCESTORIDENTITY, + ancestor_identity: "Union[int, None, Unset_Type]" = Unset, + ) -> None: + """GsaRecordAncestorIdentityCriterion - a model defined in Swagger + + Parameters + ---------- + direct_parent_only: bool + type: GsaCriterionType + ancestor_identity: int, optional + """ + super().__init__(type=type) + self._ancestor_identity: Union[int, None, Unset_Type] = Unset + self._direct_parent_only: bool + + if ancestor_identity is not Unset: + self.ancestor_identity = ancestor_identity + self.direct_parent_only = direct_parent_only + + @property + def ancestor_identity(self) -> "Union[int, None, Unset_Type]": + """Gets the ancestor_identity of this GsaRecordAncestorIdentityCriterion. + + Returns + ------- + Union[int, None, Unset_Type] + The ancestor_identity of this GsaRecordAncestorIdentityCriterion. + """ + return self._ancestor_identity + + @ancestor_identity.setter + def ancestor_identity(self, ancestor_identity: "Union[int, None, Unset_Type]") -> None: + """Sets the ancestor_identity of this GsaRecordAncestorIdentityCriterion. + + Parameters + ---------- + ancestor_identity: Union[int, None, Unset_Type] + The ancestor_identity of this GsaRecordAncestorIdentityCriterion. + """ + self._ancestor_identity = ancestor_identity + + @property + def direct_parent_only(self) -> "bool": + """Gets the direct_parent_only of this GsaRecordAncestorIdentityCriterion. + + Returns + ------- + bool + The direct_parent_only of this GsaRecordAncestorIdentityCriterion. + """ + return self._direct_parent_only + + @direct_parent_only.setter + def direct_parent_only(self, direct_parent_only: "bool") -> None: + """Sets the direct_parent_only of this GsaRecordAncestorIdentityCriterion. + + Parameters + ---------- + direct_parent_only: bool + The direct_parent_only of this GsaRecordAncestorIdentityCriterion. + """ + # Field is not nullable + if direct_parent_only is None: + raise ValueError("Invalid value for 'direct_parent_only', must not be 'None'") + # Field is required + if direct_parent_only is Unset: # type: ignore[comparison-overlap, unused-ignore] + raise ValueError("Invalid value for 'direct_parent_only', must not be 'Unset'") + self._direct_parent_only = direct_parent_only + + @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, GsaRecordAncestorIdentityCriterion): + 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_search_result.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_search_result.py index 19ac737b..79d76a60 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_search_result.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/models/gsa_search_result.py @@ -63,6 +63,7 @@ class GsaSearchResult(ModelBase): swagger_types: dict[str, str] = { "database_key": "str", "cubic_spline_status": "str", + "parent_guid": "str", "parent_identity": "int", "record_color": "str", "record_guid": "str", @@ -83,6 +84,7 @@ class GsaSearchResult(ModelBase): attribute_map: dict[str, str] = { "database_key": "databaseKey", "cubic_spline_status": "cubicSplineStatus", + "parent_guid": "parentGuid", "parent_identity": "parentIdentity", "record_color": "recordColor", "record_guid": "recordGuid", @@ -112,6 +114,7 @@ def __init__( *, database_key: "str", cubic_spline_status: "Union[str, None, Unset_Type]" = Unset, + parent_guid: "Union[str, None, Unset_Type]" = Unset, parent_identity: "Union[int, None, Unset_Type]" = Unset, record_color: "Union[str, None, Unset_Type]" = Unset, record_guid: "Union[str, None, Unset_Type]" = Unset, @@ -134,6 +137,7 @@ def __init__( ---------- database_key: str cubic_spline_status: str, optional + parent_guid: str, optional parent_identity: int, optional record_color: str, optional record_guid: str, optional @@ -164,6 +168,7 @@ def __init__( self._version_control_state: Union[str, None, Unset_Type] = Unset self._version_number: Union[int, Unset_Type] = Unset self._parent_identity: Union[int, None, Unset_Type] = Unset + self._parent_guid: Union[str, None, Unset_Type] = Unset self._type: Union[GsaRecordType, Unset_Type] = Unset self._score: Union[float, None, Unset_Type] = Unset self._sorting_value: Union[GsaSortingValue, Unset_Type] = Unset @@ -195,6 +200,8 @@ def __init__( self.version_number = version_number if parent_identity is not Unset: self.parent_identity = parent_identity + if parent_guid is not Unset: + self.parent_guid = parent_guid if type is not Unset: self.type = type if score is not Unset: @@ -531,6 +538,28 @@ def parent_identity(self, parent_identity: "Union[int, None, Unset_Type]") -> No """ self._parent_identity = parent_identity + @property + def parent_guid(self) -> "Union[str, None, Unset_Type]": + """Gets the parent_guid of this GsaSearchResult. + + Returns + ------- + Union[str, None, Unset_Type] + The parent_guid of this GsaSearchResult. + """ + return self._parent_guid + + @parent_guid.setter + def parent_guid(self, parent_guid: "Union[str, None, Unset_Type]") -> None: + """Sets the parent_guid of this GsaSearchResult. + + Parameters + ---------- + parent_guid: Union[str, None, Unset_Type] + The parent_guid of this GsaSearchResult. + """ + self._parent_guid = parent_guid + @property def type(self) -> "Union[GsaRecordType, Unset_Type]": """Gets the type of this GsaSearchResult. diff --git a/yaml/server-api.json b/yaml/server-api.json index e024941a..03eccf5e 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -170,7 +170,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", + "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -196,7 +196,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", + "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -228,7 +228,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", + "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -390,7 +390,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", + "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -416,7 +416,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", + "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -448,7 +448,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", + "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -610,7 +610,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", + "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -636,7 +636,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", + "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -668,7 +668,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", + "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -830,7 +830,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "d867b77e-1fa6-44ba-947b-741312dd8cdd", + "criterionGuid": "a77801ce-1577-4b35-9313-4c04bb7a4540", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -856,7 +856,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "bebb3965-de91-478d-aede-1b781250b7a0", + "criterionGuid": "34881c7e-b1c9-46b5-bde8-a005ee9b34a8", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -888,7 +888,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "9ff05330-7311-42b7-9b6e-07c99bd236c6", + "criterionGuid": "60afce65-8cc1-43dd-87eb-ac7b75c7a1a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1131,7 +1131,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", + "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1157,7 +1157,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", + "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1189,7 +1189,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", + "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1351,7 +1351,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", + "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1377,7 +1377,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", + "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1409,7 +1409,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", + "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1571,7 +1571,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", + "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1597,7 +1597,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", + "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1629,7 +1629,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", + "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1791,7 +1791,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "56d77b17-d308-4deb-b8c6-24b5ee477422", + "criterionGuid": "8fa0a3ce-c63f-4b47-8bd6-8b91747ec504", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1817,7 +1817,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "78a9204b-3302-42cd-b3c6-befd94333f54", + "criterionGuid": "5cab994a-c5ac-4fba-987f-d69c9b830341", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1849,7 +1849,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c894a48b-493c-4f01-8433-da1fdc88c7c1", + "criterionGuid": "7c9a6a24-9a34-4c75-816e-0200afa9069f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2083,7 +2083,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", + "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2109,7 +2109,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", + "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2141,7 +2141,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", + "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2303,7 +2303,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", + "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2329,7 +2329,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", + "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2361,7 +2361,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", + "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2523,7 +2523,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", + "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2549,7 +2549,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", + "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2581,7 +2581,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", + "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2743,7 +2743,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c1a8d3b7-3477-4568-93d1-389cdf6eacc3", + "criterionGuid": "b1a11bf3-c25b-4c76-a3b7-af0feb447008", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2769,7 +2769,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "5ce3b5f5-05b9-46d7-82f0-028f752e5549", + "criterionGuid": "60990df0-db91-429c-94c7-6758b3dd1cd5", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2801,7 +2801,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "f8f34554-1548-45cd-868b-e68d17fba419", + "criterionGuid": "87de87cd-b9ed-4660-8023-93519435197f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3011,7 +3011,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", + "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3037,7 +3037,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", + "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3069,7 +3069,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", + "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3231,7 +3231,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", + "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3257,7 +3257,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", + "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3289,7 +3289,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", + "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3451,7 +3451,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", + "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3477,7 +3477,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", + "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3509,7 +3509,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", + "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3671,7 +3671,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "257d5034-463d-4f67-984d-c076e1b6539f", + "criterionGuid": "b07aaffe-82f6-4dd3-b1ac-3cd1d9e7c66f", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3697,7 +3697,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e104de80-bbdc-4cae-ab6d-6bb1aadd887c", + "criterionGuid": "8e647b68-88fb-4282-999f-a38504cfdcad", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3729,7 +3729,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "14f6d574-687b-4013-aa01-53ffed0812f4", + "criterionGuid": "c447ff9c-1447-468c-b6e7-578978d05692", "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-10T23:53:21.1619201+00:00" + "value": "2024-12-11T08:01:24.8863164+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-10T23:53:21.1619201+00:00" + "value": "2024-12-11T08:01:24.8863164+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-10T23:53:21.1619201+00:00" + "value": "2024-12-11T08:01:24.8863164+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-10T23:53:21.1619201+00:00" + "value": "2024-12-11T08:01:24.8863164+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-10T23:53:21.1774922+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.1774922+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.1774922+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.1774922+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.1931188+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.1931188+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.1931188+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.1931188+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.208826+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.208826+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.208826+00:00" + "value": "2024-12-11T08:01:24.9019417+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-10T23:53:21.208826+00:00" + "value": "2024-12-11T08:01:24.9019417+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": [ - "d9ee6e0b-5817-4a33-843c-2027adf63f50" + "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" ], "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": [ - "d9ee6e0b-5817-4a33-843c-2027adf63f50" + "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" ], "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": [ - "d9ee6e0b-5817-4a33-843c-2027adf63f50" + "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" ], "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": [ - "d9ee6e0b-5817-4a33-843c-2027adf63f50" + "dbf0cdb7-b471-4ff1-914d-14e9bc04da29" ], "listActionsToInclude": [ "ItemAdded", @@ -18774,7 +18774,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" + "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" } }, "Example 4": { @@ -18836,7 +18836,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" + "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" } }, "Example 4": { @@ -18898,7 +18898,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" + "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" } }, "Example 4": { @@ -18960,7 +18960,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "732aed1e-d7fb-4690-9fc2-d919045b05e4" + "guid": "862628d7-0824-4cc6-a7a7-e9bf93f1a881" } }, "Example 4": { @@ -19015,11 +19015,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "d4f74d03-3271-47fc-9d9a-462ac919d0b4" + "guid": "be061fe5-4346-4528-84c7-7b181ca23712" } ], "subsets": [], - "guid": "3b6efa7c-5672-4234-891f-ba2bfc093077" + "guid": "f0e544b3-aa42-4711-8de0-4d59287c3536" } } } @@ -19740,7 +19740,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "72019d20-7f13-4f52-88b3-112cb64fa2d2" + "guid": "2eeff989-8bc1-49cb-a262-af1c9d0b8d9b" } } } @@ -20026,7 +20026,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "ae6ca3b2-36e2-4eed-b2f4-9f9fb09abe94" + "guid": "b217fc90-5e03-4407-aa05-5ede509eea68" } } } @@ -20593,7 +20593,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID '4a606647-9c11-40d2-a610-2ef0df9337d3'.", + "message": "Cannot release record version with GUID '8ea97302-509f-4bb5-886e-ae007a08cae5'.", "code": 400, "errors": [ { @@ -20738,7 +20738,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID 'ef967d2c-8aa7-45fe-9951-d9d727eb2cd7'.", + "message": "Cannot create a new version from the record version with GUID '9fc5df73-f78a-4ffc-8fef-ba1a4ccb3aa4'.", "code": 400, "errors": [ { @@ -20748,7 +20748,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "14f23ae1-d42c-4374-a97f-cde6b835d9a9" + "guid": "d1cffb3c-eb0a-468a-bf86-8c0584d22ecf" } } ] @@ -21058,7 +21058,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" + "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" } }, "Example 3": { @@ -21471,7 +21471,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" + "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" } }, "Example 3": { @@ -21884,7 +21884,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" + "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" } }, "Example 3": { @@ -22297,7 +22297,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "72f8d24b-ea18-4f38-9dd5-6b6697b93441" + "guid": "523f14b6-b1f3-4fdf-bd94-7064566c36c1" } }, "Example 3": { @@ -22797,7 +22797,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "45888ba7-c8a8-45e7-97d7-62aeff7d3374" + "guid": "e11193ec-28b5-4522-9768-3e9b4a02d3c5" } ], "primaryDynamicLinkGroups": [], @@ -23099,7 +23099,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "2f56f2bc-470b-4653-9977-5eedc586daf3" + "guid": "18286ec1-a465-4a82-aa0b-bafc3ddb63d2" } ], "primaryDynamicLinkGroups": [], @@ -24369,7 +24369,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "6d17145b-10e6-435f-82da-d34c1a2917ce" + "guid": "234fd78a-fce8-4667-a7df-39820cba512a" } ], "primaryDynamicLinkGroups": [], @@ -24816,7 +24816,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "6f8ed015-e30c-450a-b9c4-1472c8d50774" + "guid": "f9ab6d2a-896d-4dde-bd1a-8c0af371bd38" } ], "primaryDynamicLinkGroups": [], @@ -25278,7 +25278,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "195c24a1-daa3-4bc4-b677-383765f43ee8" + "guid": "1e0b4b4b-387f-49b4-b70d-bd8f083d8f7c" } ], "primaryDynamicLinkGroups": [], @@ -25457,7 +25457,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute 'Notes' (GUID = '3fc81b57-d9be-4b58-bc00-003179266d5d').", + "message": "Cannot delete attribute 'Notes' (GUID = '2834e9c8-49fd-41d8-b2c7-63e712b7df8f').", "code": 400, "errors": [ { @@ -25472,7 +25472,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "8937768b-77f7-4335-8f8b-5f20564fa9d3" + "guid": "cf0b5acc-7c75-4a66-8418-54a8ae5b3948" } ] } @@ -27958,7 +27958,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" + "guid": "9e5102fa-fb52-4662-a17b-7347a10ab12a" } } } @@ -27983,7 +27983,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" + "guid": "9e5102fa-fb52-4662-a17b-7347a10ab12a" } } } @@ -28008,7 +28008,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" + "guid": "9e5102fa-fb52-4662-a17b-7347a10ab12a" } } } @@ -28033,7 +28033,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "4cb5e085-f6c7-447f-b4ec-741387493144" + "guid": "9e5102fa-fb52-4662-a17b-7347a10ab12a" } } } @@ -28184,7 +28184,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" + "guid": "aef945cf-69cc-4436-bb45-685132e675e2" } }, "Example 2": { @@ -28208,7 +28208,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" + "guid": "aef945cf-69cc-4436-bb45-685132e675e2" } }, "Example 2": { @@ -28232,7 +28232,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" + "guid": "aef945cf-69cc-4436-bb45-685132e675e2" } }, "Example 2": { @@ -28256,7 +28256,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "a15c6b26-a902-4950-aa5f-1bc008703918" + "guid": "aef945cf-69cc-4436-bb45-685132e675e2" } }, "Example 2": { @@ -28485,7 +28485,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" + "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" } }, "Example 3": { @@ -28518,7 +28518,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" + "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" } }, "Example 3": { @@ -28551,7 +28551,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" + "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" } }, "Example 3": { @@ -28584,7 +28584,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "74007000-9110-42f4-bcf7-235dfdb59fcf" + "guid": "91645502-fef5-4d2d-b6a5-f508d3675899" } }, "Example 3": { @@ -28727,7 +28727,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "273eb33a-982b-4ba2-a238-168d2be56222" + "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" } }, "Example 2": { @@ -28742,7 +28742,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" + "guid": "f8670220-218c-4164-a304-cf762c477290" } } } @@ -28759,7 +28759,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "273eb33a-982b-4ba2-a238-168d2be56222" + "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" } }, "Example 2": { @@ -28774,7 +28774,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" + "guid": "f8670220-218c-4164-a304-cf762c477290" } } } @@ -28791,7 +28791,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "273eb33a-982b-4ba2-a238-168d2be56222" + "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" } }, "Example 2": { @@ -28806,7 +28806,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" + "guid": "f8670220-218c-4164-a304-cf762c477290" } } } @@ -28823,7 +28823,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "273eb33a-982b-4ba2-a238-168d2be56222" + "guid": "e3dc67dc-3ef0-47d7-8c33-7e76330d85d4" } }, "Example 2": { @@ -28838,7 +28838,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "2a51abaf-d526-447e-a8c7-2239cafbfb85" + "guid": "f8670220-218c-4164-a304-cf762c477290" } } } @@ -29442,8 +29442,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", - "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", + "versionGuid": "7cfa1269-533d-4470-8a37-3bcac0396933", + "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", "name": "MI Training (Updated)" } }, @@ -29468,8 +29468,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", - "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", + "versionGuid": "7cfa1269-533d-4470-8a37-3bcac0396933", + "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", "name": "MI Training (Updated)" } }, @@ -29494,8 +29494,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", - "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", + "versionGuid": "7cfa1269-533d-4470-8a37-3bcac0396933", + "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", "name": "MI Training (Updated)" } }, @@ -29520,8 +29520,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "8ad094ba-820e-48c5-ac09-497050511b96", - "guid": "a513d1f8-fbd2-479f-ad44-7c5d968c74fa", + "versionGuid": "7cfa1269-533d-4470-8a37-3bcac0396933", + "guid": "26a7346e-a1d9-4575-942e-53ec4833ce59", "name": "MI Training (Updated)" } }, @@ -30527,7 +30527,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" + "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" } } } @@ -30549,7 +30549,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" + "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" } } } @@ -30571,7 +30571,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" + "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" } } } @@ -30593,7 +30593,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "e41b7a86-86d5-4300-9b0d-d7b7953f8cfa" + "guid": "55b61d58-a1d0-4eb4-bb22-b0c7d4f1b97d" } } } @@ -31331,7 +31331,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" + "guid": "574e9371-ece7-4f83-a696-f36ce6607826" } } } @@ -31352,7 +31352,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" + "guid": "574e9371-ece7-4f83-a696-f36ce6607826" } } } @@ -31373,7 +31373,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" + "guid": "574e9371-ece7-4f83-a696-f36ce6607826" } } } @@ -31394,7 +31394,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "0dbb729b-a3f1-4bf2-8244-4991a0677ba4" + "guid": "574e9371-ece7-4f83-a696-f36ce6607826" } } } @@ -31797,11 +31797,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "390b95d8-6ec3-48be-b39b-9ed491e2b425" + "guid": "54b5825f-a888-4698-bf6a-61c95568e65d" }, { "name": "no-transform.xslt", - "guid": "cd409bb7-35b9-4ca5-a3fa-2bb8138f13dc" + "guid": "916e1bd1-ab5d-4816-9592-992f82abf6e6" } ] } @@ -31814,11 +31814,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "390b95d8-6ec3-48be-b39b-9ed491e2b425" + "guid": "54b5825f-a888-4698-bf6a-61c95568e65d" }, { "name": "no-transform.xslt", - "guid": "cd409bb7-35b9-4ca5-a3fa-2bb8138f13dc" + "guid": "916e1bd1-ab5d-4816-9592-992f82abf6e6" } ] } @@ -31831,11 +31831,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "390b95d8-6ec3-48be-b39b-9ed491e2b425" + "guid": "54b5825f-a888-4698-bf6a-61c95568e65d" }, { "name": "no-transform.xslt", - "guid": "cd409bb7-35b9-4ca5-a3fa-2bb8138f13dc" + "guid": "916e1bd1-ab5d-4816-9592-992f82abf6e6" } ] } @@ -31913,7 +31913,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "213e153a-d6c6-45b3-8675-9c3fa3a97a38" + "guid": "8e0792f3-f0d5-4a9f-ab7f-46eabad6b2e4" } }, "application/json": { @@ -31927,7 +31927,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "213e153a-d6c6-45b3-8675-9c3fa3a97a38" + "guid": "8e0792f3-f0d5-4a9f-ab7f-46eabad6b2e4" } }, "text/json": { @@ -31941,7 +31941,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "213e153a-d6c6-45b3-8675-9c3fa3a97a38" + "guid": "8e0792f3-f0d5-4a9f-ab7f-46eabad6b2e4" } } } @@ -32008,7 +32008,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0da19012-02e9-4abd-b99b-dbac00c1d724" + "guid": "d8513633-a0a7-4873-9396-075b0d934a48" } }, "application/json": { @@ -32022,7 +32022,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0da19012-02e9-4abd-b99b-dbac00c1d724" + "guid": "d8513633-a0a7-4873-9396-075b0d934a48" } }, "text/json": { @@ -32036,7 +32036,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "0da19012-02e9-4abd-b99b-dbac00c1d724" + "guid": "d8513633-a0a7-4873-9396-075b0d934a48" } } } @@ -32105,7 +32105,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" + "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" } } } @@ -32133,7 +32133,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" + "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" } } } @@ -32161,7 +32161,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" + "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" } } } @@ -32189,7 +32189,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "c950018a-9245-40c6-a454-375ecf3b9b87" + "guid": "6b174919-ffa8-4618-aadc-9dcc954d30aa" } } } @@ -32211,7 +32211,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "1c018c8f-7c36-4375-8071-46b2f4a1df23" + "guid": "7f2fb972-b96a-4967-aa35-6949326b05b3" } }, "application/json": { @@ -32225,7 +32225,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "1c018c8f-7c36-4375-8071-46b2f4a1df23" + "guid": "7f2fb972-b96a-4967-aa35-6949326b05b3" } }, "text/json": { @@ -32239,7 +32239,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "1c018c8f-7c36-4375-8071-46b2f4a1df23" + "guid": "7f2fb972-b96a-4967-aa35-6949326b05b3" } } } @@ -32457,7 +32457,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "147fff5d-c87b-4522-8ba2-d259c2fbe89b" + "guid": "d385c00a-3fe3-4ee5-80f9-52ee945ec753" } }, "application/json": { @@ -32471,7 +32471,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "147fff5d-c87b-4522-8ba2-d259c2fbe89b" + "guid": "d385c00a-3fe3-4ee5-80f9-52ee945ec753" } }, "text/json": { @@ -32485,7 +32485,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "147fff5d-c87b-4522-8ba2-d259c2fbe89b" + "guid": "d385c00a-3fe3-4ee5-80f9-52ee945ec753" } } } @@ -32628,7 +32628,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" + "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" } }, "Example 3": { @@ -32663,7 +32663,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" + "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" } }, "Example 3": { @@ -32698,7 +32698,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" + "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" } }, "Example 3": { @@ -32733,7 +32733,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "5bde3cf4-2f41-4fd8-956a-46363d52a3ec" + "guid": "36406ddd-4006-4673-b6f8-5735316e0af3" } }, "Example 3": { @@ -33045,7 +33045,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" + "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" } }, "Example 2": { @@ -33071,7 +33071,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" + "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" } }, "Example 2": { @@ -33097,7 +33097,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" + "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" } }, "Example 2": { @@ -33123,7 +33123,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "67379b81-bab9-42df-8f56-a183bc8dd002" + "guid": "964b6537-0079-4fdf-9fb4-d07875f52714" } }, "Example 2": { @@ -33761,7 +33761,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" + "guid": "629e35ff-be95-4a84-9742-e37e519ce647" } } } @@ -33782,7 +33782,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" + "guid": "629e35ff-be95-4a84-9742-e37e519ce647" } } } @@ -33803,7 +33803,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" + "guid": "629e35ff-be95-4a84-9742-e37e519ce647" } } } @@ -33824,7 +33824,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "4432e8e2-dad3-4d4b-a9fe-ce38cfd7194e" + "guid": "629e35ff-be95-4a84-9742-e37e519ce647" } } } @@ -34293,7 +34293,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "61c334f7-fc57-4a17-b3dd-32dae4a77502" + "guid": "310bda9a-1ff0-4d0e-9c40-6c30245dc4be" } }, "application/json": { @@ -34307,7 +34307,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "61c334f7-fc57-4a17-b3dd-32dae4a77502" + "guid": "310bda9a-1ff0-4d0e-9c40-6c30245dc4be" } }, "text/json": { @@ -34321,7 +34321,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "61c334f7-fc57-4a17-b3dd-32dae4a77502" + "guid": "310bda9a-1ff0-4d0e-9c40-6c30245dc4be" } } } @@ -34485,7 +34485,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" + "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" } } } @@ -34513,7 +34513,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" + "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" } } } @@ -34541,7 +34541,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" + "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" } } } @@ -34569,7 +34569,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "c8c22006-59ad-4b5e-8d6c-145230e72aa4" + "guid": "d9a5423a-dcf1-4074-b31b-023debf4a3d3" } } } @@ -34591,7 +34591,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fd9c49ce-74fd-4d80-b21d-8304a56a1e75" + "guid": "85790281-0470-4192-9f74-349cb932a385" } }, "application/json": { @@ -34605,7 +34605,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fd9c49ce-74fd-4d80-b21d-8304a56a1e75" + "guid": "85790281-0470-4192-9f74-349cb932a385" } }, "text/json": { @@ -34619,7 +34619,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fd9c49ce-74fd-4d80-b21d-8304a56a1e75" + "guid": "85790281-0470-4192-9f74-349cb932a385" } } } @@ -34837,7 +34837,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "1d83e32f-1502-4577-860f-6605451f01fb" + "guid": "6af69bdd-f135-4c88-956c-fe20ebe9015b" } }, "application/json": { @@ -34851,7 +34851,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "1d83e32f-1502-4577-860f-6605451f01fb" + "guid": "6af69bdd-f135-4c88-956c-fe20ebe9015b" } }, "text/json": { @@ -34865,7 +34865,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "1d83e32f-1502-4577-860f-6605451f01fb" + "guid": "6af69bdd-f135-4c88-956c-fe20ebe9015b" } } } @@ -34916,7 +34916,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "27be2288-3566-4213-af32-644c1cddb203" + "guid": "d7829c62-7f71-4366-adbc-528b247ee0de" } ] } @@ -34934,7 +34934,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "27be2288-3566-4213-af32-644c1cddb203" + "guid": "d7829c62-7f71-4366-adbc-528b247ee0de" } ] } @@ -34952,7 +34952,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "27be2288-3566-4213-af32-644c1cddb203" + "guid": "d7829c62-7f71-4366-adbc-528b247ee0de" } ] } @@ -35182,7 +35182,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "af34fa44-cbbc-481b-959e-28e085b8736c" + "guid": "9c815eb3-47dc-4ee9-9576-f79d09e86ac8" } }, "application/json": { @@ -35192,7 +35192,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "af34fa44-cbbc-481b-959e-28e085b8736c" + "guid": "9c815eb3-47dc-4ee9-9576-f79d09e86ac8" } }, "text/json": { @@ -35202,7 +35202,7 @@ "example": { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "af34fa44-cbbc-481b-959e-28e085b8736c" + "guid": "9c815eb3-47dc-4ee9-9576-f79d09e86ac8" } } } @@ -35255,7 +35255,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" + "guid": "34627b63-922c-419b-acc4-a6b9e6fda161" } } } @@ -35276,7 +35276,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" + "guid": "34627b63-922c-419b-acc4-a6b9e6fda161" } } } @@ -35297,7 +35297,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" + "guid": "34627b63-922c-419b-acc4-a6b9e6fda161" } } } @@ -35318,7 +35318,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "5876788a-4215-41e8-ba2b-7694641f49e2" + "guid": "34627b63-922c-419b-acc4-a6b9e6fda161" } } } @@ -35446,7 +35446,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "6dcb057d-6cbe-4ad3-bb1a-c5e42b476bf6" + "guid": "6e70f5e3-d4f8-4316-a3ef-ca9241903a94" } ] } @@ -35460,7 +35460,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "6dcb057d-6cbe-4ad3-bb1a-c5e42b476bf6" + "guid": "6e70f5e3-d4f8-4316-a3ef-ca9241903a94" } ] } @@ -35474,7 +35474,7 @@ { "parentGuid": "c13eb185-2558-4b4a-8395-33c031663925", "name": "images", - "guid": "6dcb057d-6cbe-4ad3-bb1a-c5e42b476bf6" + "guid": "6e70f5e3-d4f8-4316-a3ef-ca9241903a94" } ] } @@ -35656,11 +35656,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "35b6529c-6c26-40d1-99e9-6b21e68369a1" + "guid": "66ce1a4a-c235-475a-8a02-fc42c6c84fd4" }, { "name": "home-page-2.html", - "guid": "e58f25c9-49f2-4039-b750-198526f54a19" + "guid": "5e2775d0-4b26-4953-88bb-45008f7acfdd" } ] } @@ -35673,11 +35673,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "35b6529c-6c26-40d1-99e9-6b21e68369a1" + "guid": "66ce1a4a-c235-475a-8a02-fc42c6c84fd4" }, { "name": "home-page-2.html", - "guid": "e58f25c9-49f2-4039-b750-198526f54a19" + "guid": "5e2775d0-4b26-4953-88bb-45008f7acfdd" } ] } @@ -35690,11 +35690,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "35b6529c-6c26-40d1-99e9-6b21e68369a1" + "guid": "66ce1a4a-c235-475a-8a02-fc42c6c84fd4" }, { "name": "home-page-2.html", - "guid": "e58f25c9-49f2-4039-b750-198526f54a19" + "guid": "5e2775d0-4b26-4953-88bb-45008f7acfdd" } ] } @@ -35772,7 +35772,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "149fef9b-ef9b-4cd9-b73e-7c21a2f61c4e" + "guid": "35324740-3d76-46cf-87ff-ed91842d7643" } }, "application/json": { @@ -35786,7 +35786,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "149fef9b-ef9b-4cd9-b73e-7c21a2f61c4e" + "guid": "35324740-3d76-46cf-87ff-ed91842d7643" } }, "text/json": { @@ -35800,7 +35800,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "149fef9b-ef9b-4cd9-b73e-7c21a2f61c4e" + "guid": "35324740-3d76-46cf-87ff-ed91842d7643" } } } @@ -35867,7 +35867,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "45d5d797-3332-4a0c-ad63-85498149c6ff" + "guid": "3ce28169-cd88-49ee-bc91-b0223bdb9a13" } }, "application/json": { @@ -35881,7 +35881,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "45d5d797-3332-4a0c-ad63-85498149c6ff" + "guid": "3ce28169-cd88-49ee-bc91-b0223bdb9a13" } }, "text/json": { @@ -35895,7 +35895,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "45d5d797-3332-4a0c-ad63-85498149c6ff" + "guid": "3ce28169-cd88-49ee-bc91-b0223bdb9a13" } } } @@ -35964,7 +35964,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" + "guid": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" } } } @@ -35992,7 +35992,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" + "guid": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" } } } @@ -36020,7 +36020,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" + "guid": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" } } } @@ -36048,7 +36048,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "9061ef6d-23fb-48a0-aaed-626492f771f1" + "guid": "d257b42d-e227-43cf-a48e-2a0bb5e847fc" } } } @@ -36070,7 +36070,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d7dded57-1ddb-4b23-83bf-70f973592501" + "guid": "e3050867-ed65-407f-91eb-44b0c894282d" } }, "application/json": { @@ -36084,7 +36084,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d7dded57-1ddb-4b23-83bf-70f973592501" + "guid": "e3050867-ed65-407f-91eb-44b0c894282d" } }, "text/json": { @@ -36098,7 +36098,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "d7dded57-1ddb-4b23-83bf-70f973592501" + "guid": "e3050867-ed65-407f-91eb-44b0c894282d" } } } @@ -36316,7 +36316,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "4cfecb9b-509f-41ea-a96b-bf1fab54e1dd" + "guid": "5436b705-9cf5-4cf9-adaa-0e2acece65a8" } }, "application/json": { @@ -36330,7 +36330,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "4cfecb9b-509f-41ea-a96b-bf1fab54e1dd" + "guid": "5436b705-9cf5-4cf9-adaa-0e2acece65a8" } }, "text/json": { @@ -36344,7 +36344,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "4cfecb9b-509f-41ea-a96b-bf1fab54e1dd" + "guid": "5436b705-9cf5-4cf9-adaa-0e2acece65a8" } } } @@ -36476,9 +36476,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "813fa46f-0cff-4935-829a-ce5d4da9c45f", + "underlyingEntityGuid": "d77c6015-d06d-4e1d-9732-1a41eaa6ccc8", "name": "Price", - "guid": "1371af95-57c1-4237-9cfe-08e397b1eaab" + "guid": "e377e1e9-ff39-46ef-b08a-74e4183cb893" }, { "itemType": "attribute", @@ -36486,9 +36486,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "e4c1b992-7b69-42e7-92ff-919f8fb60754", + "underlyingEntityGuid": "93489601-2d92-4db0-b4f8-7daab42b1d91", "name": "Density", - "guid": "3745f362-4098-4e7b-b0aa-6bcda8f29727" + "guid": "88d4ac64-9bf3-4369-98d2-32789051f33e" } ], "displayNames": { @@ -36507,9 +36507,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "3a41407e-4d06-4c6c-a094-12565af66741", + "underlyingEntityGuid": "94e93d69-be9e-4886-98eb-ceaea5a809b0", "name": "Young's modulus", - "guid": "dd0e1712-7b07-4a6e-96c2-9408136fb1ff" + "guid": "f1806a93-8642-42b5-925b-d4f740486d49" }, { "itemType": "attribute", @@ -36517,9 +36517,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "9264656a-bf69-49cd-92c1-1a972c78a5da", + "underlyingEntityGuid": "38467a65-8331-41e7-8cad-458474f9c4e4", "name": "Tensile strength", - "guid": "16407b4b-4cea-4959-8a86-4608ddedfc66" + "guid": "e19e8afa-fa51-428b-b5b3-a2ff9c135e9a" }, { "itemType": "attribute", @@ -36527,9 +36527,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "c37187f7-abac-4ac9-8f4c-b38fd005b063", + "underlyingEntityGuid": "22b0884b-1b64-450e-bff2-70075f906f40", "name": "Shape factor", - "guid": "36bfd116-2502-4a59-bc31-0a4f332e5a7d" + "guid": "d83e8a4b-14e1-47ea-86e4-7166ed9b7581" } ], "displayNames": { @@ -36604,7 +36604,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" + "guid": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" } } } @@ -36626,7 +36626,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" + "guid": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" } } } @@ -36648,7 +36648,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" + "guid": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" } } } @@ -36670,7 +36670,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "46f471d0-80fd-4550-bfe0-7b734c925017" + "guid": "5451bf0a-5b46-46c8-b3b1-aa780e0e2f53" } } } @@ -36689,7 +36689,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "1c1d19d1-4990-46aa-87c2-24d5cbd1d9cd" + "guid": "a3f0beeb-ba64-42ae-9c55-f1583811cfe8" } } } @@ -37332,7 +37332,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "df3b9e7a-7abe-4616-a3b0-546e76c977a6" + "guid": "ea9a292d-eae8-461a-a3b0-661339ab0458" } }, "Example 2": { @@ -37347,9 +37347,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "942478c7-8363-4fe5-a75e-08bc2cf79bdf", + "underlyingEntityGuid": "7d6625c3-671f-4b1a-9e96-ee0d2b9f464e", "name": "Form", - "guid": "04e7c7ec-3770-445d-98da-da2bb1be35c0" + "guid": "81f8b781-d48f-4a34-a0a9-acb1d31645f9" }, { "itemType": "attribute", @@ -37362,34 +37362,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "17b3998f-856f-42ca-b5a5-d575195bfd5a", + "underlyingEntityGuid": "ee0adf6c-f9a3-463e-9224-aa9450050b7d", "name": "Sources", - "guid": "f9470477-48fd-4cf0-b01b-97f4ac255af6" + "guid": "802e9d36-4d27-4206-89f9-dcb7f025960f" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "8bf679b5-b37f-4430-830b-f390997d888e", + "underlyingEntityGuid": "36ddf104-a469-494c-8621-e4c0b5d2ff5f", "name": "Notes", - "guid": "00047d10-207e-4595-982e-7b9bfd1cdee8" + "guid": "3a1764ce-5b86-4c9f-859e-bdb5f49d49fc" } ], - "underlyingEntityGuid": "b7d6b0d9-ae93-46be-b13d-9ec5f8513f8b", + "underlyingEntityGuid": "ef34bb9a-8bca-4e2a-84ec-8ab3c87f910f", "name": "Chemical resistance", - "guid": "71a4ecaf-68bf-4c19-af56-22ead2146c38" + "guid": "522237c2-1b40-40bf-beb1-a68aff832b4c" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "a0b08141-38e8-45da-b579-cf5310f69aaa", - "targetDatabaseVersion": "f603d3ea-abda-428b-a7c2-338a378c45b5", - "targetTable": "f4279488-1bcd-4465-991b-fc5aeef2ec1c", + "targetDatabase": "eca156f1-e05e-448f-82d9-c77c685fdab5", + "targetDatabaseVersion": "e0e4b417-c6d4-4bba-a38e-75a4d9358188", + "targetTable": "91ed6d73-a0db-4869-aa0e-d579fd50e615", "forwards": true, - "underlyingEntityGuid": "7e16c8c1-9424-481b-8a10-8cbed6038593", + "underlyingEntityGuid": "ab02ef40-3712-4bd7-a717-aff82630e2b8", "name": "Material Pedigree", - "guid": "0ab01eec-0dff-40c5-9e88-74ae0eaccec2" + "guid": "dad5587a-2879-4712-8cef-0cd9b8e5ed5d" }, { "itemType": "attribute", @@ -37400,42 +37400,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "ba731f57-6b4e-4896-88aa-a591379b1444", + "tabularColumnGuid": "5567f368-6ec4-4263-bdf4-6631b3e43afb", "name": "Offset Yield Stress", - "guid": "2a6eb9d3-0986-4b75-af4f-e24aa160d5d1" + "guid": "23383edd-798d-41f1-82d0-2109c3e28b77" }, { "columnType": "localShortText", - "tabularColumnGuid": "89a48ffb-3211-43e5-9fc4-a588a6157805", + "tabularColumnGuid": "cd2b86ab-0964-4543-b13a-84596168df8c", "name": "Young's Modulus Notes", - "guid": "4e2f7312-7751-446f-a638-330813622781" + "guid": "d5e7410c-3ead-4b35-ad26-7546a9beedcf" } ], - "underlyingEntityGuid": "699600e4-85be-4c14-b66b-06937488dd7f", + "underlyingEntityGuid": "410226c9-ba30-4471-9e9b-df1c27372dc0", "name": "Reference Characteristics", - "guid": "587eaece-b53b-42cd-9b8e-f29b2f6ba41e" + "guid": "42f517dc-9f95-4ba2-86a3-10418c83ba8d" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "a0b08141-38e8-45da-b579-cf5310f69aaa", - "targetDatabaseVersion": "f603d3ea-abda-428b-a7c2-338a378c45b5", - "targetTable": "7c4d0cf8-dc11-4b04-b538-644d8ec522f2", + "targetDatabase": "eca156f1-e05e-448f-82d9-c77c685fdab5", + "targetDatabaseVersion": "e0e4b417-c6d4-4bba-a38e-75a4d9358188", + "targetTable": "3a20b0c7-85a3-4a8a-bbdd-53d5e6a760cc", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "a0b08141-38e8-45da-b579-cf5310f69aaa", - "targetDatabaseVersion": "f603d3ea-abda-428b-a7c2-338a378c45b5", - "targetTable": "c6450bc4-62a2-4af6-9840-f6d7733f1db9", + "targetDatabase": "eca156f1-e05e-448f-82d9-c77c685fdab5", + "targetDatabaseVersion": "e0e4b417-c6d4-4bba-a38e-75a4d9358188", + "targetTable": "3950c82b-4ade-4cf2-bc14-2eda2df171a6", "forwards": false, - "underlyingEntityGuid": "0ab15b31-cb0f-41ac-a886-aae3e3c81d9c", + "underlyingEntityGuid": "dc48ecf1-47f0-488b-a69b-e9bd1b2c28c2", "name": "Pedigree information", - "guid": "79b51e3e-3a1d-4306-8db4-a7dc0b669403" + "guid": "dfede3e5-422c-4741-a9e7-c47dcf0909be" }, - "underlyingEntityGuid": "1a31f221-d81b-42ef-8509-8f2ec4a6674e", + "underlyingEntityGuid": "85cc2dca-b625-4d45-a9bd-4bae64aa7324", "name": "To Pedigree from Producers", - "guid": "c5621380-3225-43a7-b7b1-d8c21ccf77b1" + "guid": "ff4a64e3-37c8-49e9-84bc-807c19ebcedd" } ], "displayNames": { @@ -37443,7 +37443,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "e9bbfeea-80ad-4741-8cf3-83cc2aae9dd2" + "guid": "abbd2034-c78d-4329-a19f-81c55d4e0d22" } } } @@ -37633,9 +37633,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", - "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", - "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" + "sourceDatabaseGuid": "51c78624-8aa0-42a2-ac15-87126ebece2b", + "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", + "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" } }, "Example 8": { @@ -37647,13 +37647,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", - "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" + "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", + "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" }, { "forwards": false, - "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", - "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" + "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", + "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" } ] } @@ -37733,9 +37733,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", - "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", - "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" + "sourceDatabaseGuid": "51c78624-8aa0-42a2-ac15-87126ebece2b", + "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", + "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" } }, "Example 8": { @@ -37747,13 +37747,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", - "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" + "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", + "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" }, { "forwards": false, - "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", - "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" + "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", + "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" } ] } @@ -37833,9 +37833,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", - "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", - "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" + "sourceDatabaseGuid": "51c78624-8aa0-42a2-ac15-87126ebece2b", + "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", + "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" } }, "Example 8": { @@ -37847,13 +37847,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", - "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" + "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", + "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" }, { "forwards": false, - "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", - "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" + "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", + "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" } ] } @@ -37933,9 +37933,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "de55bb17-8502-48bc-9ab2-8d815ac429f5", - "sourceTableGuid": "e1f40d8a-56a0-46fa-827e-65bb86914146", - "linkGroupGuid": "df1eb270-5dbd-402d-9811-0a52f193b06f" + "sourceDatabaseGuid": "51c78624-8aa0-42a2-ac15-87126ebece2b", + "sourceTableGuid": "3704fe23-9714-4c10-bc61-8c37f0353fea", + "linkGroupGuid": "f8104123-848c-4955-b021-835b5defc89e" } }, "Example 8": { @@ -37947,13 +37947,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "7b12af72-48da-4e62-b261-02c93960542f", - "tabularAttributeGuid": "ac08b543-0a33-478e-a391-041208923c13" + "sourceDatabaseVersionGuid": "ad440b39-d0df-43d4-b2f9-3f24e6e6fff5", + "tabularAttributeGuid": "aad7a196-18fa-4dac-b1a5-16c6c7618d43" }, { "forwards": false, - "sourceDatabaseVersionGuid": "d3ae96a0-66d3-4bfc-8f90-3170a678104d", - "tabularAttributeGuid": "57a065f9-6612-4bdb-bce5-4cb0fa6b6f92" + "sourceDatabaseVersionGuid": "a8f44947-77ab-4727-a00c-7446174bc213", + "tabularAttributeGuid": "1e45a000-1a78-4a54-bc0e-4318ddb7a4ba" } ] } @@ -37981,7 +37981,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "bc4cf756-5af8-4400-9671-92931c9b65cf" + "guid": "20e2d5d5-2e06-4f31-b810-3608dd491c83" } }, "Example 2": { @@ -38001,7 +38001,7 @@ } ], "tabularColumnGuids": null, - "guid": "99ffab6b-943e-48b1-96ed-0796581fd7f2" + "guid": "1a7c6e0a-07f8-4555-8e90-4f8db5e80182" } }, "Example 3": { @@ -38045,9 +38045,9 @@ "description": "This example demonstrates the response to creating a new cross database link group layout item. It was created by adding a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "5fce2114-9c22-4a1f-93f9-c15a90d8957e", - "sourceTableGuid": "3311c6df-93ab-433c-8dfb-83431444ca3c", - "linkGroupGuid": "c3941b74-561e-4135-a9dc-c0cd2a2076e0", + "sourceDatabaseGuid": "f3571d23-7f28-48a7-84fd-7405c86edf2d", + "sourceTableGuid": "6b79befe-d8df-4051-b060-202411d0d5c4", + "linkGroupGuid": "1467d45b-5355-492d-aa96-18ab389e43c0", "guid": null } }, @@ -38061,12 +38061,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "b53932d9-8ff6-4a2d-b8dc-01a5e9aa99c4" + "tabularAttributeGuid": "f56f90c1-7618-476f-a48f-cc1fc861f8d5" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "c9bb2075-46ab-4877-be00-5ad9d13d4a82" + "tabularAttributeGuid": "9d241c6b-a78c-4d22-be7e-9641f955e8c9" } ], "guid": null @@ -38299,7 +38299,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" + "guid": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" } }, "Example 3": { @@ -38332,7 +38332,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" + "guid": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" } }, "Example 3": { @@ -38365,7 +38365,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" + "guid": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" } }, "Example 3": { @@ -38398,7 +38398,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "13a210d5-b32d-4dfe-8ead-50c2e19010cd" + "guid": "e34d80c9-4ee5-4e11-8b01-11eb2deaece7" } }, "Example 3": { @@ -38428,7 +38428,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "26d676cd-29e2-4bec-bdd5-0c1c1782584c" + "guid": "a81fd1a4-885a-4401-84f3-d2181c14cab8" } } } @@ -38567,9 +38567,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "2142e27d-ba43-460c-a0db-cccf2af9aabc", + "underlyingEntityGuid": "80a94612-9e2b-47b8-bd91-7fe59e26883c", "name": "Price", - "guid": "df3b5f62-c685-4b62-adde-a31abae993c6" + "guid": "eb4f52b0-a169-45f1-86cb-1ba1567c207a" }, { "itemType": "attribute", @@ -38577,9 +38577,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "15997690-41d3-4c43-9bac-7f3e7ae262c5", + "underlyingEntityGuid": "e183f196-d738-4b97-a90e-dbe70e356677", "name": "Density", - "guid": "a472edb3-0baa-4487-af7e-94c6c7ad83cc" + "guid": "1ee1aff8-a0df-47f9-b824-0800e664964d" } ], "displayNames": { @@ -38598,9 +38598,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "b775130e-014f-4492-a500-96ba0e9d23ac", + "underlyingEntityGuid": "f0a2354a-00bc-45e8-b518-276e5ac474e0", "name": "Young's modulus", - "guid": "39d5e620-87e5-4589-b179-f4db723c7c2e" + "guid": "a8ed72b2-6ecb-4b6d-854a-1d5b57a9584c" }, { "itemType": "attribute", @@ -38608,9 +38608,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "9c34c8e7-3803-4d2d-be20-933fab5a29a2", + "underlyingEntityGuid": "db0e6ca6-d21f-41e1-a495-6a880f7d2ed8", "name": "Tensile strength", - "guid": "4c704c95-742f-4df7-971c-4a02c90e8946" + "guid": "c5bd7f75-6125-4810-97fb-55ab26687ef8" }, { "itemType": "attribute", @@ -38618,9 +38618,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "35c5084e-eeeb-41c0-8768-061864d27a2c", + "underlyingEntityGuid": "8e07b93c-1b9d-4b5c-9438-e2355bdb2d69", "name": "Shape factor", - "guid": "b6c7603a-a929-4385-8270-479e1b504cd0" + "guid": "96c58fec-b072-4468-9514-9080c5ca850b" } ], "displayNames": { @@ -38699,7 +38699,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" + "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" } }, "Example 2": { @@ -38732,7 +38732,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" + "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" } }, "Example 2": { @@ -38765,7 +38765,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" + "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" } }, "Example 2": { @@ -38798,7 +38798,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "6a3b6e96-80b2-4b09-a20c-5f855fc9f918" + "guid": "d34bf66c-01b1-4da5-a433-ea30df428cbd" } }, "Example 2": { @@ -38831,7 +38831,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "2cedb3f4-502a-496b-98e4-c0f5ef3b2f90" + "guid": "952f163d-b184-424f-8b17-bf5d73caa50d" } } } @@ -39128,7 +39128,7 @@ { "type": "discrete", "name": "Red", - "guid": "ff495d8c-b879-44b7-b506-e14549955c46" + "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" }, { "type": "discrete", @@ -39138,7 +39138,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" + "guid": "b492df5b-925d-483d-9afa-938200cee254" } }, "Example 3": { @@ -39266,7 +39266,7 @@ { "type": "discrete", "name": "Red", - "guid": "ff495d8c-b879-44b7-b506-e14549955c46" + "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" }, { "type": "discrete", @@ -39276,7 +39276,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" + "guid": "b492df5b-925d-483d-9afa-938200cee254" } }, "Example 3": { @@ -39404,7 +39404,7 @@ { "type": "discrete", "name": "Red", - "guid": "ff495d8c-b879-44b7-b506-e14549955c46" + "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" }, { "type": "discrete", @@ -39414,7 +39414,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" + "guid": "b492df5b-925d-483d-9afa-938200cee254" } }, "Example 3": { @@ -39542,7 +39542,7 @@ { "type": "discrete", "name": "Red", - "guid": "ff495d8c-b879-44b7-b506-e14549955c46" + "guid": "e132ad00-53cb-4f5c-85e1-025fa7d955e2" }, { "type": "discrete", @@ -39552,7 +39552,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "011d9b13-4fcb-40cd-a848-fe8c4c0c0401" + "guid": "b492df5b-925d-483d-9afa-938200cee254" } }, "Example 3": { @@ -39820,7 +39820,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" + "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" } }, "Example 2": { @@ -39831,7 +39831,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "f2838392-782b-400f-85fa-eabf09f5504e" + "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" } }, "Example 3": { @@ -39839,7 +39839,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" + "guid": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" } }, "Example 4": { @@ -39858,7 +39858,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" + "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" } }, "Example 6": { @@ -39898,7 +39898,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" + "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" } }, "Example 2": { @@ -39909,7 +39909,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "f2838392-782b-400f-85fa-eabf09f5504e" + "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" } }, "Example 3": { @@ -39917,7 +39917,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" + "guid": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" } }, "Example 4": { @@ -39936,7 +39936,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" + "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" } }, "Example 6": { @@ -39976,7 +39976,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" + "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" } }, "Example 2": { @@ -39987,7 +39987,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "f2838392-782b-400f-85fa-eabf09f5504e" + "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" } }, "Example 3": { @@ -39995,7 +39995,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" + "guid": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" } }, "Example 4": { @@ -40014,7 +40014,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" + "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" } }, "Example 6": { @@ -40054,7 +40054,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "462adefd-5e8c-4891-81f2-7db7373c92b0" + "guid": "4abf8b2c-e982-46b7-9288-dbd30c9909b0" } }, "Example 2": { @@ -40065,7 +40065,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "f2838392-782b-400f-85fa-eabf09f5504e" + "guid": "381c9384-1b56-4f15-a978-ab74ef80c610" } }, "Example 3": { @@ -40073,7 +40073,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "f0fdcd30-17e8-435a-bef5-482e43667472" + "guid": "45dffa75-39c0-4fb2-9e83-1de0ac14243c" } }, "Example 4": { @@ -40092,7 +40092,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "0b9b0afb-243c-4989-8edf-07f9ede4a601" + "guid": "a749a543-be1d-43e5-b9b1-20c9a3a6c72e" } }, "Example 6": { @@ -40385,7 +40385,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" + "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" } }, "Example 2": { @@ -40394,7 +40394,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" + "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" } }, "Example 3": { @@ -40402,7 +40402,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" + "guid": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" } } } @@ -40419,7 +40419,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" + "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" } }, "Example 2": { @@ -40428,7 +40428,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" + "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" } }, "Example 3": { @@ -40436,7 +40436,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" + "guid": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" } } } @@ -40453,7 +40453,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" + "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" } }, "Example 2": { @@ -40462,7 +40462,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" + "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" } }, "Example 3": { @@ -40470,7 +40470,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" + "guid": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" } } } @@ -40487,7 +40487,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "93f8812d-350c-4b24-b2ea-674fdaeaec9b" + "guid": "bd96a2a3-efff-4ff6-a91e-d61e5124bd89" } }, "Example 2": { @@ -40496,7 +40496,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "8f0392c1-3857-463c-9a61-8d209faaa9fe" + "guid": "3e519876-3d97-44aa-9f9e-57e7112c6c3a" } }, "Example 3": { @@ -40504,7 +40504,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "67b14148-8ec1-4333-b7b9-b6ea8ea69344" + "guid": "98ba6fae-9a7b-4843-abc4-060a6f1006e0" } } } @@ -41160,7 +41160,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" + "guid": "05d4e238-df80-46bb-859c-0acff93e5d44" } }, "Example 3": { @@ -41171,7 +41171,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" + "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" } } } @@ -41193,7 +41193,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" + "guid": "05d4e238-df80-46bb-859c-0acff93e5d44" } }, "Example 3": { @@ -41204,7 +41204,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" + "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" } } } @@ -41226,7 +41226,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" + "guid": "05d4e238-df80-46bb-859c-0acff93e5d44" } }, "Example 3": { @@ -41237,7 +41237,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" + "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" } } } @@ -41259,7 +41259,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "6461ce22-c4ef-44b7-997d-c5171aac1f98" + "guid": "05d4e238-df80-46bb-859c-0acff93e5d44" } }, "Example 3": { @@ -41270,7 +41270,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "3c7017be-e89a-4fac-9b76-9f8444d9996c" + "guid": "546a6271-fe6c-4ec9-8e73-cc4fae9d54b2" } } } @@ -41412,7 +41412,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" + "guid": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" } }, "Example 2": { @@ -41432,7 +41432,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", + "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41448,7 +41448,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" + "guid": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" } }, "Example 2": { @@ -41468,7 +41468,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", + "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41484,7 +41484,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" + "guid": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" } }, "Example 2": { @@ -41504,7 +41504,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", + "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41520,7 +41520,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "5d6897a4-74c2-4b93-b2ac-e145253fb5cb" + "guid": "4f66e9b7-c247-43bd-b5d4-9ca4e624a04d" } }, "Example 2": { @@ -41540,7 +41540,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "85548b9c-bc46-4bbc-8b3b-4b381631e0ed", + "guid": "d571f836-41d8-486a-bf30-2ad103ca79e6", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -41722,7 +41722,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" + "guid": "b3771f08-e965-4684-829f-e25ad0462d88" } }, "Example 3": { @@ -41733,7 +41733,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" + "guid": "31833a5f-0731-42e7-97ac-633c84c60844" } } } @@ -41757,7 +41757,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" + "guid": "b3771f08-e965-4684-829f-e25ad0462d88" } }, "Example 3": { @@ -41768,7 +41768,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" + "guid": "31833a5f-0731-42e7-97ac-633c84c60844" } } } @@ -41792,7 +41792,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" + "guid": "b3771f08-e965-4684-829f-e25ad0462d88" } }, "Example 3": { @@ -41803,7 +41803,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" + "guid": "31833a5f-0731-42e7-97ac-633c84c60844" } } } @@ -41827,7 +41827,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "08bfe94b-4822-4b38-bd7e-1ada0f8353f7" + "guid": "b3771f08-e965-4684-829f-e25ad0462d88" } }, "Example 3": { @@ -41838,7 +41838,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "9ee6be77-3354-4ba9-88fe-29cf3145cee9" + "guid": "31833a5f-0731-42e7-97ac-633c84c60844" } } } @@ -41975,7 +41975,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" + "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" } }, "Example 2": { @@ -41990,7 +41990,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" + "guid": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" } } } @@ -42006,7 +42006,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" + "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" } }, "Example 2": { @@ -42021,7 +42021,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" + "guid": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" } } } @@ -42037,7 +42037,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" + "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" } }, "Example 2": { @@ -42052,7 +42052,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" + "guid": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" } } } @@ -42068,7 +42068,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "75cb9c0a-26ff-4d82-8d41-fb0c27c585c4" + "guid": "6bf21843-26f3-4b84-8bba-25523afa5277" } }, "Example 2": { @@ -42083,7 +42083,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "b963f12e-7b5c-41ac-893f-c12e28f4bc59" + "guid": "8bfb5c57-2d3f-4dae-98c9-26fe895a326e" } } } @@ -42253,7 +42253,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "f1f98fc0-f41f-4dfa-8353-e55ab955ba58" + "guid": "77db78da-945e-424f-b719-22a414fadaab" } ] } @@ -42323,7 +42323,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" + "guid": "206c26a0-8008-4c3e-b440-59928050b743" } }, "Example 3": { @@ -42333,7 +42333,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" + "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42346,12 +42346,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", - "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" + "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", + "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" + "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" } }, "Example 5": { @@ -42398,7 +42398,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" + "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" } } } @@ -42434,7 +42434,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" + "guid": "206c26a0-8008-4c3e-b440-59928050b743" } }, "Example 3": { @@ -42444,7 +42444,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" + "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42457,12 +42457,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", - "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" + "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", + "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" + "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" } }, "Example 5": { @@ -42509,7 +42509,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" + "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" } } } @@ -42545,7 +42545,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" + "guid": "206c26a0-8008-4c3e-b440-59928050b743" } }, "Example 3": { @@ -42555,7 +42555,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" + "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42568,12 +42568,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", - "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" + "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", + "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" + "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" } }, "Example 5": { @@ -42620,7 +42620,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" + "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" } } } @@ -42656,7 +42656,7 @@ }, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "30bdee27-2e84-48e1-8eb7-406017dd5a39" + "guid": "206c26a0-8008-4c3e-b440-59928050b743" } }, "Example 3": { @@ -42666,7 +42666,7 @@ "type": "crossDatabase", "includeIndirectLinks": false, "linkTarget": { - "tableGuid": "6990fb0f-b680-444f-8505-59ac2e8ef94f" + "tableGuid": "3b9b7114-7c7d-4091-8a01-6f4b88ea03c4" }, "reverseName": "Cross database link to Material Universe", "name": "Cross database link from Material Universe" @@ -42679,12 +42679,12 @@ "type": "crossDatabase", "includeIndirectLinks": true, "linkTarget": { - "databaseGuid": "d094c30b-f5ef-457f-83e8-dac1f568c94e", - "tableGuid": "82908170-5f8e-4bf3-a3ce-ca8c2d32f4d2" + "databaseGuid": "f09672e4-28ec-4eec-a934-9c9bb915789a", + "tableGuid": "f88b6026-300c-4814-a861-1e8abfa0ac35" }, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "45602a78-6708-4ac3-b05d-9943eb757ccf" + "guid": "4c8f09f0-565d-4917-99c6-99a5e0a37723" } }, "Example 5": { @@ -42731,7 +42731,7 @@ }, "reverseName": "Material Universe dynamic link", "name": "Process Universe dynamic link", - "guid": "141a7103-fd6a-4b43-ba1b-689f581142ef" + "guid": "26b8b572-368a-4e0b-ba59-eb4ea7a571ff" } } } @@ -42786,8 +42786,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "d939d7a2-b53c-4cc5-84eb-594891d8b25e", - "tableGuid": "6e6f9c3d-9c14-45c9-99c7-e1a1667b097a" + "databaseGuid": "c7cf63d1-bac6-4277-b1b0-bc2f5ab2b3d3", + "tableGuid": "1847cfbc-035a-4d10-865e-e39bf7242c4f" } }, "identity": 1, @@ -42795,7 +42795,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "0c7567ca-dd3f-4184-9cad-657a37620ff9" + "guid": "7f5e2845-0bcf-4a90-af8d-6d48100c9b2f" } }, "Example 6": { @@ -42986,8 +42986,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "1a2bf1f6-94d1-494a-9a63-94fa262066de", - "tableGuid": "2447cd93-897e-434c-a23a-15d98bd99706" + "databaseGuid": "e8bd2855-8039-43d2-b046-0c4ec299665b", + "tableGuid": "a25e8499-576f-4981-af63-e2844b5bfd74" } }, "identity": 1, @@ -42995,7 +42995,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "da2a0d8a-de7e-46ae-935c-2768fe50ca7d" + "guid": "e5e78b2d-0c6e-4a6a-97cc-0b7397bab6fb" } }, "Example 3": { @@ -43166,7 +43166,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" + "guid": "11d0feb3-36db-4711-a518-02bcf8829340" } }, "Example 2": { @@ -43186,7 +43186,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" + "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" } }, "Example 4": { @@ -43197,7 +43197,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" + "guid": "0331ba9f-d204-425b-9a14-2014da21d769" } }, "Example 5": { @@ -43219,7 +43219,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" + "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" } } } @@ -43234,7 +43234,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" + "guid": "11d0feb3-36db-4711-a518-02bcf8829340" } }, "Example 2": { @@ -43254,7 +43254,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" + "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" } }, "Example 4": { @@ -43265,7 +43265,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" + "guid": "0331ba9f-d204-425b-9a14-2014da21d769" } }, "Example 5": { @@ -43287,7 +43287,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" + "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" } } } @@ -43302,7 +43302,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" + "guid": "11d0feb3-36db-4711-a518-02bcf8829340" } }, "Example 2": { @@ -43322,7 +43322,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" + "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" } }, "Example 4": { @@ -43333,7 +43333,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" + "guid": "0331ba9f-d204-425b-9a14-2014da21d769" } }, "Example 5": { @@ -43355,7 +43355,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" + "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" } } } @@ -43370,7 +43370,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "b1f9a590-502b-40ac-b74e-f275fff83700" + "guid": "11d0feb3-36db-4711-a518-02bcf8829340" } }, "Example 2": { @@ -43390,7 +43390,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "3f8eaca7-313e-49f6-84ef-427bcff02370" + "guid": "e793b848-0fbd-4f65-9ed3-da2f999f7ef0" } }, "Example 4": { @@ -43401,7 +43401,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "b5525df8-07ad-46e5-863a-ae2dfbdf9e2c" + "guid": "0331ba9f-d204-425b-9a14-2014da21d769" } }, "Example 5": { @@ -43423,7 +43423,7 @@ "type": "dynamic", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "a4f3d73e-1673-4dde-ae95-23a60a8d8cb0" + "guid": "7ff58980-9ee2-4340-8039-d70954a0e6b7" } } } @@ -43478,8 +43478,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "8c54c25a-f28a-4ced-bebf-8089c26fbf4e", - "tableGuid": "1139114d-2e41-4f37-a31b-e56f3ddb8d32" + "databaseGuid": "8a8082bd-02e2-4019-bb25-47726ee24857", + "tableGuid": "cdd56fd6-7017-48db-bb71-c1324fb0a63f" } }, "identity": 1, @@ -43487,7 +43487,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "f3d1aee8-4c15-4d06-91ab-7a81b58ecbad" + "guid": "8c3954b9-335c-4878-b4bd-aec08b8f3a6f" } }, "Example 9": { @@ -43638,7 +43638,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" + "guid": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" } } } @@ -43662,7 +43662,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" + "guid": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" } } } @@ -43686,7 +43686,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" + "guid": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" } } } @@ -43710,7 +43710,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "cb68712d-5cd0-4730-ad14-4bffcdf6c2a9" + "guid": "aab11794-e6a8-4b20-84bb-a86f2d326ce2" } } } @@ -43835,7 +43835,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" + "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" } }, "Example 2": { @@ -43865,7 +43865,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" + "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" } }, "Example 2": { @@ -43895,7 +43895,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" + "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" } }, "Example 2": { @@ -43925,7 +43925,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "c46d1a67-1839-45dc-86a3-e0145ccac7c2" + "guid": "bd4e54ac-bff8-4a0f-b63d-586a36a64ccf" } }, "Example 2": { @@ -44117,7 +44117,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" + "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" } ], "name": "Unification" @@ -44198,7 +44198,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" + "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" } ], "name": "Unification" @@ -44279,7 +44279,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" + "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" } ], "name": "Unification" @@ -44360,7 +44360,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "d2571703-c652-42ee-b344-4ecd3be92b31" + "guid": "4a929693-0806-4189-8e49-5e3bd1c050b2" } ], "name": "Unification" @@ -44498,7 +44498,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" + "guid": "df53c2a6-8bee-4028-baff-bea02a5428bd" } }, "Example 3": { @@ -44548,7 +44548,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" + "guid": "df53c2a6-8bee-4028-baff-bea02a5428bd" } }, "Example 3": { @@ -44598,7 +44598,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" + "guid": "df53c2a6-8bee-4028-baff-bea02a5428bd" } }, "Example 3": { @@ -44648,7 +44648,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "bcb65d78-9b72-4f7b-91a9-8bf6ce3e9081" + "guid": "df53c2a6-8bee-4028-baff-bea02a5428bd" } }, "Example 3": { @@ -44879,7 +44879,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" + "guid": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" } }, "Example 3": { @@ -44911,7 +44911,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" + "guid": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" } }, "Example 3": { @@ -44943,7 +44943,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" + "guid": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" } }, "Example 3": { @@ -44975,7 +44975,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "33efc8ce-8d5c-4d82-9c69-d99b2969cab8" + "guid": "d1ebb233-2646-4ec9-9ef1-6d8601ab0544" } }, "Example 3": { @@ -45164,7 +45164,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" + "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" } }, "Example 2": { @@ -45205,7 +45205,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" + "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" } }, "Example 2": { @@ -45246,7 +45246,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" + "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" } }, "Example 2": { @@ -45287,7 +45287,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "96c5b2eb-dc55-4b3a-8a5d-d86f31a0e928" + "guid": "8b4a91b6-61b0-4675-950a-42b2d738cb37" } }, "Example 2": { @@ -45789,7 +45789,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" + "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" } }, "Example 3": { @@ -45824,7 +45824,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" + "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" } }, "Example 3": { @@ -45859,7 +45859,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" + "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" } }, "Example 3": { @@ -45894,7 +45894,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "641d1502-2dbc-4c4c-953e-cedf4ea755b5" + "guid": "ef5ddf30-929a-43fb-bf0c-95e3fbec0d28" } }, "Example 3": { @@ -46126,7 +46126,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" + "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" } }, "Example 2": { @@ -46187,7 +46187,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" + "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" } }, "Example 2": { @@ -46248,7 +46248,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" + "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" } }, "Example 2": { @@ -46309,7 +46309,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "de052dc5-9c9e-4090-ab1d-2f5cdcdee124" + "guid": "56300016-7dc9-4fc4-bfb5-5c33125e4c70" } }, "Example 2": { @@ -46795,9 +46795,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "099eb3a4-f437-4d11-a807-2a90aa78e92c", - "databaseVersionGuid": "577d4a1b-be22-4758-951d-1233c82f2c31", - "tableGuid": "a369e360-7a5d-473d-9227-269ad056c80a" + "databaseGuid": "4c4c951c-9aa3-4082-9278-2d351941d9c9", + "databaseVersionGuid": "a5241eff-5236-41da-b7e0-74fce1fc5e13", + "tableGuid": "cb6f8917-f9f1-4220-8582-4384f4265930" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -46807,7 +46807,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "d4679b7e-1b97-49bb-bf46-4f355f59b8ad" + "guid": "9390b466-5075-4039-b028-c302f9a63e14" }, { "identity": 8944, @@ -47335,7 +47335,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" + "guid": "231fb8eb-bac7-41fe-968e-242d9e646f4a" } } } @@ -47350,7 +47350,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" + "guid": "231fb8eb-bac7-41fe-968e-242d9e646f4a" } } } @@ -47365,7 +47365,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" + "guid": "231fb8eb-bac7-41fe-968e-242d9e646f4a" } } } @@ -47380,7 +47380,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "82e78fc5-434e-4fc0-a706-96e5cff9cc08" + "guid": "231fb8eb-bac7-41fe-968e-242d9e646f4a" } } } @@ -47489,7 +47489,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" + "guid": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" } }, "Example 2": { @@ -47503,7 +47503,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" + "guid": "e9b43552-0f96-4b32-9517-69e828a3f2aa" } } } @@ -47518,7 +47518,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" + "guid": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" } }, "Example 2": { @@ -47532,7 +47532,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" + "guid": "e9b43552-0f96-4b32-9517-69e828a3f2aa" } } } @@ -47547,7 +47547,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" + "guid": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" } }, "Example 2": { @@ -47561,7 +47561,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" + "guid": "e9b43552-0f96-4b32-9517-69e828a3f2aa" } } } @@ -47576,7 +47576,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "a51e89c5-58c4-49e3-9850-f4249f45c79f" + "guid": "bd2baa05-f724-4ad8-83db-0e9e2c4af149" } }, "Example 2": { @@ -47590,7 +47590,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "68c1b268-c5dc-4d2b-a570-570793a39427" + "guid": "e9b43552-0f96-4b32-9517-69e828a3f2aa" } } } @@ -48049,8 +48049,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", - "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" + "896ece63-abe0-43d5-b229-420f2711f99c", + "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" ], "type": "recordListMember" }, @@ -48074,7 +48074,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -48082,6 +48082,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -48092,7 +48104,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -48103,7 +48139,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -48125,7 +48161,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -48154,7 +48190,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -48198,7 +48234,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -48248,7 +48284,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -48275,7 +48311,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -48306,7 +48342,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -48327,7 +48363,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -48358,7 +48394,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -48389,7 +48425,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -48416,7 +48452,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -48440,7 +48476,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -48468,7 +48504,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -48838,8 +48874,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", - "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" + "896ece63-abe0-43d5-b229-420f2711f99c", + "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" ], "type": "recordListMember" }, @@ -48863,7 +48899,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -48871,6 +48907,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -48881,7 +48929,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -48892,7 +48964,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -48914,7 +48986,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -48943,7 +49015,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -48987,7 +49059,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -49037,7 +49109,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -49064,7 +49136,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -49095,7 +49167,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -49116,7 +49188,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -49147,7 +49219,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -49178,7 +49250,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -49205,7 +49277,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -49229,7 +49301,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -49257,7 +49329,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -49627,8 +49699,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", - "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" + "896ece63-abe0-43d5-b229-420f2711f99c", + "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" ], "type": "recordListMember" }, @@ -49652,7 +49724,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -49660,6 +49732,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -49670,7 +49754,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -49681,7 +49789,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -49703,7 +49811,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -49732,7 +49840,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -49776,7 +49884,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -49826,7 +49934,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -49853,7 +49961,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -49884,7 +49992,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -49905,7 +50013,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -49936,7 +50044,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -49967,7 +50075,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -49994,7 +50102,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -50018,7 +50126,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -50046,7 +50154,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -50416,8 +50524,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "4e464ff2-6bae-4d04-8c5f-c5624cd31f81", - "2ca5a43f-875a-418f-8a9a-de4d9a3c00b9" + "896ece63-abe0-43d5-b229-420f2711f99c", + "7d0cce6a-7ff6-4cf2-b49d-b652ac06694f" ], "type": "recordListMember" }, @@ -50441,7 +50549,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -50449,6 +50557,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -50459,7 +50579,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -50470,7 +50614,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -50492,7 +50636,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -50521,7 +50665,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -50565,7 +50709,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -50615,7 +50759,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -50642,7 +50786,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -50673,7 +50817,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -50694,7 +50838,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -50725,7 +50869,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -50756,7 +50900,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -50783,7 +50927,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -50807,7 +50951,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -50835,7 +50979,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -50951,7 +51095,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -50973,7 +51117,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -51002,7 +51146,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -51024,7 +51168,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -51041,7 +51185,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -51066,7 +51210,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -51082,7 +51226,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -51131,7 +51275,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -51148,7 +51292,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -51194,7 +51338,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -51248,7 +51392,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -51277,21 +51421,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "47d8fd05-fb9e-418e-8fc6-f650408da101", - "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" + "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", + "61c36a89-d334-406a-9480-2239e4c1c82a" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -51303,19 +51447,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -51326,7 +51482,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -51337,7 +51517,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -51359,7 +51539,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -51388,7 +51568,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -51432,7 +51612,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -51482,7 +51662,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -51509,7 +51689,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -51540,7 +51720,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -51561,7 +51741,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -51592,7 +51772,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -51623,7 +51803,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -51650,7 +51830,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -51674,7 +51854,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -51702,7 +51882,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -51740,7 +51920,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -51762,7 +51942,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -51791,7 +51971,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -51813,7 +51993,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -51830,7 +52010,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -51855,7 +52035,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -51871,7 +52051,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -51920,7 +52100,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -51937,7 +52117,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -51983,7 +52163,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -52037,7 +52217,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -52066,21 +52246,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "47d8fd05-fb9e-418e-8fc6-f650408da101", - "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" + "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", + "61c36a89-d334-406a-9480-2239e4c1c82a" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -52092,19 +52272,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -52115,7 +52307,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -52126,7 +52342,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -52148,7 +52364,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -52177,7 +52393,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -52221,7 +52437,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -52271,7 +52487,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -52298,7 +52514,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -52329,7 +52545,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -52350,7 +52566,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -52381,7 +52597,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -52412,7 +52628,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -52439,7 +52655,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -52463,7 +52679,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -52491,7 +52707,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -52529,7 +52745,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -52551,7 +52767,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -52580,7 +52796,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -52602,7 +52818,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -52619,7 +52835,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -52644,7 +52860,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -52660,7 +52876,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -52709,7 +52925,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -52726,7 +52942,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -52772,7 +52988,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -52826,7 +53042,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -52855,21 +53071,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "47d8fd05-fb9e-418e-8fc6-f650408da101", - "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" + "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", + "61c36a89-d334-406a-9480-2239e4c1c82a" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -52881,19 +53097,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -52904,7 +53132,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -52915,7 +53167,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -52937,7 +53189,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -52966,7 +53218,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -53010,7 +53262,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -53060,7 +53312,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -53087,7 +53339,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -53118,7 +53370,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -53139,7 +53391,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -53170,7 +53422,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -53201,7 +53453,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -53228,7 +53480,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -53252,7 +53504,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -53280,7 +53532,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -53318,7 +53570,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -53340,7 +53592,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -53369,7 +53621,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -53391,7 +53643,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -53408,7 +53660,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -53433,7 +53685,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -53449,7 +53701,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -53498,7 +53750,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -53515,7 +53767,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -53561,7 +53813,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -53615,7 +53867,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -53644,21 +53896,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "47d8fd05-fb9e-418e-8fc6-f650408da101", - "36f6f844-ffd5-41f9-81c2-dc61c2dcba0c" + "b0b5b0a7-4f10-4b9d-913f-0eb6888c5eeb", + "61c36a89-d334-406a-9480-2239e4c1c82a" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -53670,19 +53922,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -53693,7 +53957,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -53704,7 +53992,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -53726,7 +54014,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -53755,7 +54043,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -53799,7 +54087,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -53849,7 +54137,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -53876,7 +54164,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -53907,7 +54195,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -53928,7 +54216,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -53959,7 +54247,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -53990,7 +54278,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -54017,7 +54305,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -54041,7 +54329,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -54069,7 +54357,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -54508,8 +54796,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "129db7a6-5b0f-41a0-aa7f-54b914b931d6", - "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" + "63707538-5b9b-4ca6-856d-1fac13d3475e", + "ed1d4962-2a71-49e1-8d38-c2298a2010d1" ], "type": "recordListMember" }, @@ -54533,7 +54821,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -54541,6 +54829,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -54551,7 +54851,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -54562,7 +54886,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -54584,7 +54908,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -54613,7 +54937,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -54657,7 +54981,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -54707,7 +55031,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -54734,7 +55058,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -54765,7 +55089,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -54786,7 +55110,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -54817,7 +55141,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -54848,7 +55172,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -54875,7 +55199,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -54899,7 +55223,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -54927,7 +55251,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -55297,8 +55621,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "129db7a6-5b0f-41a0-aa7f-54b914b931d6", - "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" + "63707538-5b9b-4ca6-856d-1fac13d3475e", + "ed1d4962-2a71-49e1-8d38-c2298a2010d1" ], "type": "recordListMember" }, @@ -55322,7 +55646,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -55330,6 +55654,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -55340,7 +55676,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -55351,7 +55711,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -55373,7 +55733,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -55402,7 +55762,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -55446,7 +55806,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -55496,7 +55856,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -55523,7 +55883,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -55554,7 +55914,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -55575,7 +55935,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -55606,7 +55966,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -55637,7 +55997,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -55664,7 +56024,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -55688,7 +56048,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -55716,7 +56076,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -56086,8 +56446,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "129db7a6-5b0f-41a0-aa7f-54b914b931d6", - "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" + "63707538-5b9b-4ca6-856d-1fac13d3475e", + "ed1d4962-2a71-49e1-8d38-c2298a2010d1" ], "type": "recordListMember" }, @@ -56111,7 +56471,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -56119,6 +56479,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -56129,7 +56501,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -56140,7 +56536,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -56162,7 +56558,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -56191,7 +56587,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -56235,7 +56631,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -56285,7 +56681,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -56312,7 +56708,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -56343,7 +56739,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -56364,7 +56760,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -56395,7 +56791,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -56426,7 +56822,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -56453,7 +56849,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -56477,7 +56873,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -56505,7 +56901,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -56875,8 +57271,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "129db7a6-5b0f-41a0-aa7f-54b914b931d6", - "a9b5991e-7f3c-4b10-b1b0-b310dff454b8" + "63707538-5b9b-4ca6-856d-1fac13d3475e", + "ed1d4962-2a71-49e1-8d38-c2298a2010d1" ], "type": "recordListMember" }, @@ -56900,7 +57296,7 @@ "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, @@ -56908,6 +57304,18 @@ } }, "Example 15": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 16": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -56918,7 +57326,31 @@ "sortCriteria": [] } }, - "Example 16": { + "Example 17": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 18": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 19": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -56929,7 +57361,7 @@ "sortCriteria": [] } }, - "Example 17": { + "Example 20": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -56951,7 +57383,7 @@ "sortCriteria": [] } }, - "Example 18": { + "Example 21": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -56980,7 +57412,7 @@ "sortCriteria": [] } }, - "Example 19": { + "Example 22": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -57024,7 +57456,7 @@ "sortCriteria": [] } }, - "Example 20": { + "Example 23": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -57074,7 +57506,7 @@ "sortCriteria": [] } }, - "Example 21": { + "Example 24": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -57101,7 +57533,7 @@ "sortCriteria": [] } }, - "Example 22": { + "Example 25": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -57132,7 +57564,7 @@ "sortCriteria": [] } }, - "Example 23": { + "Example 26": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -57153,7 +57585,7 @@ "sortCriteria": [] } }, - "Example 24": { + "Example 27": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -57184,7 +57616,7 @@ "sortCriteria": [] } }, - "Example 25": { + "Example 28": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -57215,7 +57647,7 @@ "sortCriteria": [] } }, - "Example 26": { + "Example 29": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -57242,7 +57674,7 @@ } } }, - "Example 27": { + "Example 30": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -57266,7 +57698,7 @@ ] } }, - "Example 28": { + "Example 31": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -57294,7 +57726,7 @@ "sortCriteria": [] } }, - "Example 29": { + "Example 32": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -57377,7 +57809,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -57399,7 +57831,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -57428,7 +57860,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -57450,7 +57882,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -57467,7 +57899,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -57492,7 +57924,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -57508,7 +57940,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -57557,7 +57989,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -57574,7 +58006,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -57620,7 +58052,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -57674,7 +58106,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -57703,21 +58135,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", - "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" + "86897e62-5944-43dd-ac1e-f85ba06ae18b", + "8fea942f-1b3c-45ae-b10f-c38f849dd769" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -57729,19 +58161,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -57752,7 +58196,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -57763,7 +58231,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -57785,7 +58253,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -57814,7 +58282,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -57858,7 +58326,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -57908,7 +58376,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -57935,7 +58403,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -57966,7 +58434,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -57987,7 +58455,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -58018,7 +58486,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -58049,7 +58517,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -58076,7 +58544,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -58100,7 +58568,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -58128,7 +58596,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -58166,7 +58634,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -58188,7 +58656,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -58217,7 +58685,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -58239,7 +58707,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -58256,7 +58724,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -58281,7 +58749,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -58297,7 +58765,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -58346,7 +58814,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -58363,7 +58831,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -58409,7 +58877,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -58463,7 +58931,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -58492,21 +58960,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", - "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" + "86897e62-5944-43dd-ac1e-f85ba06ae18b", + "8fea942f-1b3c-45ae-b10f-c38f849dd769" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -58518,19 +58986,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -58541,7 +59021,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -58552,7 +59056,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -58574,7 +59078,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -58603,7 +59107,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -58647,7 +59151,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -58697,7 +59201,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -58724,7 +59228,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -58755,7 +59259,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -58776,7 +59280,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -58807,7 +59311,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -58838,7 +59342,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -58865,7 +59369,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -58889,7 +59393,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -58917,7 +59421,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -58955,7 +59459,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -58977,7 +59481,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -59006,7 +59510,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -59028,7 +59532,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -59045,7 +59549,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -59070,7 +59574,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -59086,7 +59590,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -59135,7 +59639,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -59152,7 +59656,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -59198,7 +59702,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -59252,7 +59756,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -59281,21 +59785,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", - "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" + "86897e62-5944-43dd-ac1e-f85ba06ae18b", + "8fea942f-1b3c-45ae-b10f-c38f849dd769" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -59307,19 +59811,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -59330,7 +59846,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -59341,7 +59881,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -59363,7 +59903,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -59392,7 +59932,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -59436,7 +59976,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -59486,7 +60026,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -59513,7 +60053,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -59544,7 +60084,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -59565,7 +60105,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -59596,7 +60136,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -59627,7 +60167,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -59654,7 +60194,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -59678,7 +60218,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -59706,7 +60246,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -59744,7 +60284,7 @@ "$ref": "#/components/schemas/GsaSearchRequest" }, "examples": { - "Example 30": { + "Example 33": { "summary": "Free text search", "description": "This example demonstrates how to create a new free text search with results sorted by relevance", "value": { @@ -59766,7 +60306,7 @@ ] } }, - "Example 31": { + "Example 34": { "summary": "Free text search with boosted identities", "description": "A free text search in MI_TRAINING in attributes with identities -4 (record name), 928 and 886 with results in the record name boosted by a factor of 20", "value": { @@ -59795,7 +60335,7 @@ "sortCriteria": [] } }, - "Example 32": { + "Example 35": { "summary": "Free text search with excluded columns", "description": "A free text search in MI_TRAINING with local tabular columns 'Comments' and 'Category' from 'Restricted substances that may be used in the manufacture of this material' tabular attribute from 'MaterialUniverse' table excluded from search.", "value": { @@ -59817,7 +60357,7 @@ "sortCriteria": [] } }, - "Example 33": { + "Example 36": { "summary": "Free text prefix search", "description": "This example demonstrates how to create a new free text prefix search", "value": { @@ -59834,7 +60374,7 @@ "sortCriteria": [] } }, - "Example 34": { + "Example 37": { "summary": "Simple attribute search", "description": "A simple search in MI_TRAINING on an integer 8965 attribute, with results sorted by that attribute", "value": { @@ -59859,7 +60399,7 @@ ] } }, - "Example 35": { + "Example 38": { "summary": "Attribute exists search", "description": "A search in MI_TRAINING on for records that have data for integer 8965 attribute", "value": { @@ -59875,7 +60415,7 @@ "sortCriteria": [] } }, - "Example 36": { + "Example 39": { "summary": "Multiple attribute search", "description": "A search where results must match all three attribute criterion (the long text meta attribute exist, the date time attribute has a value in the given range, and the discrete attribute has one of the given values)", "value": { @@ -59924,7 +60464,7 @@ "sortCriteria": [] } }, - "Example 37": { + "Example 40": { "summary": "Attribute prefix search", "description": "This example demonstrates how to create a new prefix search in MI_TRAINING in the 'Restricted Substances' table on the short text attribute 'Chemical Name'", "value": { @@ -59941,7 +60481,7 @@ "sortCriteria": [] } }, - "Example 38": { + "Example 41": { "summary": "Nested boolean search", "description": "A nested boolean search in MI_TRAINING where results must either match the free text search for 'steel', or both the integer attribute with identity 8965 exists and attribute with identity 928 is not applicable", "value": { @@ -59987,7 +60527,7 @@ "sortCriteria": [] } }, - "Example 39": { + "Example 42": { "summary": "Record name search", "description": "A search in MI_TRAINING for a value in either the (full) record name, the short (tree) name, or the breadcrumbs, sorted by (full) record name", "value": { @@ -60041,7 +60581,7 @@ ] } }, - "Example 40": { + "Example 43": { "summary": "Record color search", "description": "A search in MI_TRAINING for results where the record color is red, sorted by record name", "value": { @@ -60070,21 +60610,21 @@ ] } }, - "Example 41": { + "Example 44": { "summary": "Record list search", "description": "A search in MI_TRAINING for results where the record is in any of the given (favorites) list", "value": { "criterion": { "recordListIdentifiers": [ - "6dfd2517-d64f-4aa2-a0b5-e0b031b31f0d", - "fa84fb3b-34af-4f77-93b4-f8bb0ed07d99" + "86897e62-5944-43dd-ac1e-f85ba06ae18b", + "8fea942f-1b3c-45ae-b10f-c38f849dd769" ], "type": "recordListMember" }, "sortCriteria": [] } }, - "Example 42": { + "Example 45": { "summary": "Record reference search", "description": "A search in MI_TRAINING for results where the record matches the record history GUID", "value": { @@ -60096,19 +60636,31 @@ "sortCriteria": [] } }, - "Example 43": { + "Example 46": { "summary": "Record ancestor search", "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", "value": { "criterion": { - "ancestorIdentity": 8923, + "ancestorGuid": "00000024-000e-4fff-8fff-dd92ffff0000", "directParentOnly": false, "type": "recordAncestor" }, "sortCriteria": [] } }, - "Example 44": { + "Example 47": { + "summary": "Record ancestor history search", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryGuid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3", + "directParentOnly": false, + "type": "recordAncestorHistory" + }, + "sortCriteria": [] + } + }, + "Example 48": { "summary": "Top level records search", "description": "A search in MI_TRAINING for results where the record has no parent in the tree", "value": { @@ -60119,7 +60671,31 @@ "sortCriteria": [] } }, - "Example 45": { + "Example 49": { + "summary": "Record ancestor search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorIdentity" + }, + "sortCriteria": [] + } + }, + "Example 50": { + "summary": "Record ancestor history search with identity", + "description": "A search in MI_TRAINING for results where the record is below the Glasses folder in the tree", + "value": { + "criterion": { + "ancestorHistoryIdentity": 8923, + "directParentOnly": false, + "type": "recordAncestorHistoryIdentity" + }, + "sortCriteria": [] + } + }, + "Example 51": { "summary": "Subset search", "description": "A search in MI_TRAINING for results where the record is in the Material Universe 'Ceramics' subset", "value": { @@ -60130,7 +60706,7 @@ "sortCriteria": [] } }, - "Example 46": { + "Example 52": { "summary": "Tabular data link exists", "description": "A tabular search in MI_TRAINING where there is a tabular link from the tabular attribute 'Restricted substances that may be associated with this material'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -60152,7 +60728,7 @@ "sortCriteria": [] } }, - "Example 47": { + "Example 53": { "summary": "Tabular data local column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where the 'amount' is greater than 10% ('amount' is a local column).", "value": { @@ -60181,7 +60757,7 @@ "sortCriteria": [] } }, - "Example 48": { + "Example 54": { "summary": "Tabular data linked attribute column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material', where there is a linked 'Restricted Substance' with an 'amount' greater than 10% ('amount' is a local column), and the 'Chemical name' attribute in the linked 'Restricted Substances' table contains 'Alkanes'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -60225,7 +60801,7 @@ "sortCriteria": [] } }, - "Example 49": { + "Example 55": { "summary": "Tabular data linked column column search", "description": "A tabular search in MI_TRAINING on the tabular attribute 'Restricted substances that may be associated with this material' where there is a linked 'Restricted Substance', which has a linked 'Legislations and Lists' via the tabular attribute 'Legislations restricting its use', and the 'Legislation rating' is 'Banned with conditions'. Target attribute and table may both be omitted, but this could affect performance.", "value": { @@ -60275,7 +60851,7 @@ "sortCriteria": [] } }, - "Example 50": { + "Example 56": { "summary": "Tabular linking value search", "description": "A tabular search in MI_TRAINING where the tabular linking value for the tabular attribute 'Restricted substances associated with this material' contains '85535'", "value": { @@ -60302,7 +60878,7 @@ "sortCriteria": [] } }, - "Example 51": { + "Example 57": { "summary": "Record link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where record link to table with identity 59 exists where the target has a populated picture attribute with identity 8563. Note that link searches must be made against a specific table", "value": { @@ -60333,7 +60909,7 @@ "sortCriteria": [] } }, - "Example 52": { + "Example 58": { "summary": "Record link exists search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a record link to table with identity 59 exists. Note that link searches must be made against a specific table", "value": { @@ -60354,7 +60930,7 @@ "sortCriteria": [] } }, - "Example 53": { + "Example 59": { "summary": "Cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a cross database link to table with identity 56 in Target_Database exists and the linked record has a populated float functional meta attribute with identity 33. Note that link searches must be made against a specific table", "value": { @@ -60385,7 +60961,7 @@ "sortCriteria": [] } }, - "Example 54": { + "Example 60": { "summary": "Reverse cross database link search", "description": "A search in MI_TRAINING from Metals Pedigree table ($ad27baf0-42e9-4136-bc96-9dbbf116e265) where a reverse cross database link from table 39 in Target_Database exists and the linked record has a populated file attribute with identity 87. Note that link searches must be made against a specific table", "value": { @@ -60416,7 +60992,7 @@ "sortCriteria": [] } }, - "Example 55": { + "Example 61": { "summary": "Paginated search", "description": "A free text search where only the first 5 results will be returned initially, and the results have a sliding expiration time of 10 minutes", "value": { @@ -60443,7 +61019,7 @@ } } }, - "Example 56": { + "Example 62": { "summary": "Float functional graph search", "description": "A search on the float functional attribute 'Young's modulus with temperature' for records that have at least one series, use the Temperature parameter (00000001-000a-4fff-8fff-0000ffff0000) on the X-Axis and are not marked as 'Show as table'", "value": { @@ -60467,7 +61043,7 @@ ] } }, - "Example 57": { + "Example 63": { "summary": "Float functional search by attribute value", "description": "A search in MI_TRAINING on 'Young's modulus with temperature' for records that have a Young's Modulus of between 75 and 80 GPa at a temperature of 100°C", "value": { @@ -60495,7 +61071,7 @@ "sortCriteria": [] } }, - "Example 58": { + "Example 64": { "summary": "Discrete functional search", "description": "A search in MI_TRAINING on 'Environmental Resistance' for records that have a resistance of 'Good' or 'Very good' in the Chemical Environment of 'Fresh Water'", "value": { @@ -64470,7 +65046,7 @@ } }, "additionalProperties": false, - "description": "The criterion to be used in a search.\r\n \r\nMultiple criterion can be provided. These should be wrapped with a boolean criterion that specifies whether the search should return results that match \"any\", \"all\", or \"none\" of the criterion.\r\nThese criterion can be nested to created complex search queries.\r\n\r\nThis is one of: \r\n * GsaBooleanCriterion\r\n * GsaFreeTextCriterion\r\n * GsaFreeTextPrefixCriterion\r\n * GsaRecordListMemberCriterion\r\n * GsaRecordPropertyCriterion\r\n * GsaRecordReferenceCriterion\r\n * GsaRecordAncestorCriterion\r\n * GsaRecordAncestorHistoryIdentityCriterion\r\n * GsaRecordSubsetCriterion\r\n * GsaTabularLinkingValueCriterion\r\n * GsaAttributeCriterion\r\n * GsaLocalColumnCriterion\r\n * GsaNamedCriterion", + "description": "The criterion to be used in a search.\r\n \r\nMultiple criterion can be provided. These should be wrapped with a boolean criterion that specifies whether the search should return results that match \"any\", \"all\", or \"none\" of the criterion.\r\nThese criterion can be nested to created complex search queries.\r\n\r\nThis is one of: \r\n * GsaBooleanCriterion\r\n * GsaFreeTextCriterion\r\n * GsaFreeTextPrefixCriterion\r\n * GsaRecordListMemberCriterion\r\n * GsaRecordPropertyCriterion\r\n * GsaRecordReferenceCriterion\r\n * GsaRecordAncestorIdentityCriterion\r\n * GsaRecordAncestorCriterion\r\n * GsaRecordAncestorHistoryIdentityCriterion\r\n * GsaRecordAncestorHistoryCriterion\r\n * GsaRecordSubsetCriterion\r\n * GsaTabularLinkingValueCriterion\r\n * GsaAttributeCriterion\r\n * GsaLocalColumnCriterion\r\n * GsaNamedCriterion", "discriminator": { "propertyName": "type", "mapping": { @@ -64480,8 +65056,10 @@ "recordListMember": "#/components/schemas/GsaRecordListMemberCriterion", "recordProperty": "#/components/schemas/GsaRecordPropertyCriterion", "reference": "#/components/schemas/GsaRecordReferenceCriterion", + "recordAncestorIdentity": "#/components/schemas/GsaRecordAncestorIdentityCriterion", "recordAncestor": "#/components/schemas/GsaRecordAncestorCriterion", "recordAncestorHistoryIdentity": "#/components/schemas/GsaRecordAncestorHistoryIdentityCriterion", + "recordAncestorHistory": "#/components/schemas/GsaRecordAncestorHistoryCriterion", "subset": "#/components/schemas/GsaRecordSubsetCriterion", "tabularLinkingValue": "#/components/schemas/GsaTabularLinkingValueCriterion", "attribute": "#/components/schemas/GsaAttributeCriterion", @@ -64498,8 +65076,10 @@ "recordListMember", "recordProperty", "reference", + "recordAncestorIdentity", "recordAncestor", "recordAncestorHistoryIdentity", + "recordAncestorHistory", "subset", "tabularLinkingValue", "attribute", @@ -74677,9 +75257,9 @@ ], "type": "object", "properties": { - "ancestorIdentity": { - "type": "integer", - "format": "int64", + "ancestorGuid": { + "type": "string", + "format": "uuid", "nullable": true }, "directParentOnly": { @@ -74689,10 +75269,38 @@ } ], "additionalProperties": false, - "description": "Criterion that returns records with a specific parent or ancestor. If no ancestor identity is provided, returns records that sit directly below the table\r\n\r\nThis extends: GsaCriterion\r\n\r\nThe value of discriminator property ('type') must be equal to 'recordAncestor'", + "description": "Criterion that returns records with a specific parent or ancestor. If no ancestor GUID is provided, either all records under the table or records directly below the table are returned based on the value of directParentOnly.\r\n\r\nThis extends: GsaCriterion\r\n\r\nThe value of discriminator property ('type') must be equal to 'recordAncestor'", "x-discriminator-value": "recordAncestor", "x-discriminator-name": "type" }, + "GsaRecordAncestorHistoryCriterion": { + "type": "object", + "allOf": [ + { + "$ref": "#/components/schemas/GsaCriterion" + }, + { + "required": [ + "directParentOnly" + ], + "type": "object", + "properties": { + "ancestorHistoryGuid": { + "type": "string", + "format": "uuid", + "nullable": true + }, + "directParentOnly": { + "type": "boolean" + } + } + } + ], + "additionalProperties": false, + "description": "Criterion that returns records with a specific parent or ancestor. If no ancestor history GUID is provided, either all records under the table or records directly below the table are returned based on the value of directParentOnly.\r\n\r\nThis extends: GsaCriterion\r\n\r\nThe value of discriminator property ('type') must be equal to 'recordAncestorHistory'", + "x-discriminator-value": "recordAncestorHistory", + "x-discriminator-name": "type" + }, "GsaRecordAncestorHistoryIdentityCriterion": { "type": "object", "allOf": [ @@ -74717,10 +75325,38 @@ } ], "additionalProperties": false, - "description": "Criterion that returns records with a specific parent or ancestor. If no ancestor history identity is provided, returns records that sit directly below the table\r\n\r\nThis extends: GsaCriterion\r\n\r\nThe value of discriminator property ('type') must be equal to 'recordAncestorHistoryIdentity'", + "description": "Criterion that returns records with a specific parent or ancestor. If no ancestor history identity is provided, either all records under the table or records directly below the table are returned based on the value of directParentOnly.\r\n\r\nThis extends: GsaCriterion\r\n\r\nThe value of discriminator property ('type') must be equal to 'recordAncestorHistoryIdentity'", "x-discriminator-value": "recordAncestorHistoryIdentity", "x-discriminator-name": "type" }, + "GsaRecordAncestorIdentityCriterion": { + "type": "object", + "allOf": [ + { + "$ref": "#/components/schemas/GsaCriterion" + }, + { + "required": [ + "directParentOnly" + ], + "type": "object", + "properties": { + "ancestorIdentity": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "directParentOnly": { + "type": "boolean" + } + } + } + ], + "additionalProperties": false, + "description": "Criterion that returns records with a specific parent or ancestor. If no ancestor identity is provided, either all records under the table or records directly below the table are returned based on the value of directParentOnly.\r\n\r\nThis extends: GsaCriterion\r\n\r\nThe value of discriminator property ('type') must be equal to 'recordAncestorIdentity'", + "x-discriminator-value": "recordAncestorIdentity", + "x-discriminator-name": "type" + }, "GsaRecordCapabilities": { "required": [ "canModify", @@ -76284,6 +76920,11 @@ "format": "int32", "nullable": true }, + "parentGuid": { + "type": "string", + "format": "uuid", + "nullable": true + }, "type": { "$ref": "#/components/schemas/GsaRecordType" },