Application module: External properties ISO/TS 10303-1129:2018-11(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 definition
   4.3 ARM entity definitions
   4.4 ARM subtype constraint definition
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM type definition
     5.2.2 MIM entity definition
     5.2.3 MIM function definition
     5.2.4 MIM rule 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

(*
ISO TC184/SC4/WG12 N8014 - ISO/TS 10303-1129 External properties - EXPRESS ARM
Supersedes ISO TC184/SC4/WG12 N7439
*)



SCHEMA External_properties_arm;

USE FROM External_library_arm;    -- ISO/TS 10303-1778

USE FROM Identification_assignment_arm;    -- ISO/TS 10303-1021

USE FROM Independent_property_arm;    -- ISO/TS 10303-1036

USE FROM Plib_class_reference_arm;    -- ISO/TS 10303-1291


TYPE external_property_select = SELECT
   (Plib_property_reference,
    External_library_property);
END_TYPE;

ENTITY External_library_property
  SUBTYPE OF (Independent_property);
  external_id : STRING;
  source : External_source;
DERIVE
  library_type : STRING := source.id;
END_ENTITY;

ENTITY Plib_property_reference
  SUBTYPE OF (Independent_property);
  code : STRING;
  version : STRING;
  name_scope : Plib_class_reference;
END_ENTITY;

SUBTYPE_CONSTRAINT plib_or_external FOR Independent_property;
  ONEOF (Plib_property_reference,
         External_library_property);
END_SUBTYPE_CONSTRAINT;

END_SCHEMA;  -- External_properties_arm


© ISO 2018 — All rights reserved