AP scope | AP module | AP contents | AP index | |
Application module: Resource as realized | ISO/TS 10303-1269:2004(E) © ISO |
This clause specifies the information requirements for the Resource as realized 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 Resource_as_realized_arm schema and identifies the necessary external references.
EXPRESS specification:
*)
SCHEMA Resource_as_realized_arm;
(*
The following EXPRESS interface statements specify the elements imported from the ARMs of other application modules.
EXPRESS specification:
*)
USE FROM
Classification_assignment_arm;
--
ISO/TS 10303-1114
USE FROM
Required_resource_arm;
--
ISO/TS 10303-1267
USE FROM
Resource_item_arm;
--
ISO/TS 10303-1268
USE FROM
Resource_management_arm;
--
ISO/TS 10303-1266
USE FROM
Value_with_unit_arm;
--
ISO/TS 10303-1054
(*
NOTE 1 The schemas referenced above are specified in the following part of ISO 10303:
Classification_assignment_arm ISO/TS 10303-1114 Required_resource_arm ISO/TS 10303-1267 Resource_item_arm ISO/TS 10303-1268 Resource_management_arm ISO/TS 10303-1266 Value_with_unit_arm ISO/TS 10303-1054
NOTE 2 See Annex C, Figures C.1and C.2 for a graphical representation of this schema.
This subclause specifies the ARM types for this application module. The ARM types and definitions are specified below.
The resource_as_realized_classification_item type is an extension of the classification_item type. It adds the data types Resource_as_realized, Resource_as_realized_assignment and Resource_as_realized_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.
EXPRESS specification:
*)
TYPE
resource_as_realized_classification_item =
EXTENSIBLE
GENERIC_ENTITY
SELECT
BASED_ON
classification_item
WITH
(Resource_as_realized,
Resource_as_realized_assignment,
Resource_as_realized_relationship);
END_TYPE;
(*
The resource_as_realized_item type is an extensible list of alternate data types. Additional alternate data types are specified in select data types that extend the resource_as_realized_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
resource_as_realized_item =
EXTENSIBLE
GENERIC_ENTITY
SELECT;
END_TYPE;
(*
The resource_as_realized_relationship_select type allows for the designation of the data types Required_resource and Resource_event.
EXPRESS specification:
*)
TYPE
resource_as_realized_relationship_select =
SELECT
(Required_resource,
Resource_event);
END_TYPE;
(*
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.
EXAMPLE A resource as realized can be classified as "Used" or "Consumed".
EXPRESS specification:
*)
ENTITY Resource_as_realized;
name : STRING;
description :
OPTIONAL
STRING;
quantity :
OPTIONAL
Value_with_unit;
END_ENTITY;
(*
Attribute definitions:
name: the words by which Resource_as_realized is known.
description: the text that provides further information about the Resource_as_realized. The value of this attribute need not be specified.
quantity: the amount of the Resource_as_realized that has been used or consumed. The value of this attribute need not be specified.
EXAMPLE The quantity can be recorded as amount or duration.
EXPRESS specification:
*)
ENTITY Resource_as_realized_assignment;
assigned_resource : Resource_as_realized;
item : resource_as_realized_item;
END_ENTITY;
(*
Attribute definitions:
assigned_resource: the resource record that is to be associated with one or more activities or tasks that used or consumed the resource.
item: the entity that used or consumed the resource.
A Resource_as_realized_relationship is a relationship between the record of used or consumed resources and the corresponding statement of Required_resource.
EXAMPLE "Alternative" and "Corresponding" are examples of classifications of resource as realized relationship.
NOTE A resource used or consumed can be recorded without having a corresponding resource requirement statement.
EXPRESS specification:
*)
ENTITY Resource_as_realized_relationship;
name : STRING;
description :
OPTIONAL
STRING;
relating : Resource_as_realized;
related : resource_as_realized_relationship_select;
END_ENTITY;
(*
Attribute definitions:
name: the words by which the Resource_as_realized_relationship is known.
description: the text that provides further information about the Resource_as_realized_relationship. The value of this attribute need not be specified.
relating: the instance of Resource_as_realized that is a part of the relationship.
related: the other instance of that is a part of the relationship. If one element of the relationship is dependent upon the other, this attribute shall be the dependent one.
EXPRESS specification:
*)
ENTITY Resource_as_realized_resource_item
SUBTYPE OF (Resource_as_realized);
resource_item : Resource_item;
END_ENTITY;
(*
Attribute definitions:
resource_item: the item defined as a resource within the application context. It can refer to an actual resource as well as to a type of resource.
EXAMPLE person, tool kit, and facility are examples of items that may be a resource for some activity or task.
*)
END_SCHEMA; -- Resource_as_realized_arm
(*
© ISO 2004 — All rights reserved