{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/1factory/refs/heads/main/json-schema/1factory-assembly-schema.json", "title": "Assembly", "description": "Assembly schema from 1Factory API", "type": "object", "properties": { "part_number": { "$ref": "#/components/schemas/part_number" }, "rev": { "$ref": "#/components/schemas/rev" }, "sub_parts": { "$ref": "#/components/schemas/SubPartList" } }, "required": [ "part_number", "rev" ] }