Sanity Library Reference Docs
    Preparing search index...

    Interface SchemaObjectField<T>

    interface SchemaObjectField<T extends SchemaNode = SchemaNode> {
        name: string;
        optional?: boolean;
        title?: string;
        type: "objectField";
        value: T;
    }

    Type Parameters

    Index

    Properties

    name: string
    optional?: boolean
    title?: string
    type: "objectField"
    value: T