org.openapijsonschematools.components.schemas.ArrayOfArrayOfNumberOnly.java public class ArrayOfArrayOfNumberOnly
A class that contains necessary nested schema classes, and classes to store validated list and map payloads
| Modifier and Type | Class and Description |
|---|---|
| static class | ArrayOfArrayOfNumberOnly.ArrayOfArrayOfNumberOnly1 schema class |
| static class | ArrayOfArrayOfNumberOnly.ArrayOfArrayOfNumberOnlyMap output class for Map payloads |
| static class | ArrayOfArrayOfNumberOnly.ArrayArrayNumber schema class |
| static class | ArrayOfArrayOfNumberOnly.ArrayArrayNumberList output class for List payloads |
| static class | ArrayOfArrayOfNumberOnly.Items schema class |
| static class | ArrayOfArrayOfNumberOnly.ItemsList output class for List payloads |
| static class | ArrayOfArrayOfNumberOnly.Items1 schema class |
public static class ArrayOfArrayOfNumberOnly1
extends JsonSchema
A schema class that validates payloads
| Modifier and Type | Field and Description |
|---|---|
| static LinkedHashMap<String, KeywordValidator> | keywordToValidator new LinkedHashMap<>(Map.ofEntries( new KeywordEntry("type", new TypeValidator(Set.of(FrozenMap.class))), new KeywordEntry("properties", new PropertiesValidator(Map.ofEntries( new PropertyEntry("ArrayArrayNumber", ArrayArrayNumber.class)) ))) )); |
| Modifier and Type | Method and Description |
|---|---|
| static ArrayOfArrayOfNumberOnlyMap | validate(Map<String, Object> arg, SchemaConfiguration configuration) |
public static class ArrayOfArrayOfNumberOnlyMap
extends FrozenMap<String, Object>
A class to store validated Map payloads
| Modifier and Type | Method and Description |
|---|---|
| static ArrayOfArrayOfNumberOnlyMap | of(Map<String, Object> arg, SchemaConfiguration configuration) |
| ArrayArrayNumberList | ArrayArrayNumber() [optional] |
| Object | getAdditionalProperty(String name) provides type safety for additional properties |
type: Map<String, Object>
| Key | Type | Description | Notes |
|---|---|---|---|
| ArrayArrayNumber | List<List> | [optional] | |
| anyStringName | Object | any string name can be used but the value must be the correct type | [optional] |
public static class ArrayArrayNumber
extends JsonSchema
A schema class that validates payloads
| Modifier and Type | Field and Description |
|---|---|
| static LinkedHashMap<String, KeywordValidator> | keywordToValidator new LinkedHashMap<>(Map.ofEntries( new KeywordEntry("type", new TypeValidator(Set.of(FrozenList.class))), new KeywordEntry("items", new ItemsValidator(Items.class)) )); |
| Modifier and Type | Method and Description |
|---|---|
| static ArrayArrayNumberList | validate(List<List> arg, SchemaConfiguration configuration) |
public class ArrayArrayNumberList
extends FrozenList<ItemsList>
A class to store validated List payloads
| Modifier and Type | Method and Description |
|---|---|
| static ArrayArrayNumberList | of(List<List> arg, SchemaConfiguration configuration) |
type: List<List<Number>>
| List Item Type | Description | Notes |
|---|---|---|
| List |
public static class Items
extends JsonSchema
A schema class that validates payloads
| Modifier and Type | Field and Description |
|---|---|
| static LinkedHashMap<String, KeywordValidator> | keywordToValidator new LinkedHashMap<>(Map.ofEntries( new KeywordEntry("type", new TypeValidator(Set.of(FrozenList.class))), new KeywordEntry("items", new ItemsValidator(Items1.class)) )); |
| Modifier and Type | Method and Description |
|---|---|
| static ItemsList | validate(List arg, SchemaConfiguration configuration) |
public class ItemsList
extends FrozenList<Number>
A class to store validated List payloads
| Modifier and Type | Method and Description |
|---|---|
| static ItemsList | of(List arg, SchemaConfiguration configuration) |
type: List<Number>
| List Item Type | Description | Notes |
|---|---|---|
| Number |
public static class Items1
extends NumberJsonSchema
A schema class that validates payloads