AP scope  |  AP module  |  AP contents  |  AP index
Application module: Experience ISO/TS 10303-1243:2004(E)
© ISO

Cover page
Table of contents
Copyright
Foreword
Introduction
1 Scope
2 Normative references
3 Terms, definitions and abbreviations

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 definitions
     5.2.2 MIM entity definitions

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

5.2 MIM EXPRESS short listing

This clause specifies the EXPRESS schema derived from the mapping table. It uses elements from the common resources or from other application modules and defines the EXPRESS constructs that are specific to this part of ISO 10303.

This clause constitutes the Module Interpreted Module (MIM) of the application module.

This clause also specifies the modifications that apply to the constructs imported from the common resources.

The following restrictions apply to the use, in this schema, of constructs defined in common resources or in application modules:

EXPRESS specification:

*)
SCHEMA Experience_mim;

USE FROM action_schema    --  ISO 10303-41
  (action_method,
   action_resource,
   executed_action);

USE FROM Activity_as_realized_mim;    --  ISO/TS 10303-1259

USE FROM Activity_method_mim;    --  ISO/TS 10303-1049

USE FROM Activity_mim;    --  ISO/TS 10303-1047

USE FROM Classification_assignment_mim;    --  ISO/TS 10303-1114

USE FROM Date_time_assignment_mim;    --  ISO/TS 10303-1014

USE FROM experience_schema    --  ISO 10303-41
  (experience,
   experience_type,
   experience_type_relationship);

USE FROM management_resources_schema    --  ISO 10303-41
  (experience_assignment,
   experience_type_assignment);

USE FROM Person_organization_mim;    --  ISO/TS 10303-1011

USE FROM person_organization_schema    --  ISO 10303-41
  (organization,
   person,
   person_and_organization);

USE FROM process_property_schema    --  ISO 10303-49
  (action_resource_requirement);

USE FROM product_property_definition_schema    --  ISO 10303-41
  (characterized_object);

USE FROM Property_assignment_mim;    --  ISO/TS 10303-1030

USE FROM Required_resource_mim;    --  ISO/TS 10303-1267

USE FROM Resource_as_realized_mim;    --  ISO/TS 10303-1269
(*

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

action_schema ISO 10303-41
Activity_as_realized_mim ISO/TS 10303-1259
Activity_method_mim ISO/TS 10303-1049
Activity_mim ISO/TS 10303-1047
Classification_assignment_mim ISO/TS 10303-1114
Date_time_assignment_mim ISO/TS 10303-1014
experience_schema ISO 10303-41
management_resources_schema ISO 10303-41
Person_organization_mim ISO/TS 10303-1011
person_organization_schema ISO 10303-41
process_property_schema ISO 10303-49
product_property_definition_schema ISO 10303-41
Property_assignment_mim ISO/TS 10303-1030
Required_resource_mim ISO/TS 10303-1267
Resource_as_realized_mim ISO/TS 10303-1269

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

5.2.1 MIM type definitions

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

5.2.1.1 experience_date_and_time_item   EXPRESS-G

The experience_date_and_time_item type is an extension of the date_and_time_item type. It adds the data types applied_experience_assignment and experience to the list of alternate data types.

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

EXPRESS specification:

*)
TYPE experience_date_and_time_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON date_and_time_item WITH
   (applied_experience_assignment,
    experience);
END_TYPE;
(*

5.2.1.2 experience_date_item   EXPRESS-G

The experience_date_item type is an extension of the date_item type. It adds the data types applied_experience_assignment and experience to the list of alternate data types.

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

EXPRESS specification:

*)
TYPE experience_date_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON date_item WITH
   (applied_experience_assignment,
    experience);
END_TYPE;
(*

5.2.1.3 experience_item   EXPRESS-G

The experience_item type is an extensible list of alternate data types that allows for the designation of the data types action_actual, action_resource, experience_type and experience_type_classification_item.

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

EXPRESS specification:

*)
TYPE experience_item = EXTENSIBLE GENERIC_ENTITY SELECT
   (action_actual,
    action_resource,
    experience_type,
    experience_type_classification_item);
END_TYPE;
(*

5.2.1.4 experience_type_classification_item   EXPRESS-G

The experience_type_classification_item type is an extension of the classification_item type. It adds the data type experience_type to the list of alternate data types.

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

EXPRESS specification:

*)
TYPE experience_type_classification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON classification_item WITH
   (experience_type);
END_TYPE;
(*

5.2.1.5 experience_type_item   EXPRESS-G

The experience_type_item type is an extensible list of alternate data types that allows for the designation of the data types action_method, action_resource_requirement, executed_action, organization, person and person_and_organization.

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

EXPRESS specification:

*)
TYPE experience_type_item = EXTENSIBLE GENERIC_ENTITY SELECT
   (action_method,
    action_resource_requirement,
    executed_action,
    organization,
    person,
    person_and_organization);
END_TYPE;
(*

5.2.2 MIM entity definitions

This subclause specifies the MIM entities for this module. The MIM entities and definitions are specified below.

5.2.2.1 applied_experience_assignment   EXPRESS-G

An applied_experience_assignment is a type of experience_assignment that associates an instance of experience with one or more experience_item instances.

EXPRESS specification:

*)
ENTITY applied_experience_assignment
  SUBTYPE OF (experience_assignment);
  items : SET[1:?] OF experience_item;
END_ENTITY;
(*

Attribute definitions:

items: the set of one or more instances of entity data types cited in experience_item, that are associated with the experience information.

5.2.2.2 applied_experience_type_assignment   EXPRESS-G

An applied_experience_type_assignment is a type of experience_type_assignment that associates an instance of experience_type, with one or more experience_type_item instances.

EXPRESS specification:

*)
ENTITY applied_experience_type_assignment
  SUBTYPE OF (experience_type_assignment);
  items : SET[1:?] OF experience_type_item;
END_ENTITY;
(*

Attribute definitions:

items: the set of one or more instances of entity datatypes listed in experience_type_item, that are associated with the experience_type, information.

5.2.2.3 characterized_experience   EXPRESS-G

A characterized_experience is a type of characterized_object and experience that serves to assign property_definition instances to experience instances.

EXPRESS specification:

*)
ENTITY characterized_experience
  SUBTYPE OF (characterized_object, experience);
END_ENTITY;
(*



*)
END_SCHEMA;  -- Experience_mim
(*


© ISO 2004 — All rights reserved