Ballerina · Schema

ConnectorSearchResponse

ConnectorSearchResponse schema from Ballerina Central API

IntegrationOrchestrationsOpen-SourceProgramming Language

Properties

Name Type Description
connectors array
count integer
offset integer
limit integer
View JSON Schema on GitHub

JSON Schema

central-api-connector-search-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ballerina/refs/heads/main/json-schema/central-api-connector-search-response-schema.json",
  "title": "ConnectorSearchResponse",
  "description": "ConnectorSearchResponse schema from Ballerina Central API",
  "type": "object",
  "properties": {
    "connectors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ConnectorSummary"
      }
    },
    "count": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    }
  }
}