A list of DeploymentConfig objects.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeploymentConfigList", "title": "DeploymentConfigList", "type": "object", "description": "A list of DeploymentConfig objects.", "required": [ "items" ], "properties": { "apiVersion": { "type": "string", "default": "apps.openshift.io/v1", "example": "example_value" }, "kind": { "type": "string", "default": "DeploymentConfigList", "example": "example_value" }, "metadata": { "$ref": "#/components/schemas/ListMeta" }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/DeploymentConfig" }, "example": [] } } }