{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeveloperComment", "title": "DeveloperComment", "type": "object", "description": "A reply from the developer to a user review.", "properties": { "text": { "type": "string", "description": "The text content of the developer reply.", "example": "example_value" }, "lastModified": { "$ref": "#/components/schemas/Timestamp" } } }