Strands Agents Typescript SDK
    Preparing search index...

    Type Alias JSONSchema

    JSONSchema: JSONSchema7

    Represents a JSON Schema definition. Used for defining the structure of tool inputs and outputs.

    This is based on JSON Schema Draft 7 specification.

    const schema: JSONSchema = {
    type: 'object',
    properties: {
    name: { type: 'string' },
    age: { type: 'number' }
    },
    required: ['name']
    }