Application module: Basic data representation ISO/TS 10303-1773:2014-02(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 entity definitions
   4.3 ARM subtype constraint definition
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM entity definitions
     5.2.2 MIM subtype constraint 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
F Change history
Bibliography
Index

(*
ISO TC184/SC4/WG12 N7951 - ISO/TS 10303-1773 Basic data representation - EXPRESS ARM
Supersedes ISO TC184/SC4/WG12 N6216
*)



SCHEMA Basic_data_representation_arm;

USE FROM Extended_date_arm;    -- ISO/TS 10303-1776

USE FROM Foundation_representation_arm;    -- ISO/TS 10303-1006


ENTITY Boolean_representation_item
  SUBTYPE OF (Representation_item);
  the_value : BOOLEAN;
END_ENTITY;

ENTITY Compound_representation_item
  ABSTRACT SUPERTYPE OF (ONEOF (Sequence_representation_item,
                                Set_representation_item))
  SUBTYPE OF (Representation_item);
END_ENTITY;

ENTITY Date_time_representation_item
  SUBTYPE OF (Representation_item);
  the_value : date_or_date_time_select;
END_ENTITY;

ENTITY Integer_representation_item
  SUBTYPE OF (Representation_item);
  the_value : INTEGER;
END_ENTITY;

ENTITY Logical_representation_item
  SUBTYPE OF (Representation_item);
  the_value : LOGICAL;
END_ENTITY;

ENTITY Rational_representation_item
  SUBTYPE OF (Representation_item);
  numerator : INTEGER;
  denominator : INTEGER;
END_ENTITY;

ENTITY Real_representation_item
  SUBTYPE OF (Representation_item);
  the_value : REAL;
END_ENTITY;

ENTITY Sequence_representation_item
  SUBTYPE OF (Compound_representation_item);
  the_value : LIST[0:?] OF Representation_item;
END_ENTITY;

ENTITY Set_representation_item
  SUBTYPE OF (Compound_representation_item);
  the_value : SET[0:?] OF Representation_item;
END_ENTITY;

SUBTYPE_CONSTRAINT representation_item_subtypes FOR Representation_item;
  ONEOF (Boolean_representation_item,
         Compound_representation_item,
         Date_time_representation_item,
         Integer_representation_item,
         Logical_representation_item,
         Rational_representation_item,
         Real_representation_item);
END_SUBTYPE_CONSTRAINT;

END_SCHEMA;  -- Basic_data_representation_arm


© ISO 2014 — All rights reserved