(* $Id: material_property_representation_schema.exp,v 1.7 2017/04/28 17:01:54 rswindells Exp $ ISO 10303 TC184/SC4/WG12 N6751 EXPRESS Source: ISO 10303-45 ed3 Material and other engineering properties - Material property representation schema The following permission notice and disclaimer shall be included in all copies of this EXPRESS schema ("the Schema"), and derivations of the Schema: Copyright ISO 2017 All rights reserved Permission is hereby granted, free of charge in perpetuity, to any person obtaining a copy of the Schema, to use, copy, modify, merge and distribute free of charge, copies of the Schema for the purposes of developing, implementing, installing and using software based on the Schema, and to permit persons to whom the Schema is furnished to do so, subject to the following conditions: THE SCHEMA 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 SCHEMA OR THE USE OR OTHER DEALINGS IN THE SCHEMA. In addition, any modified copy of the Schema shall include the following notice: THIS SCHEMA HAS BEEN MODIFIED FROM THE SCHEMA DEFINED IN ISO 10303-45 ed3 Material and other engineering properties - Material property representation schema AND SHOULD NOT BE INTERPRETED AS COMPLYING WITH THAT STANDARD *) SCHEMA material_property_representation_schema '{iso standard 10303 part(45) version(2) object(1) material_property_representation_schema(2)}'; REFERENCE FROM product_property_representation_schema (property_definition_representation); REFERENCE FROM shape_dimension_schema (dimensional_characteristic_representation); REFERENCE FROM process_property_representation_schema (action_property_representation, resource_property_representation); REFERENCE FROM support_resource_schema (label, text); TYPE characterized_property_representation = SELECT ( action_property_representation, dimensional_characteristic_representation, property_definition_representation, resource_property_representation); END_TYPE; ENTITY data_environment; name : label; description : text; elements : SET [1:?] OF characterized_property_representation; END_ENTITY; ENTITY data_environment_relationship; name : label; description : text; relating_data_environment : data_environment; related_data_environment : data_environment; END_ENTITY; ENTITY material_property_representation SUBTYPE OF (property_definition_representation); dependent_environment : data_environment; END_ENTITY; ENTITY material_dimensional_characteristic_representation SUBTYPE OF (dimensional_characteristic_representation); dependent_environment : data_environment; END_ENTITY; END_SCHEMA; -- material_property_representation_schema