Json Schema Eg

[Solved] Json Schema Eg | Scala - Code Explorer | yomemimo.com
Question : json schema eg

Answered by : vincent-5ahi8dafspsw

{ "$id": "https://example.com/person.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Person", "type": "object", "properties": { "firstName": { "type": "string", "description": "The person's first name." }, "lastName": { "type": "string", "description": "The person's last name." }, "age": { "description": "Age in years which must be equal to or greater than zero.", "type": "integer", "minimum": 0 } }
}

Source : https://json-schema.org/learn/miscellaneous-examples.html | Last Update : Tue, 05 Jul 22

Answers related to json schema eg

Code Explorer Popular Question For Scala