1 2 3 4 5 6 7 8 9 10 11 12 13 14
use axum::extract::Json; use serde_json::{json, Value}; pub async fn pronoun_set() -> Json<Value> { Json(json!({ "@type": "PronounSet", "nominative": "string", "accusative": "string", "possessiveDeterminer": "string", "possessive": "string", "reflexive": "string", "singular": "boolean", })) }