Is there a special type associated with JSON-schema objects in typescript? My class has a method that checks whether its members satisfy the dynamic json schema schema
, for now I do it like so,
JavaScript
x
6
1
<!-- language: typescript -->
2
3
verifySchema(schema: object): void {
4
// do verification
5
}
6
where for example
JavaScript
1
18
18
1
<!-- language: typescript -->
2
3
const schema = {
4
title: 'blabla',
5
description: 'Basic schema',
6
type: 'object',
7
properties: {
8
"firstName": {
9
"type": "string",
10
"description": "The person's first name."
11
},
12
"lastName": {
13
"type": "string",
14
"description": "The person's last name."
15
},
16
17
}
18
But to remain generic I would like to allow for checking arbitrary json schemas, not just this specific one. Is it okay to set schema: object
or are there best practices for JSON-schema objects?
Advertisement
Answer
You can use @types/json-schema.
Then:
JavaScript
1
6
1
import {JSONSchema7} from 'json-schema';
2
3
verifySchema(schema: JSONSchema7): void {
4
// do verification
5
}
6