Barndoor · JSON Structure

Barndoor Server Create Request Structure

Type: object Properties: 6 Required: 2
AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

ServerCreateRequest is a JSON Structure definition published by Barndoor, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

name mcp_server_directory_id slug client_id client_secret meta

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "ServerCreateRequest",
  "type": "object",
  "required": [
    "name",
    "mcp_server_directory_id"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "mcp_server_directory_id": {
      "type": "string"
    },
    "slug": {
      "type": "string",
      "pattern": "^[a-z0-9-]+$"
    },
    "client_id": {
      "type": "string"
    },
    "client_secret": {
      "type": "string"
    },
    "meta": {
      "type": "object",
      "additionalProperties": true
    }
  }
}