{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/snippet_comment", "title": "snippet_comment", "allOf": [ { "$ref": "#/components/schemas/object" }, { "type": "object", "title": "Snippet Comment", "description": "A comment on a snippet.", "properties": { "links": { "type": "object", "properties": { "self": { "type": "object", "title": "Link", "description": "A link to a resource related to this object.", "properties": { "href": { "type": "string", "format": "uri" }, "name": { "type": "string" } }, "additionalProperties": false }, "html": { "type": "object", "title": "Link", "description": "A link to a resource related to this object.", "properties": { "href": { "type": "string", "format": "uri" }, "name": { "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, "snippet": { "$ref": "#/components/schemas/snippet" } }, "additionalProperties": true } ] }