new client setup

{}
{
    "registration": {
        "response_types": [
            "id_token"
        ],
        "grant_types": [
            "implicit"
        ],
        "token_endpoint_auth_method": "none"
    }
}
{
    "registration": {
        "grant_types": [
            "authorization_code",
            "implicit"
        ],
        "response_types": [
            "code id_token"
        ]
    }
}
{
    "registration": {
        "grant_types": [
            "authorization_code",
            "refresh_token"
        ]
    },
    "authorization_params": {
        "scope": "openid profile email offline_access",
        "prompt": "consent"
    }
}
{
    "registration": {
        "require_pushed_authorization_requests": true
    }
}
{
    "registration": {
        "require_signed_request_object": true,
        "request_object_signing_alg": "EdDSA"
    },
    "keystore": [
        [
            "OKP",
            "Ed25519"
        ]
    ]
}
{
    "registration": {
        "token_endpoint_auth_method": "private_key_jwt"
    },
    "keystore": [
        [
            "OKP",
            "Ed25519"
        ]
    ]
}
{
    "registration": {
        "token_endpoint_auth_method": "client_secret_jwt"
    }
}
{
    "registration": {
        "userinfo_signed_response_alg": "EdDSA",
        "id_token_signed_response_alg": "EdDSA"
    },
    "authorization_params": {
        "response_mode": "jwt"
    }
}