1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
extern crate proc_macro;
use TokenStream;
use quote;
use ;
/// Derive macro to generate LLM-ready JSON schema from any struct
/// Works with serde::Serialize and schemars::JsonSchema
///
/// # Example
/// ```ignore
/// use schemars::JsonSchema;
/// use roam_schema::LlmSchema;
/// use serde::{Deserialize, Serialize};
///
/// #[derive(Serialize, Deserialize, JsonSchema, LlmSchema)]
/// pub struct Organization {
/// pub id: String,
/// pub name: String,
/// }
///
/// let schema = Organization::llm_schema();
/// ```