Action
Home > @backstage/plugin-scaffolder-react
> Action
The response shape for a single action in the listActions
call to the scaffolder-backend
Signature:
export type Action = {
id: string;
description?: string;
schema?: {
input?: JSONSchema7;
output?: JSONSchema7;
};
examples?: ActionExample[];
};
References: ActionExample