Red Hat · Schema
Inventory
An inventory defines a collection of hosts and groups that automation jobs target for execution.
CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The unique identifier of the inventory. |
| name | string | The name of the inventory. |
| description | string | A description of the inventory. |
| organization | integer | The ID of the organization this inventory belongs to. |
| kind | string | The kind of inventory. |
| host_count | integer | The total number of hosts in this inventory. |
| total_groups | integer | The total number of groups in this inventory. |
| has_inventory_sources | boolean | Whether this inventory has dynamic sources. |
| created | string | When the inventory was created. |
| modified | string | When the inventory was last modified. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Inventory",
"type": "object",
"description": "An inventory defines a collection of hosts and groups that automation jobs target for execution.",
"properties": {
"id": {
"type": "integer",
"description": "The unique identifier of the inventory."
},
"name": {
"type": "string",
"description": "The name of the inventory."
},
"description": {
"type": "string",
"description": "A description of the inventory."
},
"organization": {
"type": "integer",
"description": "The ID of the organization this inventory belongs to."
},
"kind": {
"type": "string",
"description": "The kind of inventory."
},
"host_count": {
"type": "integer",
"description": "The total number of hosts in this inventory."
},
"total_groups": {
"type": "integer",
"description": "The total number of groups in this inventory."
},
"has_inventory_sources": {
"type": "boolean",
"description": "Whether this inventory has dynamic sources."
},
"created": {
"type": "string",
"description": "When the inventory was created."
},
"modified": {
"type": "string",
"description": "When the inventory was last modified."
}
}
}