Skip to content

SecondaryProcess

Bases: Feature

Represents a manufacturing process with its type, category, and source.

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

label

A short description of the feature in a human-readable format.

TYPE: str

confidence

Confidence in the feature extraction or interpretation.

TYPE: Confidence | None

process_category

The category of the process based on DIN 8580, e.g., forming or coating.

TYPE: List[str]

Source code in werk24/models/v2/models.py
class SecondaryProcess(Feature):
    """
    Represents a manufacturing process with its type, category, and source.
    """

    process_category: List[str] = Field(
        ...,
        description="The category of the process based on DIN 8580, e.g., forming or coating.",
        examples=[["SEPARATION", "CUTTING", "WATERJET_CUTTING"]],
    )