28 writes to Type
System.Text.Json (28)
System\Text\Json\Schema\JsonSchema.cs (1)
147
Type
|= JsonSchemaType.Null;
System\Text\Json\Schema\JsonSchemaExporter.cs (7)
169
derivedSchema.
Type
= JsonSchemaType.Any;
183
Type
= schemaType,
266
Type
= JsonSchemaType.Object,
283
Type
= JsonSchemaType.Array,
307
Type
= JsonSchemaType.Object,
314
Type
= JsonSchemaType.Array,
344
Type
= JsonSchemaType.Object,
System\Text\Json\Serialization\Converters\Node\JsonArrayConverter.cs (1)
43
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.Array };
System\Text\Json\Serialization\Converters\Node\JsonObjectConverter.cs (1)
69
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.Object };
System\Text\Json\Serialization\Converters\Value\BooleanConverter.cs (1)
41
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.Boolean };
System\Text\Json\Serialization\Converters\Value\ByteArrayConverter.cs (1)
32
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.String };
System\Text\Json\Serialization\Converters\Value\CharConverter.cs (1)
65
new() {
Type
= JsonSchemaType.String, MinLength = 1, MaxLength = 1 };
System\Text\Json\Serialization\Converters\Value\DateOnlyConverter.cs (1)
74
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.String, Format = "date" };
System\Text\Json\Serialization\Converters\Value\DateTimeConverter.cs (1)
32
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new JsonSchema {
Type
= JsonSchemaType.String, Format = "date-time" };
System\Text\Json\Serialization\Converters\Value\DateTimeOffsetConverter.cs (1)
32
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new JsonSchema {
Type
= JsonSchemaType.String, Format = "date-time" };
System\Text\Json\Serialization\Converters\Value\EnumConverter.cs (2)
507
return new() {
Type
= JsonSchemaType.String };
519
return new() {
Type
= JsonSchemaType.Integer };
System\Text\Json\Serialization\Converters\Value\GuidConverter.cs (1)
34
new() {
Type
= JsonSchemaType.String, Format = "uuid" };
System\Text\Json\Serialization\Converters\Value\JsonPrimitiveConverter.cs (2)
62
new JsonSchema {
Type
= schemaType, Pattern = pattern },
68
return new JsonSchema {
Type
= schemaType, Pattern = pattern };
System\Text\Json\Serialization\Converters\Value\MemoryByteConverter.cs (1)
23
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.String };
System\Text\Json\Serialization\Converters\Value\ReadOnlyMemoryByteConverter.cs (1)
23
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.String };
System\Text\Json\Serialization\Converters\Value\StringConverter.cs (1)
56
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.String };
System\Text\Json\Serialization\Converters\Value\TimeOnlyConverter.cs (1)
99
internal override JsonSchema? GetSchema(JsonNumberHandling _) => new() {
Type
= JsonSchemaType.String, Format = "time" };
System\Text\Json\Serialization\Converters\Value\TimeSpanConverter.cs (1)
99
Type
= JsonSchemaType.String,
System\Text\Json\Serialization\Converters\Value\UriConverter.cs (1)
57
new() {
Type
= JsonSchemaType.String, Format = "uri" };
System\Text\Json\Serialization\Converters\Value\VersionConverter.cs (1)
132
Type
= JsonSchemaType.String,
5 references to Type
System.Text.Json (5)
System\Text\Json\Schema\JsonSchema.cs (3)
113
Count(
Type
!= JsonSchemaType.Any);
145
if (
Type
!= JsonSchemaType.Any)
170
if (MapSchemaType(
Type
) is JsonNode type)
System\Text\Json\Schema\JsonSchemaExporter.cs (2)
151
schemaType = derivedSchema.
Type
;
153
else if (schemaType != derivedSchema.
Type
)