APIGit · JSON Structure

Apigit Repository Structure

An APIGit API repository.

Type: object Properties: 4
API DesignAPI LifecycleDocumentationGitGovernanceMockingPlatformTesting

Repository is a JSON Structure definition published by APIGit, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name description visibility

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apigit/refs/heads/main/json-structure/apigit-repository-structure.json",
  "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"
      ]
    }
  },
  "name": "Repository"
}