# AtsDiagnosticSeverity

- Kind: `enum`
- Package: [Aspire.TypeSystem](/reference/api/csharp/aspire.typesystem.md)
- Version: `13.4.0`
- Namespace: `Aspire.TypeSystem`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/a3766e994fd2cba86c8ac60b8a80268cab7e6383/src/Aspire.TypeSystem/AtsDiagnosticSeverity.cs)

Represents the severity of an ATS scanner diagnostic.

## Definition

```csharp
namespace Aspire.TypeSystem;

public enum AtsDiagnosticSeverity
```

## Enum Members

| Name | Value | Description |
| --- | --- | --- |
| Info | 0 | Information - verbose details about scanning (shown with --debug). |
| Warning | 1 | Warning - the item was skipped but scanning continues. |
| Error | 2 | Error - a type validation error (e.g., object type without [AspireUnion]). |
