Agent Diff · Schema

DiffList

DiffList schema from Agent Diff API

API TestingAI AgentsSandboxingAPI DiffingDeveloper Tools

Properties

Name Type Description
diffs array
total integer Total number of diffs.
View JSON Schema on GitHub

JSON Schema

sandbox-diff-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agent-diff/refs/heads/main/json-schema/sandbox-diff-list-schema.json",
  "title": "DiffList",
  "description": "DiffList schema from Agent Diff API",
  "type": "object",
  "properties": {
    "diffs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DiffEntry"
      },
      "example": [
        "example_value"
      ]
    },
    "total": {
      "type": "integer",
      "description": "Total number of diffs.",
      "example": 1
    }
  }
}