{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-schema/azure-container-instances-azure-file-volume-schema.json",
"title": "AzureFileVolume",
"description": "The properties of the Azure File volume. Azure File shares are mounted as volumes.",
"type": "object",
"properties": {
"readOnly": {
"description": "The flag indicating whether the Azure File shared mounted as a volume is read-only.",
"type": "boolean"
},
"shareName": {
"description": "The name of the Azure File share to be mounted as a volume.",
"type": "string"
},
"storageAccountKey": {
"description": "The storage account access key used to access the Azure File share.",
"type": "string"
},
"storageAccountName": {
"description": "The name of the storage account that contains the Azure File share.",
"type": "string"
}
},
"required": [
"shareName",
"storageAccountName"
]
}