{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AwsIRSACredentialProperties", "title": "AwsIRSACredentialProperties", "allOf": [ { "$ref": "#/components/schemas/AwsCredentialProperties" }, { "type": "object", "properties": { "kind": { "type": "string", "enum": [ "IRSA" ] }, "roleARN": { "type": "string" }, "storage": { "$ref": "#/components/schemas/CredentialStorageProperties" } }, "required": [ "kind", "roleARN", "storage" ] } ] }