{"id":10078,"date":"2025-08-19T00:28:21","date_gmt":"2025-08-19T00:28:21","guid":{"rendered":"https:\/\/savethevideo.net\/blog\/?p=10078"},"modified":"2025-08-19T00:36:49","modified_gmt":"2025-08-19T00:36:49","slug":"powershell-comments-syntax-best-practices-and-tips","status":"publish","type":"post","link":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/","title":{"rendered":"PowerShell Comments: Syntax, Best Practices, and Tips"},"content":{"rendered":"<p>PowerShell is a powerful scripting language and command-line shell designed for task automation and configuration management. While its capabilities are vast, one critical but often overlooked aspect of writing clean and maintainable PowerShell scripts is <em>commenting<\/em>. Proper use of comments not only makes your code understandable to others but also serves as a helpful guide when returning to your work after some time.<\/p>\n<p>In this article, we will dive into the syntax of PowerShell comments, explore best practices, and share useful tips to help you write better, more readable scripts.<\/p>\n<h2>Comment Syntax in PowerShell<\/h2>\n<p>There are two primary ways to add comments in PowerShell: single-line comments and multi-line comments.<\/p>\n<ul>\n<li><strong>Single-line comments:<\/strong> Use the <code>#<\/code> symbol to start a comment. Everything after the <code>#<\/code> on that line is ignored by PowerShell.<\/li>\n<\/ul>\n<pre><code># This is a single-line comment\nWrite-Output \"Hello, world!\" # This comment is inline<\/code><\/pre>\n<ul>\n<li><strong>Multi-line comments:<\/strong> Enclosed in <code>&lt;#<\/code> and <code>#&gt;<\/code>, multi-line comments span across several lines and are ideal for detailed explanations or disabling blocks of code.<\/li>\n<\/ul>\n<pre><code>&lt;#\nThis is a multi-line comment.\nIt can span several lines.\nUseful for documentation or block commenting.\n#&gt;<\/code><\/pre>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-300x200.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-1024x683.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-768x512.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Why Comments Matter<\/h2>\n<p>In the fast-paced world of DevOps and scripting, clear documentation often becomes an afterthought. However, comments play a crucial role in ensuring:<\/p>\n<ul>\n<li><strong>Readability:<\/strong> Comments help both you and others understand what your script is doing, especially for complex logic or unusual syntax.<\/li>\n<li><strong>Maintainability:<\/strong> Scripts evolve over time. Well-commented code makes updates and troubleshooting easier.<\/li>\n<li><strong>Collaboration:<\/strong> If multiple developers work on a project, consistent commenting enables smoother team collaboration and code reviews.<\/li>\n<\/ul>\n<h2>Best Practices for Writing Comments<\/h2>\n<p>Merely adding comments isn\u2019t enough\u2014they should be meaningful and well-placed. Follow these best practices for optimal results:<\/p>\n<ol>\n<li><strong>Be concise but clear:<\/strong> Don&#8217;t write a novel. Use clear language to explain what the code does and why it&#8217;s needed.<\/li>\n<li><strong>Comment on the &#8220;why,&#8221; not just the &#8220;what&#8221;:<\/strong> Often, the code itself shows what is happening. Good comments explain the reasoning behind decisions.<\/li>\n<li><strong>Avoid obvious comments:<\/strong> Don\u2019t clutter your script with unnecessary remarks like <code># Add 1 to variable<\/code> for <code>$i += 1<\/code>.<\/li>\n<li><strong>Use consistent style:<\/strong> Pick a format for your comments\u2014full sentences, punctuation, capitalization\u2014and stick to it throughout your scripts.<\/li>\n<li><strong>Update outdated comments:<\/strong> When modifying code, make sure the accompanying comments reflect those changes accurately.<\/li>\n<\/ol>\n<h2>Advanced Tips<\/h2>\n<p>For more experienced scripters, here are some advanced tips to further enhance your use of PowerShell comments:<\/p>\n<ul>\n<li><strong>Use comment-based help:<\/strong> PowerShell supports comment-based documentation that can generate help content in the same style as built-in cmdlets. This is especially useful when sharing modules or functions.<\/li>\n<\/ul>\n<pre><code>function Get-SampleData {\n    &lt;#\n    .SYNOPSIS\n    Retrieves sample data from a local source.\n\n    .DESCRIPTION\n    This function simulates data retrieval for demonstration purposes.\n\n    .EXAMPLE\n    Get-SampleData\n    #&gt;\n    Write-Output \"Sample Data\"\n}<\/code><\/pre>\n<ul>\n<li><strong>Temporarily disable code:<\/strong> Use multi-line comments to comment out entire sections of code during testing or debugging.<\/li>\n<li><strong>Use TODO and NOTE tags:<\/strong> Add <code># TODO:<\/code> or <code># NOTE:<\/code> prefixes to stand out in code reviews or script audits.<\/li>\n<\/ul>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"608\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/black-and-gray-laptop-displaying-codes-powershell-scripting-best-practices-documentation.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/black-and-gray-laptop-displaying-codes-powershell-scripting-best-practices-documentation.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/black-and-gray-laptop-displaying-codes-powershell-scripting-best-practices-documentation-300x169.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/black-and-gray-laptop-displaying-codes-powershell-scripting-best-practices-documentation-1024x576.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/black-and-gray-laptop-displaying-codes-powershell-scripting-best-practices-documentation-768x432.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Common Mistakes to Avoid<\/h2>\n<p>Avoid these common pitfalls when using comments in PowerShell:<\/p>\n<ul>\n<li><strong>Over-commenting:<\/strong> Too many comments can be just as confusing as too few. Don\u2019t explain every single line unless absolutely necessary.<\/li>\n<li><strong>Misleading comments:<\/strong> Always keep comments in sync with code changes to avoid confusion or errors.<\/li>\n<li><strong>No comments:<\/strong> The classic rookie mistake. Even if you&#8217;re the sole user of your script, future-you will appreciate the guidance.<\/li>\n<\/ul>\n<h2>Final Thoughts<\/h2>\n<p>Commenting is both an art and a discipline. When used wisely, comments elevate your PowerShell scripts from simple functional tools to professional-grade solutions. They make your scripts not just work well, but also <em>communicate<\/em> well\u2014fostering understanding, collaboration, and maintainability. So next time you sit down to script, take a few extra moments to comment thoughtfully. Your team\u2014and your future self\u2014will thank you!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PowerShell is a powerful scripting language and command-line shell designed for task automation and configuration management. While its capabilities are vast, one critical but often overlooked aspect of writing clean &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"PowerShell Comments: Syntax, Best Practices, and Tips\" class=\"read-more button\" href=\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#more-10078\" aria-label=\"Read more about PowerShell Comments: Syntax, Best Practices, and Tips\">Read more<\/a><\/p>\n","protected":false},"author":88,"featured_media":10080,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[495],"tags":[],"class_list":["post-10078","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PowerShell Comments: Syntax, Best Practices, and Tips - Save the Video Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PowerShell Comments: Syntax, Best Practices, and Tips - Save the Video Blog\" \/>\n<meta property=\"og:description\" content=\"PowerShell is a powerful scripting language and command-line shell designed for task automation and configuration management. While its capabilities are vast, one critical but often overlooked aspect of writing clean ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/\" \/>\n<meta property=\"og:site_name\" content=\"Save the Video Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-19T00:28:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-19T00:36:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jonathan Dough\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan Dough\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/\"},\"author\":{\"name\":\"Jonathan Dough\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700\"},\"headline\":\"PowerShell Comments: Syntax, Best Practices, and Tips\",\"datePublished\":\"2025-08-19T00:28:21+00:00\",\"dateModified\":\"2025-08-19T00:36:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/\"},\"wordCount\":578,\"publisher\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/\",\"url\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/\",\"name\":\"PowerShell Comments: Syntax, Best Practices, and Tips - Save the Video Blog\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg\",\"datePublished\":\"2025-08-19T00:28:21+00:00\",\"dateModified\":\"2025-08-19T00:36:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage\",\"url\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg\",\"contentUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg\",\"width\":1080,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/savethevideo.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PowerShell Comments: Syntax, Best Practices, and Tips\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#website\",\"url\":\"https:\/\/savethevideo.net\/blog\/\",\"name\":\"Save the Video Blog\",\"description\":\"Everything you need to know about videos\",\"publisher\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/savethevideo.net\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\",\"name\":\"Save the Video Blog\",\"url\":\"https:\/\/savethevideo.net\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png\",\"contentUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png\",\"width\":500,\"height\":119,\"caption\":\"Save the Video Blog\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700\",\"name\":\"Jonathan Dough\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g\",\"caption\":\"Jonathan Dough\"},\"url\":\"https:\/\/savethevideo.net\/blog\/author\/jonathand\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PowerShell Comments: Syntax, Best Practices, and Tips - Save the Video Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/","og_locale":"en_US","og_type":"article","og_title":"PowerShell Comments: Syntax, Best Practices, and Tips - Save the Video Blog","og_description":"PowerShell is a powerful scripting language and command-line shell designed for task automation and configuration management. While its capabilities are vast, one critical but often overlooked aspect of writing clean ... Read more","og_url":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/","og_site_name":"Save the Video Blog","article_published_time":"2025-08-19T00:28:21+00:00","article_modified_time":"2025-08-19T00:36:49+00:00","og_image":[{"width":1080,"height":720,"url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg","type":"image\/jpeg"}],"author":"Jonathan Dough","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan Dough","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#article","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/"},"author":{"name":"Jonathan Dough","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700"},"headline":"PowerShell Comments: Syntax, Best Practices, and Tips","datePublished":"2025-08-19T00:28:21+00:00","dateModified":"2025-08-19T00:36:49+00:00","mainEntityOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/"},"wordCount":578,"publisher":{"@id":"https:\/\/savethevideo.net\/blog\/#organization"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/","url":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/","name":"PowerShell Comments: Syntax, Best Practices, and Tips - Save the Video Blog","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg","datePublished":"2025-08-19T00:28:21+00:00","dateModified":"2025-08-19T00:36:49+00:00","breadcrumb":{"@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#primaryimage","url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg","contentUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting.jpg","width":1080,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/savethevideo.net\/blog\/powershell-comments-syntax-best-practices-and-tips\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/savethevideo.net\/blog\/"},{"@type":"ListItem","position":2,"name":"PowerShell Comments: Syntax, Best Practices, and Tips"}]},{"@type":"WebSite","@id":"https:\/\/savethevideo.net\/blog\/#website","url":"https:\/\/savethevideo.net\/blog\/","name":"Save the Video Blog","description":"Everything you need to know about videos","publisher":{"@id":"https:\/\/savethevideo.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/savethevideo.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/savethevideo.net\/blog\/#organization","name":"Save the Video Blog","url":"https:\/\/savethevideo.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png","contentUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png","width":500,"height":119,"caption":"Save the Video Blog"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700","name":"Jonathan Dough","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g","caption":"Jonathan Dough"},"url":"https:\/\/savethevideo.net\/blog\/author\/jonathand\/"}]}},"_links":{"self":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10078","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/users\/88"}],"replies":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/comments?post=10078"}],"version-history":[{"count":1,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10078\/revisions"}],"predecessor-version":[{"id":10091,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10078\/revisions\/10091"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media\/10080"}],"wp:attachment":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media?parent=10078"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/categories?post=10078"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/tags?post=10078"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}