{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateSnippetObject", "title": "UpdateSnippetObject", "type": "object", "required": [ "text" ], "properties": { "reason": { "type": "string", "example": "audit", "description": "Reason for snippet update; only required for Compliance Officers." }, "text": { "type": "string", "example": "Hello everybody", "description": "Text for the snippet." } } }