INTERFACE
ProductionResource
Abstract production resource definition. It is specialized by Machine and HumanResource.
link GraphQL Schema definition
- interface ProductionResource {
- # 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 production resource.
- String! :
- # Language code of the label following xml:lang
- # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
- String! :
- # Description of the production resource.
- String :
- # Language code of the description following xml:lang
- # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
- String :
- # Processes added as realization of a capability the production resource provides.
- Process] : [
- # Processes using the production resource.
- Process] : [
- # Capabilities the production resource provides.
- Capability] : [
- }
link Require by
- CapabilityA production capability. The capabilities are ordered hierarchically. It is imporant to provide semantic references or at least descriptions of the capability. Otherwise it might not be found by the search engine.
- EnterpriseAn enterprise or company which is a supplier in a supply chain, provider of production capabilities, etc.
- HumanResourceAn anonymous human resource as production resource to represent certain expertise and certification. Please do not add personal information!
- MachineA machine of a factory as a production resource which should be linked to processes and capabilities.
- ProcessA process description which schould be linked to capabilities, input/output products and production resources. Input/output products do not have to be added if they are added to the sub processes and the sub processes are ordered via their input/output products.