{
  "description": "DeviceCapacity describes a quantity associated with a device.",
  "properties": {
    "requestPolicy": {
      "$ref": "_definitions.json#/definitions/io.k8s.api.resource.v1beta2.CapacityRequestPolicy",
      "description": "RequestPolicy defines how this DeviceCapacity must be consumed when the device is allowed to be shared by multiple allocations.\n\nThe Device must have allowMultipleAllocations set to true in order to set a requestPolicy.\n\nIf unset, capacity requests are unconstrained: requests can consume any amount of capacity, as long as the total consumed across all allocations does not exceed the device's defined capacity. If request is also unset, default is the full capacity value."
    },
    "value": {
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
      "description": "Value defines how much of a certain capacity that device has.\n\nThis field reflects the fixed total capacity and does not change. The consumed amount is tracked separately by scheduler and does not affect this value."
    }
  },
  "required": [
    "value"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}