APIGit · Schema

MockServer

An APIGit dynamic mock server instance.

API DesignAPI LifecycleDocumentationGitGovernanceMockingPlatformTesting

Properties

Name Type Description
id string
repoId string
url string
status string
View JSON Schema on GitHub

JSON Schema

apigit-mock-server-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-mock-server-schema.json",
  "title": "MockServer",
  "description": "An APIGit dynamic mock server instance.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "mock-001"
    },
    "repoId": {
      "type": "string",
      "example": "repo-001"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "status": {
      "type": "string",
      "enum": [
        "running",
        "stopped"
      ]
    }
  }
}