{ "$ref": "#/definitions/references", "definitions": { "references": { "type": "object", "properties": { "title": { "type": "string" }, "subtitle": { "type": "string" }, "url": { "type": "string" }, "lang": { "type": "string", "enum": [ "fr", "en" ] }, "slug": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string" } }, "createdAt": { "type": "string" }, "updatedAt": { "type": "string" }, "code": { "type": "boolean" }, "draft": { "type": "boolean" }, "$schema": { "type": "string" } }, "required": [ "title", "subtitle", "url", "lang", "slug", "tags", "createdAt" ], "additionalProperties": false } }, "$schema": "http://json-schema.org/draft-07/schema#" }