JSON Activity4
JSON Activity4
Moises
BSINFOTECH 2C
ACTIVITY 4
SIAS-CLASS LIST INFORMATION
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"SIAS-ClassList": {
"type": "object",
"properties": {
"Student": {
"type": "array",
"items": {
"type": "object",
"properties": {
"StudentID": {
"type": "string",
"minLength": 1
},
"StudentName": {
"type": "string",
"minLength": 1
},
"Sex": {
"type": "string",
},
"Course": {
"type": "string",
"minLength": 1
},
"Year": {
"type": "integer",
"minimum": 1
},
"Contact": {
"type": "integer"
},
"Email": {
"type": "string",
"format": "email"
},
},
"required": ["Student"]
},
"required": ["SIAS-ClassList"]
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"InventoryInformation": {
"type": "object",
"properties": {
"Product": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ID": {
"type": "string",
"minLength": 1
},
"Name": {
"type": "string",
"minLength": 1
},
"Description": {
"type": "string"
},
"Price": {
"type": "number",
"minimum": 0
},
"QuantityInStock": {
"type": "integer",
"minimum": 0
},
"Category": {
"type": "string"
},
},
"required": ["Product"]
},
"required": ["InventoryInformation"]