Acadia · Schema

WorkInstructionStep

A single step within a work instruction

Connected WorkerKnowledge ManagementManufacturingSkills ManagementTrainingWorkforce Development

Properties

Name Type Description
order integer Step sequence number
title string Step title
description string Detailed description of the step
View JSON Schema on GitHub

JSON Schema

acadia-work-instruction-step-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acadia/refs/heads/main/json-schema/acadia-work-instruction-step-schema.json",
  "title": "WorkInstructionStep",
  "description": "A single step within a work instruction",
  "type": "object",
  "properties": {
    "order": {
      "type": "integer",
      "description": "Step sequence number",
      "example": 1
    },
    "title": {
      "type": "string",
      "description": "Step title",
      "example": "Inspect Machine"
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the step",
      "example": "Visually inspect the machine for defects or hazards"
    }
  }
}