boon now included

This commit is contained in:
2025-09-30 01:10:58 -04:00
parent c9b1245a57
commit cc04f38c14
77 changed files with 12905 additions and 52 deletions

View File

@ -0,0 +1,7 @@
{
"type": "object",
"properties": {
"speak": { "const": "bow" }
},
"required": ["speak"]
}

View File

@ -0,0 +1,4 @@
{
"firstName": "Santhosh Kumar",
"lastName": "Tekuri"
}

View File

@ -0,0 +1,2 @@
firstName: Santhosh Kumar
lastName: Tekuri

View File

@ -0,0 +1,12 @@
{
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
}
},
"required": ["firstName", "lastName"]
}

View File

@ -0,0 +1,12 @@
{
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
}
},
"required": ["firstName", "lastName"]
}

View File

@ -0,0 +1,9 @@
type: object
properties:
firstName:
type: string
lastName:
type: string
required:
- firstName
- lastName