© 2026 Hedgehog Software, LLC
{success: true, projectId: string} | {success: false}
const CreateTeamsSolutionResponseDataSchema = Schema.Union( Schema.Struct({ success: Schema.Literal(true), projectId: Schema.String, }), Schema.Struct({ success: Schema.Literal(false), }), );
Schema.Schema.Type<typeof CreateTeamsSolutionRequestDataSchema>