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: ID!
  • # Arbitrary id defined by the user, e.g. to identify the object in an application.
  • sourceId: ID
  • # Label, e.g. name, of the production resource.
  • label: String!
  • # Language code of the label following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • labelLanguageCode: String!
  • # Description of the production resource.
  • description: String
  • # Language code of the description following xml:lang
  • # (https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
  • descriptionLanguageCode: String
  • # Processes added as realization of a capability the production resource provides.
  • providedProcesses: [Process]
  • # Processes using the production resource.
  • usingProcesses: [Process]
  • # Capabilities the production resource provides.
  • providedCapabilities: [Capability]
  • }