Nothing
test_that("validation works", {
expect_true(validate_json_str('["hello"]'))
expect_false(validate_json_str('["hello]'))
out <- capture_output(
expect_warning(validate_json_str('["hello]', verbose = TRUE), "parsing")
)
expect_true(validate_json_file("./examples/test.json"))
expect_false(validate_json_file("./examples/flights.ndjson"))
expect_warning(validate_json_file("./examples/flights.ndjson", verbose = TRUE), "parsing")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.