Skip to content

Commit 5513130

Browse files
author
json-everything-ci
committed
regenerated api docs
1 parent b277ec3 commit 5513130

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

_docs/api/JsonSchema.Net.DataGeneration/JsonSchemaExtensions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,20 @@ Provides extension methods for **Json.Schema.JsonSchema** to generate sample dat
1616

1717
## Methods
1818

19-
### GenerateData(this JsonSchema schema)
19+
### GenerateData(this JsonSchema schema, EvaluationOptions options)
2020

2121
Attempts to generate sample data that meets the requirements of the schema.
2222

2323
#### Declaration
2424

2525
```c#
26-
public static GenerationResult GenerateData(this JsonSchema schema)
26+
public static GenerationResult GenerateData(this JsonSchema schema, EvaluationOptions options)
2727
```
2828

2929
| Parameter | Type | Description |
3030
|---|---|---|
3131
| schema | JsonSchema | The schema. |
32+
| options | EvaluationOptions | A set of evaluation options. |
3233

3334

3435
#### Returns

_docs/api/JsonSchema.Net.DataGeneration/NumberRangeSet.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,34 +64,34 @@ public NumberRangeSet(IEnumerable<NumberRange> other)
6464

6565
## Methods
6666

67-
### Ceiling(decimal ceiling)
67+
### Ceiling(Bound ceiling)
6868

6969
Applies a ceiling (upper bound).
7070

7171
#### Declaration
7272

7373
```c#
74-
public NumberRangeSet Ceiling(decimal ceiling)
74+
public NumberRangeSet Ceiling(Bound ceiling)
7575
```
7676

7777

7878
#### Returns
7979

8080

8181

82-
### Floor(decimal floor)
82+
### Floor(Bound floor)
8383

8484
Applies a floor (lower bound).
8585

8686
#### Declaration
8787

8888
```c#
89-
public NumberRangeSet Floor(decimal floor)
89+
public NumberRangeSet Floor(Bound floor)
9090
```
9191

9292
| Parameter | Type | Description |
9393
|---|---|---|
94-
| floor | decimal | |
94+
| floor | Bound | |
9595

9696

9797
#### Returns

_docs/api/JsonSchema.Net.DataGeneration/title.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ bookmark: JsonSchema.Net.DataGeneration
44
permalink: /api/JsonSchema.Net.DataGeneration/:title/
55
folder: true
66
order: "10.06"
7-
version: "2.0.1"
7+
version: "2.1.0"
88
---

_docs/release-notes/rn-json-schema-datageneration.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ title: JsonSchema.Net.DataGeneration
44
icon: fas fa-tag
55
order: "09.06"
66
---
7+
# [2.1.0](https://github.com/gregsdennis/json-everything/pull/665) {#release-schemadatagen-2.0.1}
8+
9+
[#617](https://github.com/gregsdennis/json-everything/issues/617) - Added support for `exclusiveMin`, `exclusiveMax`, and `$ref`. (Note: `$ref` support does not include infinite recursion checking.)
10+
711
# [2.0.1](https://github.com/gregsdennis/json-everything/pull/658) {#release-schemadatagen-2.0.1}
812

913
[#646](https://github.com/gregsdennis/json-everything/issues/646) & [#647](https://github.com/gregsdennis/json-everything/issues/647) - Improved handling of `not`, `oneOf`, and `unevaluatedProperties`.

0 commit comments

Comments
 (0)