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