{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.example.com/schemas/update-acceptance-criterion-request.json", "title": "UpdateAcceptanceCriterionRequest", "type": "object", "description": "Request body for updating an acceptance criterion", "properties": { "description": { "type": "string", "description": "Updated description" }, "given": { "type": "string", "description": "Updated Given clause" }, "when": { "type": "string", "description": "Updated When clause" }, "then": { "type": "string", "description": "Updated Then clause" }, "status": { "type": "string", "description": "Updated verification status", "enum": [ "not-verified", "passing", "failing" ] }, "order": { "type": "integer", "description": "Updated display order" } } }