skip to Main Content

Dataset not failing on validation for json schema

I have a base schema and extended schema below ./resources/json-schemas/simple-person.schema { "$id": "http://example.com/json-schemas/simple-person.schema", "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Simple Person", "type": "object", "people": { "items": { "properties": { "name": { "type": "string", "description": "The person's name." }, "age": { "type": "integer", "description":…

VIEW QUESTION
Back To Top
Search