{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://aiosforge.dev/schemas/smoke.schema.json",
  "title": "AIOSON test:smoke --json output",
  "type": "object",
  "required": ["ok", "language", "targetDir", "web3Target", "profile", "steps", "stepCount", "workspaceRoot", "projectDir", "kept"],
  "properties": {
    "ok": { "type": "boolean", "const": true },
    "language": { "type": "string" },
    "targetDir": { "type": "string" },
    "web3Target": { "type": ["string", "null"] },
    "profile": { "type": "string", "enum": ["standard", "mixed", "parallel"] },
    "steps": {
      "type": "array",
      "items": { "type": "string" }
    },
    "stepCount": { "type": "integer", "minimum": 0 },
    "workspaceRoot": { "type": "string" },
    "projectDir": { "type": "string" },
    "kept": { "type": "boolean" }
  },
  "additionalProperties": true
}
