ValidationResult

Result of workload validation

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
valid boolean Whether the workload is valid
errors array List of validation errors
warnings array List of validation warnings
View JSON Schema on GitHub

JSON Schema

application-research-validationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidationResult",
  "title": "ValidationResult",
  "type": "object",
  "description": "Result of workload validation",
  "properties": {
    "valid": {
      "type": "boolean",
      "description": "Whether the workload is valid"
    },
    "errors": {
      "type": "array",
      "description": "List of validation errors",
      "items": {
        "$ref": "#/components/schemas/ValidationError"
      }
    },
    "warnings": {
      "type": "array",
      "description": "List of validation warnings",
      "items": {
        "$ref": "#/components/schemas/ValidationWarning"
      }
    }
  }
}