{
  "description": "PodExtendedResourceClaimStatus is stored in the PodStatus for the extended resource requests backed by DRA. It stores the generated name for the corresponding special ResourceClaim created by the scheduler.",
  "properties": {
    "requestMappings": {
      "description": "RequestMappings identifies the mapping of <container, extended resource backed by DRA> to  device request in the generated ResourceClaim.",
      "items": {
        "description": "ContainerExtendedResourceRequest has the mapping of container name, extended resource name to the device request name.",
        "properties": {
          "containerName": {
            "description": "The name of the container requesting resources.",
            "type": "string"
          },
          "requestName": {
            "description": "The name of the request in the special ResourceClaim which corresponds to the extended resource.",
            "type": "string"
          },
          "resourceName": {
            "description": "The name of the extended resource in that container which gets backed by DRA.",
            "type": "string"
          }
        },
        "required": [
          "containerName",
          "resourceName",
          "requestName"
        ],
        "type": [
          "object",
          "null"
        ],
        "additionalProperties": false
      },
      "type": [
        "array",
        "null"
      ],
      "x-kubernetes-list-type": "atomic"
    },
    "resourceClaimName": {
      "description": "ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "requestMappings",
    "resourceClaimName"
  ],
  "type": "object",
  "additionalProperties": false,
  "$schema": "http://json-schema.org/schema#"
}