# CreateJsonWebKeySet

Create JSON Web Key Set Request Body

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**alg** | **string** | JSON Web Key Algorithm  The algorithm to be used for creating the key. Supports &#x60;RS256&#x60;, &#x60;ES256&#x60;, &#x60;ES512&#x60;, &#x60;HS512&#x60;, and &#x60;HS256&#x60;. | [default to undefined]
**kid** | **string** | JSON Web Key ID  The Key ID of the key to be created. | [default to undefined]
**use** | **string** | JSON Web Key Use  The \&quot;use\&quot; (public key use) parameter identifies the intended use of the public key. The \&quot;use\&quot; parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Valid values are \&quot;enc\&quot; and \&quot;sig\&quot;. | [default to undefined]

## Example

```typescript
import { CreateJsonWebKeySet } from '@ory/hydra-client';

const instance: CreateJsonWebKeySet = {
    alg,
    kid,
    use,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
