aboutsummaryrefslogtreecommitdiff
path: root/src/handlers/json_ld.rs
blob: 07148dc902785417d611923d81a91e3ff0677ace (plain)
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",
    }))
}