Skip to content

Commit da6e852

Browse files
author
json-everything-ci
committed
regenerated api docs
1 parent 5b2ae64 commit da6e852

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+349
-261
lines changed

_docs/api/JsonE.Net/title.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ bookmark: JsonE.Net
44
permalink: /api/JsonE.Net/:title/
55
folder: true
66
order: "10.12"
7-
version: "2.4.0"
7+
version: "2.5.0"
88
---

_docs/api/JsonLogic/JsonLogic.md

+104
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,19 @@ public static Rule Add(Rule a, params Rule[] more)
3636

3737
A `+` rule.
3838

39+
### Add(Rule a, ReadOnlySpan\<Rule\> more)
40+
41+
42+
#### Declaration
43+
44+
```c#
45+
public static Rule Add(Rule a, ReadOnlySpan<Rule> more)
46+
```
47+
48+
49+
#### Returns
50+
51+
3952
### All(Rule input, Rule rule)
4053

4154
Creates an `all` rule.
@@ -76,6 +89,19 @@ public static Rule And(Rule a, params Rule[] more)
7689

7790
An `and` rule.
7891

92+
### And(Rule a, ReadOnlySpan\<Rule\> more)
93+
94+
95+
#### Declaration
96+
97+
```c#
98+
public static Rule And(Rule a, ReadOnlySpan<Rule> more)
99+
```
100+
101+
102+
#### Returns
103+
104+
79105
### Apply(JsonNode rule, JsonNode context)
80106

81107
Applies a rule encoded into a **System.Text.Json.Nodes.JsonNode** to some data.
@@ -198,6 +224,19 @@ public static Rule Cat(Rule a, params Rule[] more)
198224

199225
A `cat` rule.
200226

227+
### Cat(Rule a, ReadOnlySpan\<Rule\> more)
228+
229+
230+
#### Declaration
231+
232+
```c#
233+
public static Rule Cat(Rule a, ReadOnlySpan<Rule> more)
234+
```
235+
236+
237+
#### Returns
238+
239+
201240
### Divide(Rule a, Rule b)
202241

203242
Creates a `/` ("divide") rule.
@@ -435,6 +474,19 @@ public static Rule Max(Rule a, params Rule[] more)
435474

436475
A `max` rule.
437476

477+
### Max(Rule a, ReadOnlySpan\<Rule\> more)
478+
479+
480+
#### Declaration
481+
482+
```c#
483+
public static Rule Max(Rule a, ReadOnlySpan<Rule> more)
484+
```
485+
486+
487+
#### Returns
488+
489+
438490
### Merge(params Rule[] items)
439491

440492
Creates a `merge` rule.
@@ -474,6 +526,19 @@ public static Rule Min(Rule a, params Rule[] more)
474526

475527
A `min` rule.
476528

529+
### Min(Rule a, ReadOnlySpan\<Rule\> more)
530+
531+
532+
#### Declaration
533+
534+
```c#
535+
public static Rule Min(Rule a, ReadOnlySpan<Rule> more)
536+
```
537+
538+
539+
#### Returns
540+
541+
477542
### Missing(params Rule[] components)
478543

479544
Creates a `missing` rule.
@@ -593,6 +658,19 @@ public static Rule Multiply(Rule a, params Rule[] more)
593658

594659
A `*` rule.
595660

661+
### Multiply(Rule a, ReadOnlySpan\<Rule\> more)
662+
663+
664+
#### Declaration
665+
666+
```c#
667+
public static Rule Multiply(Rule a, ReadOnlySpan<Rule> more)
668+
```
669+
670+
671+
#### Returns
672+
673+
596674
### None(Rule input, Rule rule)
597675

598676
Creates a `none` rule.
@@ -652,6 +730,19 @@ public static Rule Or(Rule a, params Rule[] more)
652730

653731
An `or` rule.
654732

733+
### Or(Rule a, ReadOnlySpan\<Rule\> more)
734+
735+
736+
#### Declaration
737+
738+
```c#
739+
public static Rule Or(Rule a, ReadOnlySpan<Rule> more)
740+
```
741+
742+
743+
#### Returns
744+
745+
655746
### Reduce(Rule input, Rule rule, Rule initial)
656747

657748
Creates a `reduce` rule.
@@ -794,6 +885,19 @@ public static Rule Subtract(Rule a, params Rule[] more)
794885

795886
A `-` rule.
796887

888+
### Subtract(Rule a, ReadOnlySpan\<Rule\> more)
889+
890+
891+
#### Declaration
892+
893+
```c#
894+
public static Rule Subtract(Rule a, ReadOnlySpan<Rule> more)
895+
```
896+
897+
898+
#### Returns
899+
900+
797901
### Variable(Rule input)
798902

799903
Creates a `var` rule that accesses data.

_docs/api/JsonLogic/title.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ bookmark: JsonLogic
44
permalink: /api/JsonLogic/:title/
55
folder: true
66
order: "10.11"
7-
version: "5.3.0"
7+
version: "5.4.0"
88
---

_docs/api/JsonPatch.Net/title.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ bookmark: JsonPatch.Net
44
permalink: /api/JsonPatch.Net/:title/
55
folder: true
66
order: "10.09"
7-
version: "3.2.3"
7+
version: "3.3.0"
88
---

_docs/api/JsonPath.Net/title.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ bookmark: JsonPath.Net
44
permalink: /api/JsonPath.Net/:title/
55
folder: true
66
order: "10.08"
7-
version: "2.0.1"
7+
version: "2.1.0"
88
---

_docs/api/JsonPointer.Net/JsonPointer.md

+42
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,25 @@ public JsonPointer Combine(params PointerSegment[] additionalSegments)
7272
| additionalSegments | params PointerSegment[] | The additional segments. |
7373

7474

75+
#### Returns
76+
77+
A new pointer.
78+
79+
### Combine(ReadOnlySpan\<PointerSegment\> additionalSegments)
80+
81+
Concatenates additional segments onto the current pointer.
82+
83+
#### Declaration
84+
85+
```c#
86+
public JsonPointer Combine(ReadOnlySpan<PointerSegment> additionalSegments)
87+
```
88+
89+
| Parameter | Type | Description |
90+
|---|---|---|
91+
| additionalSegments | ReadOnlySpan\<PointerSegment\> | The additional segments. |
92+
93+
7594
#### Returns
7695

7796
A new pointer.
@@ -91,6 +110,29 @@ public static JsonPointer Create(params PointerSegment[] segments)
91110
| segments | params PointerSegment[] | A collection of segments. |
92111

93112

113+
#### Returns
114+
115+
The JSON Pointer.
116+
117+
#### Remarks
118+
119+
This method creates un-encoded pointers only.
120+
121+
### Create(ReadOnlySpan\<PointerSegment\> segments)
122+
123+
Creates a new JSON Pointer from a collection of segments.
124+
125+
#### Declaration
126+
127+
```c#
128+
public static JsonPointer Create(ReadOnlySpan<PointerSegment> segments)
129+
```
130+
131+
| Parameter | Type | Description |
132+
|---|---|---|
133+
| segments | ReadOnlySpan\<PointerSegment\> | A collection of segments. |
134+
135+
94136
#### Returns
95137

96138
The JSON Pointer.

_docs/api/JsonPointer.Net/title.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ bookmark: JsonPointer.Net
44
permalink: /api/JsonPointer.Net/:title/
55
folder: true
66
order: "10.10"
7-
version: "5.1.0"
7+
version: "5.2.0"
88
---

_docs/api/JsonSchema.Net.Generation/AdditionalItemsAttribute.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ order: "10.05.000"
1818

1919
**Implemented interfaces:**
2020

21+
- INestableAttribute
2122
- IAttributeHandler
2223

2324
Applies an `additionalProperties` keyword.
@@ -28,6 +29,7 @@ Applies an `additionalProperties` keyword.
2829
|---|---|---|
2930
| **BoolValue** | bool? | If the attribute value represents a boolean schema, gets the boolean value. |
3031
| **ConditionGroup** | object | Identifies the condition group under which this attribute applies. |
32+
| **GenericParameter** | int | The index of the parameter to which the attribute should apply. Default is -1 to indicate the root. |
3133
| **TypeId** | object | |
3234
| **TypeValue** | Type | If the attribute value represents a type schema, gets the type. |
3335

@@ -60,6 +62,6 @@ public AdditionalItemsAttribute(Type typeSchema)
6062

6163
| Parameter | Type | Description |
6264
|---|---|---|
63-
| typeSchema | Type | A type to generate the a schema for the keyword. |
65+
| typeSchema | Type | A type to generate a schema for the keyword. |
6466

6567

_docs/api/JsonSchema.Net.Generation/AdditionalItemsIntent.md

-17
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ order: "10.05.001"
1515
**Implemented interfaces:**
1616

1717
- ISchemaKeywordIntent
18-
- IContextContainer
1918

2019
Provides intent to create an `additionalItems` keyword.
2120

@@ -59,19 +58,3 @@ public void Apply(JsonSchemaBuilder builder)
5958
| builder | JsonSchemaBuilder | The builder. |
6059

6160

62-
### Replace(int hashCode, SchemaGenerationContextBase newContext)
63-
64-
Replaces one context with another.
65-
66-
#### Declaration
67-
68-
```c#
69-
public void Replace(int hashCode, SchemaGenerationContextBase newContext)
70-
```
71-
72-
| Parameter | Type | Description |
73-
|---|---|---|
74-
| hashCode | int | The hashcode of the context to replace. |
75-
| newContext | SchemaGenerationContextBase | The new context. |
76-
77-

_docs/api/JsonSchema.Net.Generation/AdditionalPropertiesAttribute.md

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ order: "10.05.002"
1818

1919
**Implemented interfaces:**
2020

21+
- INestableAttribute
2122
- IAttributeHandler
2223

2324
Applies an `additionalProperties` keyword.
@@ -28,6 +29,7 @@ Applies an `additionalProperties` keyword.
2829
|---|---|---|
2930
| **BoolValue** | bool? | If the attribute value represents a boolean schema, gets the boolean value. |
3031
| **ConditionGroup** | object | Identifies the condition group under which this attribute applies. |
32+
| **GenericParameter** | int | The index of the parameter to which the attribute should apply. Default is -1 to indicate the root. |
3133
| **TypeId** | object | |
3234
| **TypeValue** | Type | If the attribute value represents a type schema, gets the type. |
3335

_docs/api/JsonSchema.Net.Generation/AdditionalPropertiesIntent.md

-17
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ order: "10.05.003"
1515
**Implemented interfaces:**
1616

1717
- ISchemaKeywordIntent
18-
- IContextContainer
1918

2019
Provides intent to create an `additionalProperties` keyword.
2120

@@ -59,19 +58,3 @@ public void Apply(JsonSchemaBuilder builder)
5958
| builder | JsonSchemaBuilder | The builder. |
6059

6160

62-
### Replace(int hashCode, SchemaGenerationContextBase newContext)
63-
64-
Replaces one context with another.
65-
66-
#### Declaration
67-
68-
```c#
69-
public void Replace(int hashCode, SchemaGenerationContextBase newContext)
70-
```
71-
72-
| Parameter | Type | Description |
73-
|---|---|---|
74-
| hashCode | int | The hashcode of the context to replace. |
75-
| newContext | SchemaGenerationContextBase | The new context. |
76-
77-

_docs/api/JsonSchema.Net.Generation/ConstAttribute.md

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ order: "10.05.008"
1818

1919
**Implemented interfaces:**
2020

21+
- INestableAttribute
2122
- IAttributeHandler
2223

2324
Applies a `const` keyword.
@@ -27,6 +28,7 @@ Applies a `const` keyword.
2728
| Name | Type | Summary |
2829
|---|---|---|
2930
| **ConditionGroup** | object | Identifies the condition group under which this attribute applies. |
31+
| **GenericParameter** | int | The index of the parameter to which the attribute should apply. Default is -1 to indicate the root. |
3032
| **TypeId** | object | |
3133
| **Value** | JsonNode | The value. |
3234

_docs/api/JsonSchema.Net.Generation/DefaultAttribute.md

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ order: "10.05.011"
1818

1919
**Implemented interfaces:**
2020

21+
- INestableAttribute
2122
- IAttributeHandler
2223

2324
Applies a `default` keyword.
@@ -27,6 +28,7 @@ Applies a `default` keyword.
2728
| Name | Type | Summary |
2829
|---|---|---|
2930
| **ConditionGroup** | object | Identifies the condition group under which this attribute applies. |
31+
| **GenericParameter** | int | The index of the parameter to which the attribute should apply. Default is -1 to indicate the root. |
3032
| **TypeId** | object | |
3133
| **Value** | JsonNode | The value. |
3234

_docs/api/JsonSchema.Net.Generation/DescriptionAttribute.md

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ order: "10.05.015"
1818

1919
**Implemented interfaces:**
2020

21+
- INestableAttribute
2122
- IAttributeHandler
2223

2324
Applies a `description` keyword.
@@ -28,6 +29,7 @@ Applies a `description` keyword.
2829
|---|---|---|
2930
| **ConditionGroup** | object | Identifies the condition group under which this attribute applies. |
3031
| **Description** | string | The description. |
32+
| **GenericParameter** | int | The index of the parameter to which the attribute should apply. Default is -1 to indicate the root. |
3133
| **TypeId** | object | |
3234

3335
## Constructors

0 commit comments

Comments
 (0)