@akamai/openapi-ts
    Preparing search index...

    Variable postPersonalAccessTokenResponseSchemaConst

    postPersonalAccessTokenResponseSchema: ZodObject<
        {
            created: ZodReadonly<ZodISODateTime>;
            expiry: ZodReadonly<ZodISODateTime>;
            id: ZodReadonly<ZodInt>;
            label: ZodString;
            scopes: ZodReadonly<ZodString>;
            token: ZodReadonly<ZodString>;
        },
        $strip,
    > = ...

    A Personal Access Token is a token generated manually to access the API without going through an OAuth login. Personal Access Tokens can have scopes just like OAuth tokens do, and are commonly used to give access to command-line tools like the Linode CLI, or when writing your own integrations.