APIGit · Schema

Repository

An APIGit API repository.

API DesignAPI LifecycleDocumentationGitGovernanceMockingPlatformTesting

Properties

Name Type Description
id string
name string
description string
visibility string
View JSON Schema on GitHub

JSON Schema

apigit-repository-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apigit/refs/heads/main/json-schema/apigit-repository-schema.json",
  "title": "Repository",
  "description": "An APIGit API repository.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "repo-001"
    },
    "name": {
      "type": "string",
      "example": "my-api"
    },
    "description": {
      "type": "string"
    },
    "visibility": {
      "type": "string",
      "enum": [
        "public",
        "private"
      ]
    }
  }
}