(schema: JSONSchema)
| 159 | * @internal |
| 160 | */ |
| 161 | export function toOpenAPISchema(schema: JSONSchema): OpenAPI.SchemaObject & object { |
| 162 | return schema === true |
| 163 | ? {} |
| 164 | : schema === false |
| 165 | ? { not: {} } |
| 166 | : schema as OpenAPI.SchemaObject |
| 167 | } |
| 168 | |
| 169 | const OPENAPI_JSON_SCHEMA_REF_PREFIX = /* @__PURE__ */ '#/components/schemas/' |
| 170 |
no outgoing calls
no test coverage detected