{
  "openapi": "3.1.0",
  "info": {
    "title": "VCTRA Resolution Core",
    "version": "v1",
    "description": "Public-safe contract. Protected operations require scoped credentials and tenant scope is resolved server-side."
  },
  "servers": [
    {
      "url": "https://resolve.vctra.no"
    }
  ],
  "paths": {
    "/v1/resolve": {
      "post": {
        "summary": "Resolve a structured demand against public-safe, evidence-aware candidates",
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Resolution with candidates and limitations"
          },
          "401": {
            "description": "Missing or invalid credential"
          }
        }
      }
    },
    "/v1/resolve/schema": {
      "get": {
        "summary": "Resolution request and response schema",
        "responses": {
          "200": {
            "description": "Schema"
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer"
      }
    }
  },
  "x-vctra-governance": {
    "tenantScope": "server_resolved",
    "sourceFreshness": "returned where supported by the underlying object",
    "outcomeSemantics": "outcomes are governed observations, not automatic truth",
    "secretExamplesIncluded": false
  }
}