### 2. Schema Enforcement
Provide a JSON Schema for validation:
```markdown
## Output Schema
Your response must conform to this JSON Schema:
```json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["status", "data"],
"properties": {
"status": {
"type": "string",
"enum": ["success", "error", "partial"]
},
"data": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "value"],
"properties": {
"id": {"type": "string"},
"value": {"type": "number"}
}
}
},
"error": {
"type": "string"
}
}
}