Skip to content

Instantly share code, notes, and snippets.

@himanshugoel2797
Created October 24, 2023 04:43
Show Gist options
  • Save himanshugoel2797/cf834ab7cbd4cf8c86904632213409c6 to your computer and use it in GitHub Desktop.
Save himanshugoel2797/cf834ab7cbd4cf8c86904632213409c6 to your computer and use it in GitHub Desktop.
ESE 481 - Lab 6 - Task 3 Schema
{
"$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