Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

174
Views
Validate JSON against Objection model

I have a model like

export default MyModel extends Model {
   id!: string;
   name!: string;
   age!: number;
   classes: Classes;

    public static tableName = 'users';
    public static columnNameMappers = snakeCaseMappers();

    static get jsonSchema(): JSONSchema {
       return {
            type: 'object',
            required: ['name', 'age'], 
            properties: {
                id: { type: 'string', format: 'uuid', readOnly: true },
                name: { type: 'string' },
                age: { type: 'integer', minimum: 0 },
                classes: {
                     type: 'object',
                     required: ['className', 'instructorId']
                     properties: {
                         className: { type: 'string' },
                         instructorId: {type: 'string', format: 'uuid'}
                     }
                 }
              }
          }
     }
}

Somewhere else I have a function to validate that some object I have matches this schema.

function validateSubscriptionConfiguration(myJson) {
    return ??;
}

Is there a straightforward way to do this in Objection or in Javascript in general? Or do I have to use some packages to achieve this?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!