Skip to content

Documentation / @agentick/core / StandardJSONSchemaV1Props

Interface: StandardJSONSchemaV1Props

Defined in: kernel/src/schema.ts:31

Standard JSON Schema V1 interface (subset for conversion).

See

https://standardschema.dev/json-schema

Extends

Properties

jsonSchema

readonly jsonSchema: object

Defined in: kernel/src/schema.ts:32

input()

readonly input: (options) => Record<string, unknown>

Parameters
options
target

string

Returns

Record<string, unknown>

output()?

readonly optional output: (options) => Record<string, unknown>

Parameters
options
target

string

Returns

Record<string, unknown>


validate()?

readonly optional validate: (value) => unknown

Defined in: kernel/src/schema.ts:24

Parameters

value

unknown

Returns

unknown

Inherited from

StandardSchemaV1Props.validate


vendor

readonly vendor: string

Defined in: kernel/src/schema.ts:23

Inherited from

StandardSchemaV1Props.vendor


version

readonly version: 1

Defined in: kernel/src/schema.ts:22

Inherited from

StandardSchemaV1Props.version

Released under the ISC License.