Created
October 24, 2023 04:43
-
-
Save himanshugoel2797/cf834ab7cbd4cf8c86904632213409c6 to your computer and use it in GitHub Desktop.
ESE 481 - Lab 6 - Task 3 Schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"temp_f": { | |
"type": "number" | |
} | |
}, | |
"required": [ | |
"id", | |
"name", | |
"temp_f" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment