{
  "openapi": "3.1.0",
  "info": { "title": "The Secret Life of Pet Sitters Story Inbox", "description": "Privately send pet-sitting walk notes to Jackie and Jack's story inbox.", "version": "1.0.0" },
  "servers": [{ "url": "https://thesecretlifeofpetsitters.com" }],
  "paths": {
    "/api/voice-notes": {
      "post": {
        "operationId": "sendWalkNote",
        "summary": "Send a reviewed pet-sitting field note to the private story inbox",
        "description": "Only call after reading the note back and receiving explicit permission to send it.",
        "security": [{ "bearerAuth": [] }],
        "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "title": { "type": "string" }, "transcript": { "type": "string" }, "mood": { "type": "string", "enum": ["The Good, the Bad & the Hairy", "Cupboard Confidential", "Red Flags & Wet Noses", "Between Feeds", "Creature Feature"] }, "source": { "type": "string", "const": "chatgpt-voice" } }, "required": ["title", "transcript", "mood", "source"] } } } },
        "responses": { "201": { "description": "The field note was saved as a draft" }, "401": { "description": "The studio key is invalid" } }
      }
    }
  },
  "components": { "securitySchemes": { "bearerAuth": { "type": "http", "scheme": "bearer" } } }
}
