{ "$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" ] } } }