Application module: Product class ISO/TS 10303-1103:2019(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 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 definitions
     5.2.3 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/TC 184/SC 4/WG 12 N10403 - ISO/TS 10303-1103 Product class - EXPRESS ARM
Supersedes ISO/TC 184/SC 4/WG 12 N9577
*)



SCHEMA Product_class_arm;

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

USE FROM Group_arm;    -- ISO/TS 10303-1113

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

USE FROM Product_concept_identification_arm;    -- ISO/TS 10303-1060

USE FROM Property_assignment_arm;    -- ISO/TS 10303-1030


TYPE expression_operator = ENUMERATION OF
   (or_operator,
    and_operator,
    oneof_operator,
    not_operator);
END_TYPE;

TYPE id_for_class = SELECT BASED_ON identification_item WITH
   (Product_class);
END_TYPE;

TYPE pc_classification_item = SELECT BASED_ON classification_item WITH
   (Specification,
    Specification_category);
END_TYPE;

TYPE pc_property_assignment_select = SELECT BASED_ON property_assignment_select WITH
   (Specification,
    Specification_category);
END_TYPE;

TYPE specification_operand_select = SELECT
   (Specification_expression,
    Specification);
END_TYPE;

ENTITY Class_category_association;
  associated_product_class : Product_class;
  mandatory : BOOLEAN;
  associated_category : Specification_category;
END_ENTITY;

ENTITY Class_condition_association;
  condition_type : STRING;
  associated_product_class : Product_class;
  description : OPTIONAL STRING;
  associated_condition : Specification_expression;
END_ENTITY;

ENTITY Class_inclusion_association;
  associated_product_class : Product_class;
  description : OPTIONAL STRING;
  associated_inclusion : Specification_inclusion;
END_ENTITY;

ENTITY Class_specification_association;
  associated_product_class : Product_class;
  association_type : STRING;
  associated_specification : Specification;
END_ENTITY;

ENTITY Product_class
  SUBTYPE OF (Product_concept);
  version_id : OPTIONAL STRING;
  level_type : OPTIONAL STRING;
WHERE
  WR1: NOT EXISTS(SELF\Product_concept.target_market);
END_ENTITY;

ENTITY Product_class_relationship;
  description : OPTIONAL STRING;
  relating : Product_class;
  related : Product_class;
  relation_type : STRING;
END_ENTITY;

ENTITY Specification;
  id : STRING;
  version_id : OPTIONAL STRING;
  name : OPTIONAL STRING;
  description : OPTIONAL STRING;
  category : Specification_category;
  package : BOOLEAN;
END_ENTITY;

ENTITY Specification_category;
  id : STRING;
  description : STRING;
  implicit_exclusive_condition : BOOLEAN;
END_ENTITY;

ENTITY Specification_category_hierarchy;
  sub_category : Specification_category;
  super_category : Specification_category;
END_ENTITY;

ENTITY Specification_expression;
  id : OPTIONAL STRING;
  description : OPTIONAL STRING;
  operation : expression_operator;
  operand : SET[1:?] OF specification_operand_select;
WHERE
  WR1: (operation <> not_operator) OR (SIZEOF(operand) = 1);
END_ENTITY;

ENTITY Specification_inclusion;
  id : OPTIONAL STRING;
  description : OPTIONAL STRING;
  if_condition : specification_operand_select;
  included_specification : specification_operand_select;
END_ENTITY;

END_SCHEMA;  -- Product_class_arm


© ISO 2019 — All rights reserved