ISPO SDK
    Preparing search index...

    Type Alias ObjectSchemaValue<S, P, Known>

    Markdown
    ObjectSchemaValue: S extends { additionalProperties: false }
        ? keyof P extends never ? Record<string, never> : Known
        : S extends { additionalProperties: infer A extends JsonSchema }
            ? Simplify<
                Known & Record<string, JsonSchemaValue<A> | KnownPropertyValue<P>>,
            >
            : Simplify<
                Known & Record<
                    string,
                    ProjectCommandJsonValue
                    | KnownPropertyValue<P>,
                >,
            >

    Type Parameters