PersistentVolume

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications
View JSON Schema on GitHub

JSON Schema

application-research-persistentvolume-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PersistentVolume",
  "title": "PersistentVolume",
  "allOf": [
    {
      "$ref": "#/components/schemas/Volume"
    },
    {
      "type": "object",
      "properties": {
        "kind": {
          "type": "string",
          "enum": [
            "persistent"
          ]
        },
        "permission": {
          "type": "string",
          "enum": [
            "read",
            "write"
          ]
        },
        "source": {
          "type": "string"
        }
      },
      "required": [
        "kind",
        "source"
      ]
    }
  ]
}