https://github.com/wrtnlabs/schema
Extended JSON and LLM function calling schemas of Wrtn Technologies, especially for the Studio Pro
https://github.com/wrtnlabs/schema
Last synced: 6 months ago
JSON representation
Extended JSON and LLM function calling schemas of Wrtn Technologies, especially for the Studio Pro
- Host: GitHub
- URL: https://github.com/wrtnlabs/schema
- Owner: wrtnlabs
- License: mit
- Created: 2024-09-20T04:26:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-04T03:54:59.000Z (7 months ago)
- Last Synced: 2025-03-29T12:51:22.341Z (6 months ago)
- Language: TypeScript
- Size: 123 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `@wrtnlabs/schema`
[](https://github.com/wrtnlabs/schema/blob/master/LICENSE)
[](https://www.npmjs.com/package/@wrtnlabs/schema)
[](https://www.npmjs.com/package/@wrtnlabs/schema)
[](https://github.com/wrtnlabs/schema/actions?query=workflow%3Abuild)Extension of [`@samchon/openapi`](https://github.com/samchon/openapi) adding plugin properties.
You can see the plugin properties in the [`src/index.ts`](https://github.com/wrtnlabs/schema/blob/main/src/index.ts) file.
```typescript
import { OpenApi.IJsonSchema } from "@samchon/openapi";
import "@wrtnlabs/schema";const schema: OpenApi.IJsonSchema = {
type: "string",
format: "email",
"x-wrtn-placeholder": "Insert your email address please",
};
```