Application module: AP239 management resource information ISO/TS 10303-1289:2010-07(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
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM type 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
F Change history
Bibliography
Index

4 Information requirements

This clause specifies the information requirements for the AP239 management resource information 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 Ap239_management_resource_information_arm schema and identifies the necessary external references.

EXPRESS specification:

*)
SCHEMA Ap239_management_resource_information_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 Attribute_classification_arm;    --  ISO/TS 10303-1246

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

USE FROM External_class_arm;    --  ISO/TS 10303-1275

USE FROM Management_resource_information_arm;    --  ISO/TS 10303-1288

USE FROM Set_theory_arm;    --  ISO/TS 10303-1210

USE FROM Time_interval_assignment_arm;    --  ISO/TS 10303-1365
(*

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

Attribute_classification_arm ISO/TS 10303-1246
Classification_assignment_arm ISO/TS 10303-1114
External_class_arm ISO/TS 10303-1275
Management_resource_information_arm ISO/TS 10303-1288
Set_theory_arm ISO/TS 10303-1210
Time_interval_assignment_arm ISO/TS 10303-1365

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 ap239_mri_alias_identification_item   EXPRESS-G

The ap239_mri_alias_identification_item type is an extension of the alias_identification_item type. It adds the data types Address, Approval, Approval_status, Certification, Event, External_class_library, Organization, Organization_or_person_in_organization_assignment, Person, Person_in_organization, Project, Security_classification and Security_classification_assignment 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.

Using Alias_identification, an alias can be assigned to the entities in ap239_mri_alias_identification_item.

EXPRESS specification:

*)
TYPE ap239_mri_alias_identification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON alias_identification_item WITH
   (Address,
    Approval,
    Approval_status,
    Certification,
    Event,
    External_class_library,
    Organization,
    Organization_or_person_in_organization_assignment,
    Person,
    Person_in_organization,
    Project,
    Security_classification,
    Security_classification_assignment);
END_TYPE;
(*

4.2.2 ap239_mri_approval_item   EXPRESS-G

The ap239_mri_approval_item type is an extension of the approval_item type. It adds the data types Address_assignment, Certification_assignment, Classification_assignment, Contract_assignment, Date_or_date_time_assignment, Event, Event_assignment, Identification_assignment, Organization_or_person_in_organization_assignment, Organization_relationship, Person_in_organization, Project, Project_assignment, Security_classification and Security_classification_assignment 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.

Using Approval_assignment, an Approval can be assigned to the entities in ap239_mri_approval_item.

EXPRESS specification:

*)
TYPE ap239_mri_approval_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON approval_item WITH
   (Address_assignment,
    Certification_assignment,
    Classification_assignment,
    Contract_assignment,
    Date_or_date_time_assignment,
    Event,
    Event_assignment,
    Identification_assignment,
    Organization_or_person_in_organization_assignment,
    Organization_relationship,
    Person_in_organization,
    Project,
    Project_assignment,
    Security_classification,
    Security_classification_assignment);
END_TYPE;
(*

4.2.3 ap239_mri_certification_item   EXPRESS-G

The ap239_mri_certification_item type is an extension of the certification_item type. It adds the data type Project 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.

Using Certification_assignment, a Certification, can be assigned to the entities in ap239_mri_certification_item.

EXPRESS specification:

*)
TYPE ap239_mri_certification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON certification_item WITH
   (Project);
END_TYPE;
(*

4.2.4 ap239_mri_classification_item   EXPRESS-G

The ap239_mri_classification_item type is an extension of the classification_item type. It adds the data types Address, Address_assignment, Approval, Approval_assignment, Approval_relationship, Approval_status, Approving_person_organization, Attribute_translation_assignment, Calendar_date, Certification, Certification_assignment, Class, Contract, Contract_assignment, Date_or_date_time_assignment, Date_time, Event, Event_assignment, Event_relationship, External_class_library, Identification_assignment, Language, Language_indication, Local_time, Organization, Organization_or_person_in_organization_assignment, Organization_relationship, Person, Person_in_organization, Project, Project_assignment, Project_relationship, Security_classification, Security_classification_assignment and Time_interval_relationship 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.

Using Classification_assignment, a Class can be assigned to the entities in ap239_mri_classification_item.

EXPRESS specification:

*)
TYPE ap239_mri_classification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON classification_item WITH
   (Address,
    Address_assignment,
    Approval,
    Approval_assignment,
    Approval_relationship,
    Approval_status,
    Approving_person_organization,
    Attribute_translation_assignment,
    Calendar_date,
    Certification,
    Certification_assignment,
    Class,
    Contract,
    Contract_assignment,
    Date_or_date_time_assignment,
    Date_time,
    Event,
    Event_assignment,
    Event_relationship,
    External_class_library,
    Identification_assignment,
    Language,
    Language_indication,
    Local_time,
    Organization,
    Organization_or_person_in_organization_assignment,
    Organization_relationship,
    Person,
    Person_in_organization,
    Project,
    Project_assignment,
    Project_relationship,
    Security_classification,
    Security_classification_assignment,
    Time_interval_relationship);
END_TYPE;
(*

4.2.5 ap239_mri_classified_attribute_select   EXPRESS-G

The ap239_mri_classified_attribute_select type is an extension of the classified_attribute_select type. It adds the data types Address_assignment, Approval, Approval_assignment, Approval_relationship, Approval_status, Approving_person_organization, Certification, Certification_assignment, Contract, Date_or_date_time_assignment, Event_assignment, Event_relationship, Identification_assignment, Language, Organization_or_person_in_organization_assignment, Organization_relationship, Person_in_organization, Project_assignment, Project_relationship, Security_classification and Time_interval_relationship 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.

Using Attribute_classification, a Class can be assigned to attributes on instances of the entities in ap239_mri_classified_attribute_select as follows:

EXPRESS specification:

*)
TYPE ap239_mri_classified_attribute_select = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON classified_attribute_select WITH
   (Address_assignment,
    Approval,
    Approval_assignment,
    Approval_relationship,
    Approval_status,
    Approving_person_organization,
    Certification,
    Certification_assignment,
    Contract,
    Date_or_date_time_assignment,
    Event_assignment,
    Event_relationship,
    Identification_assignment,
    Language,
    Organization_or_person_in_organization_assignment,
    Organization_relationship,
    Person_in_organization,
    Project_assignment,
    Project_relationship,
    Security_classification,
    Time_interval_relationship);
END_TYPE;
(*

4.2.6 ap239_mri_contract_item   EXPRESS-G

The ap239_mri_contract_item type is an extension of the contract_item type. It adds the data types External_class, External_class_library and Security_classification 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 ap239_mri_contract_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON contract_item WITH
   (External_class,
    External_class_library,
    Security_classification);
END_TYPE;
(*

4.2.7 ap239_mri_date_or_date_time_item   EXPRESS-G

The ap239_mri_date_or_date_time_item type is an extension of the date_or_date_time_item type. It adds the data types Address_assignment, Approval, Certification_assignment, Classification_assignment, Contract_assignment, Date_or_date_time_assignment, Event_assignment, Identification_assignment, Organization_relationship, Person, Person_in_organization and Security_classification 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.

Using Date_or_date_time_assignment, a Calendar_date or Date_time can be assigned to the entities in ap239_mri_date_or_date_time_item.

EXPRESS specification:

*)
TYPE ap239_mri_date_or_date_time_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON date_or_date_time_item WITH
   (Address_assignment,
    Approval,
    Certification_assignment,
    Classification_assignment,
    Contract_assignment,
    Date_or_date_time_assignment,
    Event_assignment,
    Identification_assignment,
    Organization_relationship,
    Person,
    Person_in_organization,
    Security_classification);
END_TYPE;
(*

4.2.8 ap239_mri_event_item   EXPRESS-G

The ap239_mri_event_item type is an extension of the event_item type. It adds the data types Certification and Project 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.

Using Event_assignment, an Event can be assigned to the entities in ap239_mri_event_item.

EXPRESS specification:

*)
TYPE ap239_mri_event_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON event_item WITH
   (Certification,
    Project);
END_TYPE;
(*

4.2.9 ap239_mri_identification_item   EXPRESS-G

The ap239_mri_identification_item type is an extension of the identification_item type. It adds the data types Address, Approval, Approval_status, Certification, Event, External_class_library, Organization, Organization_or_person_in_organization_assignment, Person, Person_in_organization, Project, Security_classification and Security_classification_assignment 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.

Using Identification_assignment, an identification can be assigned to the entities in ap239_mri_identification_item.

EXPRESS specification:

*)
TYPE ap239_mri_identification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON identification_item WITH
   (Address,
    Approval,
    Approval_status,
    Certification,
    Event,
    External_class_library,
    Organization,
    Organization_or_person_in_organization_assignment,
    Person,
    Person_in_organization,
    Project,
    Security_classification,
    Security_classification_assignment);
END_TYPE;
(*

4.2.10 ap239_mri_organization_or_person_in_organization_item   EXPRESS-G

The ap239_mri_organization_or_person_in_organization_item type is an extension of the organization_or_person_in_organization_item type. It adds the data types Address_assignment, Certification, Certification_assignment, Classification_assignment, Contract_assignment, Date_or_date_time_assignment, Event, Event_assignment, Organization_or_person_in_organization_assignment, Person_in_organization, Project, Project_assignment and Security_classification 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.

Using Organization_or_person_in_organization_assignment, an Organization or Person_in_organization can be assigned to the entities in ap239_mri_organization_or_person_in_organization_item.

EXPRESS specification:

*)
TYPE ap239_mri_organization_or_person_in_organization_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON organization_or_person_in_organization_item WITH
   (Address_assignment,
    Certification,
    Certification_assignment,
    Classification_assignment,
    Contract_assignment,
    Date_or_date_time_assignment,
    Event,
    Event_assignment,
    Organization_or_person_in_organization_assignment,
    Person_in_organization,
    Project,
    Project_assignment,
    Security_classification);
END_TYPE;
(*

4.2.11 ap239_mri_string_select   EXPRESS-G

The ap239_mri_string_select type is an extension of the string_select type. It adds the data type Event 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 ap239_mri_string_select = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON string_select WITH
   (Event);
END_TYPE;
(*

4.2.12 ap239_mri_time_interval_item   EXPRESS-G

The ap239_mri_time_interval_item type is an extension of the time_interval_item type. It adds the data types Address_assignment, Approval, Certification_assignment, Classification_assignment, Contract_assignment, Date_or_date_time_assignment, Event_assignment, Identification_assignment, Organization_relationship, Person, Person_in_organization and Security_classification 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.

Using Time_interval_assignment, a Time_interval can be assigned to the entities in ap239_mri_time_interval_item.

EXPRESS specification:

*)
TYPE ap239_mri_time_interval_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON time_interval_item WITH
   (Address_assignment,
    Approval,
    Certification_assignment,
    Classification_assignment,
    Contract_assignment,
    Date_or_date_time_assignment,
    Event_assignment,
    Identification_assignment,
    Organization_relationship,
    Person,
    Person_in_organization,
    Security_classification);
END_TYPE;
(*



*)
END_SCHEMA;  -- Ap239_management_resource_information_arm
(*


© ISO 2010 — All rights reserved