Summary of a resource pool
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ResourcePoolSummary", "title": "ResourcePoolSummary", "type": "object", "description": "Summary of a resource pool", "required": [ "resource_pool", "name" ], "properties": { "resource_pool": { "type": "string", "description": "Unique identifier of the resource pool", "example": "example_value" }, "name": { "type": "string", "description": "Display name of the resource pool", "example": "Example Title" } } }