Click or drag to resize
Json.NET Schema

SchemaIdGenerationHandling Enumeration

 
Specifies generated schema Id handling options for the JSchemaGenerator.

Namespace:  Newtonsoft.Json.Schema.Generation
Assembly:  Newtonsoft.Json.Schema (in Newtonsoft.Json.Schema.dll) Version: 3.0.6
Syntax
C#
public enum SchemaIdGenerationHandling
Members
  Member nameValueDescription
None0 Do not generate a schema Id.
TypeName1 Use the .NET type name as the schema Id.
FullTypeName2 Use the .NET full type name (namespace plus type name) as the schema Id.
AssemblyQualifiedName3 Use the assembly qualified .NET type name as the schema Id.
See Also