OBJECT
ProductClass
A product type or class which describes the cathegory of a product.
link GraphQL Schema definition
- type ProductClass {
- # Unique knowledge base identifier (automatically generated).
- ID! :
- # Arbitrary id defined by the user, e.g. to identify the object in an application.
- ID :
- # Label, e.g. name, of the product class/type.
- String :
- # Language code of the label following xml:lang
- # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
- String :
- # Description of the product class/type.
- String :
- # Language code of the description following xml:lang
- # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
- String :
- # References to semantics describing the product class.
- SemanticReference] : [
- # Parent product classes/types, resp. parent product categories.
- ProductClass] : [
- # Child product classes/types, resp. child product categories.
- ProductClass] : [
- # Products within the product class.
- Product] : [
- }