Barndoor · Schema

ServerCreateResponse

AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

Properties

Name Type Description
id string ID of the newly created server
connection_id string Connection ID if a connection was created
auth_url string OAuth authorization URL if authentication is required
View JSON Schema on GitHub

JSON Schema

barndoor-server-create-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ServerCreateResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "ID of the newly created server"
    },
    "connection_id": {
      "type": "string",
      "nullable": true,
      "description": "Connection ID if a connection was created"
    },
    "auth_url": {
      "type": "string",
      "nullable": true,
      "description": "OAuth authorization URL if authentication is required"
    }
  }
}