{ "schema": "paperclip.question_adapter_fixture.v1", "adapter": "opencode", "nativeRequest": { "type": "question.asked", "properties": { "id": "request-1", "sessionID": "session-1", "title": "Deployment input", "questions": [{ "question": "Where should we deploy?", "header": "Environment", "required": true, "options": [ { "label": "Staging", "description": "Deploy to staging first." }, { "label": "Production", "description": "Deploy directly to production." } ], "multiple": false }] } }, "canonicalQuestionSet": { "schema": "paperclip.question_set.v1", "title": "Deployment input", "submitLabel": "Submit answers", "questions": [{ "id": "environment", "header": "Environment", "prompt": "Where should we deploy?", "required": true, "answerMode": "single_select", "options": [ { "id": "option-1", "label": "Staging", "description": "Deploy to staging first." }, { "id": "option-2", "label": "Production", "description": "Deploy directly to production." } ] }] }, "canonicalResponse": { "schema": "paperclip.question_response.v1", "answers": { "environment": { "selectedOptionIds": ["option-1"] } } }, "nativeResponse": { "answers": [["Staging"]] } }