OBJECT
Product
An end product (can also be a material) or a product used to produce another product. It includes information about its supply chain and references its product passport.
link GraphQL Schema definition
- type Product {
- # 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.
- String! :
- # Language code of the label following xml:lang
- # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt)
- String! :
- # Description of the product
- String :
- # Language code of the description following xml:lang
- # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt)
- String :
- # A list of sub products the product consists of
- ProductApplication] : [
- # Arbitrary properties of the product
- Property] : [
- # Product class the product belongs to
- ProductClass] : [
- # References to semantics describing the product
- SemanticReference] : [
- # Factories offering the product. Directly assigned or via a process outputting
- # the product and provided by a
- # production resource of the respective factory
- Factory] : [
- # Subsidiary companies offering the product. Assigned directly, via factory or
- # process.
- Enterprise] : [
- # All supply chains associated with this product
- SupplyChain] : [
- # product passport following
- # https://environment.ec.europa.eu/publications/proposal-ecodesign-sustainable-products-regulation_en
- ProductPassport :
- }
link Require by
- EnterpriseAn enterprise or company which is a supplier in a supply chain, provider of production capabilities, etc.
- FactoryA factory which is part of an enterprise and contains production resources.
- ProductApplicationA container for product usage metadata, like quantity. This is important to model input and output products of processes.
- ProductClassA product type or class which describes the cathegory of a product.
- ProductResponse
- Query