Home ItemsKeyword Class
ItemsKeyword Class
Cancel

ItemsKeyword Class

Namespace: Json.Schema

Inheritance: ItemsKeyword 🡒 object

Implemented interfaces:

  • IJsonSchemaKeyword
  • ISchemaContainer
  • ISchemaCollector

Handles items.

Fields

NameTypeSummary
NamestringThe JSON name of the keyword.

Properties

NameTypeSummary
ArraySchemasIReadOnlyList<JsonSchema>The collection of schemas for the “schema array” form.
SingleSchemaJsonSchemaThe schema for the “single schema” form.

Constructors

ItemsKeyword(JsonSchema value)

Creates a new Json.Schema.ItemsKeyword.

Declaration

1
public ItemsKeyword(JsonSchema value)
ParameterTypeDescription
valueJsonSchemaThe schema for the “single schema” form.

ItemsKeyword(params JsonSchema[] values)

Creates a new Json.Schema.ItemsKeyword.

Declaration

1
public ItemsKeyword(params JsonSchema[] values)
ParameterTypeDescription
valuesparams JsonSchema[]The collection of schemas for the “schema array” form.

Remarks

Using the params constructor to build an array-form items keyword with a single schema will confuse the compiler. To achieve this, you’ll need to explicitly specify the array.

ItemsKeyword(IEnumerable<JsonSchema> values)

Creates a new Json.Schema.ItemsKeyword.

Declaration

1
public ItemsKeyword(IEnumerable<JsonSchema> values)
ParameterTypeDescription
valuesIEnumerable<JsonSchema>The collection of schemas for the “schema array” form.

Methods

GetConstraint(SchemaConstraint schemaConstraint, ReadOnlySpan<KeywordConstraint> localConstraints, EvaluationContext context)

Builds a constraint object for a keyword.

Declaration

1
public KeywordConstraint GetConstraint(SchemaConstraint schemaConstraint, ReadOnlySpan<KeywordConstraint> localConstraints, EvaluationContext context)
ParameterTypeDescription
schemaConstraintSchemaConstraintThe Json.Schema.SchemaConstraint for the schema object that houses this keyword.
localConstraintsReadOnlySpan<KeywordConstraint>The set of other Json.Schema.KeywordConstraints that have been processed prior to this one. Will contain the constraints for keyword dependencies.
contextEvaluationContextThe Json.Schema.EvaluationContext.

Returns

A constraint object.

Contents