{ "$ref": "#/definitions/posts", "definitions": { "posts": { "type": "object", "properties": { "title": { "type": "string" }, "date": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string" } }, "$schema": { "type": "string" } }, "required": [ "title", "date", "tags" ], "additionalProperties": false } }, "$schema": "http://json-schema.org/draft-07/schema#" }