Error

DatacenterEnterpriseInfrastructureMicrosoftOperating SystemServer ManagementWindows ServerWindows Server 2025

Properties

Name Type Description
title string A short description of the error.
detail string A detailed description of the error.
status integer The HTTP status code.
View JSON Schema on GitHub

JSON Schema

microsoft-windows-server-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "A short description of the error.",
      "example": "Example Title"
    },
    "detail": {
      "type": "string",
      "description": "A detailed description of the error.",
      "example": "example_value"
    },
    "status": {
      "type": "integer",
      "description": "The HTTP status code.",
      "example": 10
    }
  }
}