Allocation

A subscription allocation

AutomationComplianceEnterpriseLinuxOperating SystemRed HatRHELSecuritySubscription ManagementVulnerability Management

Properties

Name Type Description
uuid string
name string
type string
version string
quantity integer
subscriptions array
View JSON Schema on GitHub

JSON Schema

rhel-allocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Allocation",
  "title": "Allocation",
  "type": "object",
  "description": "A subscription allocation",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "quantity": {
      "type": "integer"
    },
    "subscriptions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Subscription"
      }
    }
  }
}