Ballerina · Schema

Organization

Organization schema from Ballerina Central API

IntegrationOrchestrationsOpen-SourceProgramming Language

Properties

Name Type Description
name string
description string
website string
packageCount integer
View JSON Schema on GitHub

JSON Schema

central-api-organization-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-organization-schema.json",
  "title": "Organization",
  "description": "Organization schema from Ballerina Central API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "website": {
      "type": "string",
      "format": "uri"
    },
    "packageCount": {
      "type": "integer"
    }
  }
}