Currently, I am working with JSON Schema and have a selection field with enumeration options. However, I would like to allow the user to input values manually if their desired value is not present in the selection.
{
'$id': 'https://example.com/person.schema.json',
'$schema': 'http://json-schema.org/draft-07/schema#',
title: '',
type: 'object',
required: [],
properties: {
Animals: {
type: 'string',
enum: [
'fox',
' duck'
],
title: 'Animals',
span: 6
}
}
}
I want to provide users with the ability to enter values such as horse
.