SchemaField

data class SchemaField(val name: String, val type: String? = null, val description: String? = null)

Represents a field in a schema.

Parameters

name

The unique name of the field.

type

The type of the field, such as string, integer, or boolean.

description

A description of the field.

Constructors

Link copied to clipboard
constructor(name: String, type: String? = null, description: String? = null)

Properties

Link copied to clipboard
val description: String? = null
Link copied to clipboard
Link copied to clipboard
val type: String? = null