Skip to main content
Version: Next

TemplateParameterSchema

Home > @backstage/plugin-scaffolder-react > TemplateParameterSchema

The shape of each entry of parameters which gets rendered as a separate step in the wizard input

Signature:

export type TemplateParameterSchema = {
title: string;
description?: string;
presentation?: TemplatePresentationV1beta3;
steps: Array<{
title: string;
description?: string;
schema: JsonObject;
}>;
EXPERIMENTAL_formDecorators?: {
id: string;
input?: JsonObject;
}[];
};

References: TemplatePresentationV1beta3, JsonObject