Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can you convert from JSON back to class? #65

Open
sebpowell opened this issue Apr 30, 2021 · 1 comment
Open

Can you convert from JSON back to class? #65

sebpowell opened this issue Apr 30, 2021 · 1 comment

Comments

@sebpowell
Copy link

Is there a way to convert JSON back to a class? (I want to store the validation schema in a database, and then use it).

I had a look through the source code, and unless I'm missing something, this doesn't appear to be possible?

@stewartmcgown
Copy link

stewartmcgown commented Aug 16, 2021

Not in this package, but use json-schema to do it yourself.

import {validate} from 'json-schema'

const schema = await loadSchema('mySchema')
const {valid} = await validate(userDTO, schema)

if (valid) {
     // use userDTO
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants