Application module: Property assignment ISO/TS 10303-1030:2019(E)
© ISO

Cover page
Table of contents
Copyright
Foreword
Introduction
1 Scope
2 Normative references
3 Terms, definitions and abbreviated terms
    3.1 Terms and definitions
    3.2 Abbreviated terms

4 Information requirements
   4.1 Required AM ARMs
   4.2 ARM type definitions
   4.3 ARM entity definitions
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM type definition

A MIM short names
B Information object registration
C ARM EXPRESS-G   EXPRESS-G
D MIM EXPRESS-G   EXPRESS-G
E Computer interpretable listings
F Change history
Bibliography
Index

4 Information requirements

This clause specifies the information requirements for the Property assignment application module. The information requirements are specified as the Application Reference Model (ARM) of this application module.

NOTE 1  A graphical representation of the information requirements is given in Annex C.

NOTE 2  The mapping specification is specified in 5.1. It shows how the information requirements are met by using common resources and constructs defined or imported in the MIM schema of this application module.

This clause defines the information requirements to which implementations shall conform using the EXPRESS language as defined in ISO 10303-11. The following begins the Property_assignment_arm schema and identifies the necessary external references.

EXPRESS specification:

*)
SCHEMA Property_assignment_arm;
(*

4.1 Required AM ARMs

The following EXPRESS interface statements specify the elements imported from the ARMs of other application modules.

EXPRESS specification:

*)
USE FROM Activity_arm;    --  ISO/TS 10303-1047

USE FROM Foundation_representation_arm;    --  ISO/TS 10303-1006

USE FROM Independent_property_arm;    --  ISO/TS 10303-1036
(*

NOTE 1   The schemas referenced above are specified in the following part of ISO 10303:

Activity_arm ISO/TS 10303-1047
Foundation_representation_arm ISO/TS 10303-1006
Independent_property_arm ISO/TS 10303-1036

NOTE 2   See Annex C, Figures C.1and C.2 for a graphical representation of this schema.

4.2 ARM type definitions

This subclause specifies the ARM types for this application module. The ARM types and definitions are specified below.

4.2.1 pa_activity_item   EXPRESS-G

The pa_activity_item type is an extension of the activity_item type. It adds the data type Property_definition_relationship to the list of alternate data types.

EXPRESS specification:

*)
TYPE pa_activity_item = SELECT BASED_ON activity_item WITH
   (Property_definition_relationship);
END_TYPE;
(*

4.2.2 property_assignment_select   EXPRESS-G

The property_assignment_select type is an extensible list of alternate data types. Additional alternate data types are specified in select data types that extend the property_assignment_select type.

NOTE 1   This empty extensible select requires extension in a further module to ensure that entities that refer to it have at least one valid instantiation.

NOTE 2   Extensions of this SELECT data type, primarily designed to specify the list of entity data types to which properties can be assigned, are constrained by the existence of resource entities to represent in the MIM schema such an assignment and by the semantics of these entity data types. In particular:

EXPRESS specification:

*)
TYPE property_assignment_select = EXTENSIBLE GENERIC_ENTITY SELECT;
END_TYPE;
(*

4.2.3 represented_definition   EXPRESS-G

The represented_definition type is an extensible list of alternate data types that allows for the designation of the data types Independent_property and Assigned_property.

NOTE   The list of entity data types may be extended in application modules that use the constructs of this module.

EXPRESS specification:

*)
TYPE represented_definition = EXTENSIBLE GENERIC_ENTITY SELECT
   (Independent_property,
    Assigned_property);
END_TYPE;
(*

4.3 ARM entity definitions

This subclause specifies the ARM entities for this module. Each ARM application entity is an atomic element that embodies a unique application concept and contains attributes specifying the data elements of the entity. The ARM entities and definitions are specified below.

4.3.1 Applied_independent_property   EXPRESS-GMapping table

An Applied_independent_property is a type of Assigned_property that is associated with an Independent_property. It characterizes the fact that the Applied_independent_property is the application of the Independent_property to product data.

EXPRESS specification:

*)
ENTITY Applied_independent_property
  SUBTYPE OF (Assigned_property);
  base_independent_property : Independent_property;
DERIVE
  SELF\Assigned_property.name : STRING := base_independent_property.property_type;
END_ENTITY;
(*

Attribute definitions:

base_independent_property: the Independent_property from which the type of the Assigned_property is derived.

name: the words by which the Applied_independent_property is known. It is derived from the property_type of the associated Independent_property.

4.3.2 Applied_independent_property_relationship   EXPRESS-GMapping table

An Applied_independent_property_relationship is a relationship between two Applied_independent_property objects.

EXPRESS specification:

*)
ENTITY Applied_independent_property_relationship;
  description : OPTIONAL STRING;
  id : OPTIONAL STRING;
  related : Applied_independent_property;
  relating : Applied_independent_property;
  relation_type : STRING;
WHERE
  WR1: relating :<>: related;
END_ENTITY;
(*

Attribute definitions:

description: the text that provides further information about the Applied_independent_property_relationship. The value of this attribute need not be specified.

id: the identifier for the Applied_independent_property_relationship. The value of this attribute need not be specified.

related: the other object of Applied_independent_property that is part of the relationship.

relating: one object of Applied_independent_property that is part of the relationship.

relation_type: the meaning of the relationship.

Formal propositions:

WR1: the related and the relating must be different.

4.3.3 Assigned_property   EXPRESS-GMapping table

An Assigned_property is a property that is assigned to product data.

NOTE    The mapping provided for that entity and for its attribute described_element is incomplete. It needs to be completed in any module that uses this module and extends the type property_assignment_select.

EXPRESS specification:

*)
ENTITY Assigned_property;
  id : OPTIONAL STRING;
  name : STRING;
  description : OPTIONAL STRING;
  described_element : property_assignment_select;
END_ENTITY;
(*

Attribute definitions:

id: the text that provides the identifier for the Assigned_property. The value of this attribute need not be specified.

name: the words by which the Assigned_property is known.

description: the text that provides further information about the property. The value of this attribute need not be specified.

described_element: the element to which the property is assigned.

4.3.4 Property_definition_relationship   EXPRESS-GMapping table

A Property_definition_relationship is a relationship between two Assigned_property objects.

EXPRESS specification:

*)
ENTITY Property_definition_relationship;
  name : OPTIONAL STRING;
  description : OPTIONAL STRING;
  relating_property_definition : Assigned_property;
  related_property_definition : Assigned_property;
END_ENTITY;
(*

Attribute definitions:

name: the words by which the Property_definition_relationship is known. The value of this attribute need not be specified.

description: the text that provides further information about the Property_definition_relationship. The value of this attribute need not be specified.

relating_property_definition: one object of Assigned_property that is part of the relationship.

related_property_definition: the other object of Assigned_property that is part of the relationship.

4.3.5 Property_definition_representation   EXPRESS-GMapping table

A Property_definition_representation is an association between an represented_definition and one of its Representations.

EXPRESS specification:

*)
ENTITY Property_definition_representation
  ABSTRACT SUPERTYPE ;
  name : OPTIONAL STRING;
  description : OPTIONAL STRING;
  definition : represented_definition;
  used_representation : Representation;
END_ENTITY;
(*

Attribute definitions:

name: the words by which the Property_definition_representation is known.

description: the text that provides further information about the Property_definition_representation. The value of this attribute need not be specified.

definition: specifies a role of the represented_definition for the Property_definition_representation

used_representation: the Representation associated with the property.

4.3.6 Property_representation   EXPRESS-GMapping table

A Property_representation is a type of Property_definition_representation. A Property_representation is an association between an Assigned_property and one of its Representations.

EXPRESS specification:

*)
ENTITY Property_representation
  SUBTYPE OF (Property_definition_representation);
  SELF\Property_definition_representation.definition RENAMED property : Assigned_property;
END_ENTITY;
(*

Attribute definitions:

property: an attribute inherited from the Property_definition_representation shall be redeclared as the Assigned_property for the Property_representation.



*)
END_SCHEMA;  -- Property_assignment_arm
(*


© ISO 2019 — All rights reserved