Application module: Qualifications ISO/TS 10303-1244: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 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
Bibliography
Index

4 Information requirements

This clause specifies the information requirements for the Qualifications 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.

The following EXPRESS specification begins the Qualifications_arm schema and identifies the necessary external references.

EXPRESS specification:

*)
SCHEMA Qualifications_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 Certification_arm;    --  ISO/TS 10303-1044

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

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

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

USE FROM Person_organization_assignment_arm;    --  ISO/TS 10303-1013
(*

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

Certification_arm ISO/TS 10303-1044
Classification_assignment_arm ISO/TS 10303-1114
Date_time_assignment_arm ISO/TS 10303-1014
Person_organization_arm ISO/TS 10303-1011
Person_organization_assignment_arm ISO/TS 10303-1013

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

The qualification_organization_or_person_in_organization_item type is an extension of the organization_or_person_in_organization_item type. It adds the data types Qualification_assignment and Qualification_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 qualification_organization_or_person_in_organization_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON organization_or_person_in_organization_item WITH
   (Qualification_assignment,
    Qualification_type);
END_TYPE;
(*

4.2.2 qualifications_certification_item   EXPRESS-G

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

EXPRESS specification:

*)
TYPE qualifications_certification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON certification_item WITH
   (Qualification_assignment);
END_TYPE;
(*

4.2.3 qualifications_classified_select   EXPRESS-G

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

4.2.4 qualifications_date_or_date_time_item   EXPRESS-G

The qualifications_date_or_date_time_item type is an extension of the date_or_date_time_item type. It adds the data type Qualification_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.

EXAMPLE 1   assignment date

EXAMPLE 2   valid from date

EXAMPLE 3   valid to date

EXPRESS specification:

*)
TYPE qualifications_date_or_date_time_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON date_or_date_time_item WITH
   (Qualification_assignment);
END_TYPE;
(*

4.2.5 qualifications_select   EXPRESS-G

The qualifications_select type is an extensible list of alternate data types that allows for the designation of the data types Organization, Person and Person_in_organization.

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

The select allows for the assignment to people, organizations and people in organizations.

EXPRESS specification:

*)
TYPE qualifications_select = EXTENSIBLE GENERIC_ENTITY SELECT
   (Organization,
    Person,
    Person_in_organization);
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 Qualification_assignment   EXPRESS-GMapping table

A Qualification_assignment is the assignment of a qualification to a person or organization.

EXPRESS specification:

*)
ENTITY Qualification_assignment;
  assigned_qualification_type : Qualification_type;
  received_by : qualifications_select;
END_ENTITY;
(*

Attribute definitions:

assigned_qualification_type: the type of qualification that has been gained by the person or orgainization.

received_by: the person, organization or person in organization who has the qualification.

4.3.2 Qualification_type   EXPRESS-GMapping table

A Qualification_type is the identification of a definitive recognition as a practitioner.

EXAMPLE 1   A driving licence.

EXAMPLE 2   A qualification for executing the Ground Running task for RB211 engines.

EXAMPLE 3   A Military rank such as Colonel, or Captain

EXAMPLE 4   Educational qualification such as GCSE, A level, Degree, Ordinary National Certificate, Higher National Certificate, City and Guilds, or GNVQ.

EXPRESS specification:

*)
ENTITY Qualification_type;
  name : STRING;
  description : OPTIONAL STRING;
END_ENTITY;
(*

Attribute definitions:

name: the words by which the Qualification_type is known.

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

4.3.3 Qualification_type_relationship   EXPRESS-GMapping table

A Qualification_type_relationship is an association between two Qualification_types.

EXAMPLE 1   Qualification X is a pre-requisite for qualification Y.

EXAMPLE 2   Qualification X is equivalent to qualification Y.

EXPRESS specification:

*)
ENTITY Qualification_type_relationship;
  name : STRING;
  description : OPTIONAL STRING;
  relating : Qualification_type;
  related : Qualification_type;
END_ENTITY;
(*

Attribute definitions:

name: the words by which the Qualification_type_relationship is known.

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

relating: one of the instances of Qualification_types that is a part of the relationship.

related: the other instance Qualification_types participating in the relationship. If one element of the relationship is dependent upon the other, this attribute shall be the dependent one.



*)
END_SCHEMA;  -- Qualifications_arm
(*


© ISO 2004 — All rights reserved