## Example
The following JSON is an example for this standardized configuration component:
```json
{ "PersistentKeyStorageDirectory": "/mnt/my-app/keys"
, "AwsSsmApplicationName": "/my-app"
}
```
## Definition
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://invantive.com/schemas/defs/KeyStorageConfig.schema.json",
"title": "KeyStorageConfig",
"type": "object",
"additionalProperties": false,
"properties": {
"PersistentKeyStorageDirectory": {
"type": ["string", "null"],
"description": "Persistent key storage directory."
},
"AwsSsmApplicationName": {
"type": ["string", "null"],
"description": "AWS SSM application name."
}
}
}
```