{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StaleValueWarning",
  "type": "object",
  "required": ["warningId", "workspaceRoot", "lastRuntimeCommandAt", "daysSinceLastUse", "recommendation"],
  "properties": {
    "warningId": { "type": "string" },
    "workspaceRoot": { "type": "string" },
    "lastRuntimeCommandAt": { "type": "string", "format": "date-time" },
    "daysSinceLastUse": { "type": "integer", "minimum": 0 },
    "recommendation": { "type": "string" }
  }
}
