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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
use serde_json::json;
/// Create a minimal OpenAPI spec for testing
pub fn create_test_spec(schemas: serde_json::Value) -> serde_json::Value {
json!({
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"components": {
"schemas": schemas
}
})
}
/// Create a schema with anyOf content field (like InputMessage)
pub fn create_content_union_schema() -> serde_json::Value {
json!({
"TestMessage": {
"type": "object",
"properties": {
"role": {
"type": "string"
},
"content": {
"anyOf": [
{"type": "string"},
{
"type": "array",
"items": {"$ref": "#/components/schemas/ContentBlock"}
}
]
}
}
},
"ContentBlock": {
"type": "object",
"properties": {
"type": {"type": "string"},
"text": {"type": "string"}
}
}
})
}
/// Create a schema with property names containing underscores
pub fn create_underscore_property_schema() -> serde_json::Value {
json!({
"ConfigSchema": {
"type": "object",
"properties": {
"allowed_tools": {
"anyOf": [
{"type": "null"},
{
"type": "array",
"items": {"type": "string"}
}
]
},
"cache_control": {
"anyOf": [
{"type": "null"},
{"$ref": "#/components/schemas/CacheControl"}
]
}
}
},
"CacheControl": {
"type": "object",
"properties": {
"type": {"type": "string"}
}
}
})
}
/// Create a schema with nested underscore names (like BetaListResponse_MessageBatch)
pub fn create_nested_underscore_schema() -> serde_json::Value {
json!({
"BetaListResponse_MessageBatch": {
"type": "object",
"properties": {
"last_id": {
"anyOf": [
{"type": "null"},
{"type": "string"}
]
},
"first_id": {
"anyOf": [
{"type": "null"},
{"type": "string"}
]
}
}
}
})
}
/// Create a schema with duplicate enum variants
pub fn create_duplicate_variant_schema() -> serde_json::Value {
json!({
"ContentUnion": {
"oneOf": [
{
"type": "object",
"properties": {
"type": {"const": "text"}
}
},
{
"type": "object",
"properties": {
"type": {"const": "text"} // Duplicate!
}
}
],
"discriminator": {
"propertyName": "type"
}
}
})
}