objectiveai_cli_sdk/output/notification/jq.rs
1use serde::{Deserialize, Serialize};
2
3/// Result of a user-supplied jq filter applied to a config getter.
4/// `jq` is the one explicit escape hatch for untyped JSON: the filter
5/// can produce literally any shape, so the body is `serde_json::Value`.
6/// Wire: `{"type":"notification","jq":<value>}`.
7#[derive(Serialize, Deserialize, Debug, Clone)]
8pub struct JqResults {
9 pub jq: serde_json::Value,
10}