proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.lexicon.resolveLexicon

use serde::{Deserialize, Serialize};

/// Resolves an atproto lexicon (NSID) to a schema.
/// XRPC Query: com.atproto.lexicon.resolveLexicon
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Params {
    pub nsid: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
    pub cid: String,
    pub schema: crate::com::atproto::lexicon::schema::Main,
    pub uri: String,
}