{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Like", "title": "Like", "type": "object", "description": "An object to represent a user's like.", "properties": { "gid": { "description": "Globally unique identifier of the object, as a string.", "type": "string", "readOnly": true, "example": "12345" }, "user": { "$ref": "#/components/schemas/UserCompact" } } }