Variable $StripeConnectAccountDetailsConst
$StripeConnectAccountDetails: {
properties: {
address: {
$ref: "#/components/schemas/StripeAddress";
};
businessType: {
enum: readonly ["company", "government_entity", "individual", "non_profit"];
type: "string";
};
currency: {
description: "Currency";
example: "eur";
pattern: "^[a-z]{3}$";
type: "string";
};
email: {
example: "john@doe.com";
format: "email";
type: "string";
};
name: {
example: "Cometh Studio";
nullable: false;
type: "string";
};
region: {
$ref: "#/components/schemas/ProjectRegion";
};
};
required: readonly ["name", "businessType", "email", "address", "currency", "region"];
type: "object";
} = ...