Slide 54
Slide 54 text
$ref & definitions
{
“$schema”: “http://json-schema.org/draft-04/schema#”,
“description”: “This schema defines an address”,
"type": "object",
"properties": {
"city": { "type": "string" },
"state": { "type": "string" }
},
"required": ["street_address", "city", "state"]
}
{
“$schema”: “http://json-schema.org/draft-04/schema#”,
“description”: “This schema describes an order”,
"type": "object",
"properties": {
"billing_address": { "$ref": "address.json#" },
"shipping_address": { "$ref": "address.json#" }
}
}
address.json
order.json