1Factory · JSON Structure

1Factory Assembly Entry Structure

AssemblyEntry schema from 1Factory API

Type: object Properties: 3 Required: 3
AnalyticsData CollectionManufacturingMonitoringQuality

AssemblyEntry is a JSON Structure definition published by 1Factory, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

part_number rev quantity

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/1factory/refs/heads/main/json-structure/1factory-assembly-entry-structure.json",
  "name": "AssemblyEntry",
  "description": "AssemblyEntry schema from 1Factory API",
  "type": "object",
  "properties": {
    "part_number": {
      "$ref": "#/components/schemas/part_number"
    },
    "rev": {
      "$ref": "#/components/schemas/rev"
    },
    "quantity": {
      "type": "double",
      "nullable": false,
      "minimum": 0,
      "description": "Number of instances of this part in the assembly.",
      "example": 4.0
    }
  },
  "required": [
    "part_number",
    "rev",
    "quantity"
  ]
}