Type Alias IsJSONSchemaRequired<T, U, V>

IsJSONSchemaRequired<T, U, V>: V extends readonly any[]
    ? Includes<V, U>
    : false

True if JSONSchema value is required

Type Parameters