type for valid JSON value?
Is there a built-in or easy way to make sure a given input is a valid JSON value? Basically the opposite of
type("string.json.parse")
I guess16 Replies
wait im blind
object.json.stringify
Isn't it
object.json
yeah idk how i missed that lol
ty
No problem, always better when the solution already exists anyways 😅
Hmm this isn't working how I would expect
Hmm that's probably because
new Map()
doesn't have keys that don't belong to the prototype
We could potentially add some restriction on a jsonifiable object that it has a prototype of null
Object
or Array
- maybe open a GitHub issue?
Because if you think about how an object is validated, it just iterates over its own keys, so in a case like that it would essentially be treating it as an empty object
Would be pretty easy to add a .narrow
shallowly but since it's recursive, probably easier to address internallyYeah I think anything that's not assignable to the internal
Json
type should be rejected by object.json
I'll open an issueYeah the difference is TS is checking the prototype as well whereas generally in validation this doesn't makes sense to do, but I can see how for this case it would be useful
Sort of related, but how do you feel about allowing json primitives?
Currently
object.json
rejects something like 10
but that is also a valid Json
value.Well it definitely shouldn't be allowed for
object.json
But maybe I could provide the broader JSON type externally (it already exists internally)oh right, thats for objects specifically
yeah that would be awesome
Mostly just a matter of figuring out how I'd want to name/group the keyword
Could add a top-level
json
I supposeyeah i could see there being a
json
and json.stringify
keywordFeel free to open a request for that as well would be trivial to add
Can you point me to where this is?
can't find it in the source
GitHub
arktype/ark/schema/intrinsic.ts at cf9dfcfbc7cb05e6c299d7c4a7ac8eac...
TypeScript's 1:1 validator, optimized from editor to runtime - arktypeio/arktype