AP scope  |  AP module  |  AP contents  |  AP index
Application module: Justification ISO/TS 10303-1263: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 ARM type definitions
   4.2 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

4 Information requirements

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

EXPRESS specification:

*)
SCHEMA Justification_arm;
(*

4.1 ARM type definitions

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

4.1.1 justification_item   EXPRESS-G

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

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

EXPRESS specification:

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

4.1.2 justification_support_item   EXPRESS-G

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

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

EXPRESS specification:

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

4.2 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.2.1 Justification   EXPRESS-GMapping table

A Justification is the identification and description of the reasons for something. Justification entities may be associated with the data to which they apply.

EXAMPLE    A justification may be provided for a product design. Similarly, a justification may be provided for why an activity is needed or was undertaken.

EXPRESS specification:

*)
ENTITY Justification;
  id : STRING;
  name : OPTIONAL STRING;
  description : STRING;
  context_description : OPTIONAL STRING;
END_ENTITY;
(*

Attribute definitions:

id: the identifier for the Justification.

name: the word or group of words by which the Justification is referred. The value of the attribute need not be specified.

description: the text that provides further information about the Justification.

context_description: the text that provides information about the nature of the context in which the Justification applies. The value of the attribute need not be specified.

4.2.2 Justification_assignment   EXPRESS-GMapping table

A Justification_assignment is the association between a Justification and the item for which the Justification is provided.

EXAMPLE    The item can be an activity or a product design.

EXPRESS specification:

*)
ENTITY Justification_assignment;
  justification : Justification;
  description : OPTIONAL STRING;
  item : justification_item;
  role : STRING;
END_ENTITY;
(*

Attribute definitions:

justification: the Justification which is assigned to an item.

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

item: the data item for which Justification is provided.

role: the function performed by the assigned Justification.

4.2.3 Justification_relationship   EXPRESS-GMapping table

A Justification_relationship is an association between two Justifications.

EXPRESS specification:

*)
ENTITY Justification_relationship;
  name : STRING;
  description : OPTIONAL STRING;
  relating_justification : Justification;
  related_justification : Justification;
END_ENTITY;
(*

Attribute definitions:

name: the word or group of words by which the Justification_relationship is referred.

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

relating_justification: one instance of Justification that is part of the relationship.

related_justification: the other instance of Justification that is part of the relationship. If one element of the relationship is dependent upon the other then this attribute shall be the dependent one.

4.2.4 Justification_support_assignment   EXPRESS-GMapping table

A Justification_support_assignment is the association between a Justification and the item providing evidential support for the Justification .

EXAMPLE    The support item can be the results from an analysis, a report, or professional judgment.

EXPRESS specification:

*)
ENTITY Justification_support_assignment;
  justification : Justification;
  description : OPTIONAL STRING;
  support_item : justification_support_item;
  role : STRING;
END_ENTITY;
(*

Attribute definitions:

justification: the Justification to which the evidential support is associated.

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

support_item: the item which provides evidential support for a Justification.

role: the function performed by the assigned support item.



*)
END_SCHEMA;  -- Justification_arm
(*


© ISO 2004 — All rights reserved