Barndoor · Schema

AgentResponse

AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

Properties

Name Type Description
id string
created_at string
updated_at string
organization_id string
application_directory_id string
application_directory object
agent_type string Agent type classification for applications.
View JSON Schema on GitHub

JSON Schema

barndoor-agent-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AgentResponse",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "title": "Id"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "title": "Created At"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "title": "Updated At"
    },
    "organization_id": {
      "type": "string",
      "format": "uuid",
      "title": "Organization Id"
    },
    "application_directory_id": {
      "type": "string",
      "format": "uuid",
      "title": "Agent Directory Id"
    },
    "application_directory": {
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid",
          "title": "Id"
        },
        "created_at": {
          "type": "string",
          "format": "date-time",
          "title": "Created At"
        },
        "updated_at": {
          "type": "string",
          "format": "date-time",
          "title": "Updated At"
        },
        "name": {
          "type": "string",
          "title": "Name"
        },
        "description": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "title": "Description"
        },
        "organization_id": {
          "type": "string",
          "format": "uuid",
          "title": "Organization Id"
        },
        "external_id": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "title": "External Id"
        },
        "public": {
          "type": "boolean",
          "title": "Public"
        },
        "dcr": {
          "type": "boolean",
          "title": "Dcr"
        },
        "post_login_success": {
          "type": "boolean",
          "title": "Post Login Success"
        },
        "callbacks": {
          "anyOf": [
            {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            {
              "type": "null"
            }
          ],
          "title": "Callbacks",
          "description": "OAuth callback URLs stored in alphanumeric ascending order"
        }
      },
      "type": "object",
      "required": [
        "id",
        "created_at",
        "updated_at",
        "name",
        "description",
        "organization_id",
        "external_id",
        "public",
        "dcr",
        "post_login_success",
        "callbacks"
      ],
      "title": "AgentDirectoryBase"
    },
    "agent_type": {
      "type": "string",
      "enum": [
        "internal",
        "external"
      ],
      "title": "AgentType",
      "description": "Agent type classification for applications."
    }
  },
  "type": "object",
  "required": [
    "id",
    "created_at",
    "updated_at",
    "organization_id",
    "application_directory_id",
    "application_directory",
    "agent_type"
  ]
}