{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-storage-configuration-schema.json", "title": "StorageConfiguration", "description": "Defines the storage configuration for a runtime environment.", "type": "object", "properties": { "efs": { "allOf": [ { "$ref": "#/components/schemas/EfsStorageConfiguration" }, { "description": "Defines the storage configuration for an Amazon EFS file system." } ] }, "fsx": { "allOf": [ { "$ref": "#/components/schemas/FsxStorageConfiguration" }, { "description": "Defines the storage configuration for an Amazon FSx file system." } ] } } }