Variable adminIpBlockSchemaConst
adminIpBlockSchema: ObjectSchema<
{
comment: SchemaWithFallback<StringSchema<undefined>, "">;
created_at: SchemaWithPipe<
readonly [StringSchema<undefined>, RegexAction<string, undefined>],
>;
expires_at: SchemaWithFallback<
NullableSchema<
SchemaWithPipe<
readonly [StringSchema<undefined>, RegexAction<string, undefined>],
>,
undefined,
>,
null,
>;
id: StringSchema<undefined>;
ip: SchemaWithPipe<
readonly [StringSchema<undefined>, IpAction<string, undefined>],
>;
severity: PicklistSchema<
["sign_up_requires_approval", "sign_up_block", "no_access"],
undefined,
>;
},
undefined,
> = ...
See
https://docs.joinmastodon.org/entities/Admin_IpBlock/