Stanard Schema issues conformance

Schemas with cyclic references
Throw on failed validation
onFail
in docs, so I've configured it and imported it before artype itself in place of use, but still no error was thrown.
```ts
// arktype-conf.ts
import { configure } from "arktype";...type for valid JSON value?
type("string.json.parse")
I guessIs it possible to define a type that does this?
How to make an `Int32Array<SharedArrayBuffer>`?
TypedArray.Int32
gives Int32Array<ArrayBufferLike>
but I want Int32Array<SharedArrayBuffer>
This probably applies to customizing any type of the int32 array but this is all I personally care about....How to create an arktype generic from a generic class<>?
Merge union?
const payment_methods = type("'credit_card' | 'debit_card' | 'eft' | 'apple_pay' | 'samsung_pay' | 'visa_checkout'")
...New v2.1 arktype matcher: is there a way to match on string literal values?
Inference issues while trying to be generic over a type
form
infers to "anyOrNever" & Record<string, unknown>
this is the relevant function
```ts...ArkType type matcher vs Effect Match module
Is there a better way to write this?
Section hero video
Is there a good way to use an array of fields mapped from an object into array as string literals?
ArkType `toJsonSchema` returning not open-api compatible schema.
Configure errors in a scope
expected
/actual
/etc handler for every type in a scope?
I have something like this:
```ts
const foo = type({...How to choose "one of" in a type?
Get ts type that accepts type arguments
"Custom" type or equivalent to valibot.custom()?