{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalSnippetResponse", "title": "PortalSnippetResponse", "description": "Details about a snippet in a portal.", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UUID" }, "name": { "$ref": "#/components/schemas/SnippetName" }, "title": { "$ref": "#/components/schemas/SnippetTitle" }, "content": { "$ref": "#/components/schemas/SnippetContent" }, "visibility": { "$ref": "#/components/schemas/VisibilityStatus" }, "status": { "$ref": "#/components/schemas/PublishedStatus" }, "description": { "$ref": "#/components/schemas/Description" }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" } }, "additionalProperties": false, "required": [ "id", "name", "content", "visibility", "status", "created_at", "updated_at" ] }