{"id":17373,"date":"2026-03-09T12:18:03","date_gmt":"2026-03-09T06:48:03","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=17373"},"modified":"2026-03-09T12:18:07","modified_gmt":"2026-03-09T06:48:07","slug":"chown-command-in-linux","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/chown-command-in-linux","title":{"rendered":"Chown Command in Linux Explained With Examples in 2026"},"content":{"rendered":"\n<p><strong>The chown command in Linux<\/strong> changes the owner and group of files and directories. Its basic syntax is: <code>chown [OPTIONS] OWNER[:GROUP] FILE...<\/code>. Use it to transfer ownership, fix permission issues, and align files with service accounts. <\/p>\n\n\n\n<p>Common options include <code>-R<\/code> (recursive), <code>-h<\/code> (affect symlinks), and <code>--reference<\/code> to copy ownership from another file. In this guide, we explain the chown command in Linux with practical examples, safe usage patterns, and troubleshooting tips. <\/p>\n\n\n\n<p>You\u2019ll learn how to change file ownership, when to use user:group combinations, how to apply recursive changes safely, and how chown compares to chmod and chgrp. This is the same playbook our system engineers use on production servers at YouStable.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"understanding-ownership-in-linux\">Understanding Ownership in Linux<\/h2>\n\n\n\n<p>Every file and directory in Linux has two ownership attributes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Owner (user):<\/strong> The account that owns the file.<\/li>\n\n\n\n<li><strong>Group:<\/strong> A group that can share access among multiple users.<\/li>\n<\/ul>\n\n\n\n<p>Ownership interacts with permissions (read, write, execute) to decide who can read or modify data. The root user can change ownership of any file, while regular users can usually change ownership only of their own files to a group they\u2019re in (and even that is distro policy dependent).<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"chown-syntax-and-options\">Chown Syntax and Options<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"basic-syntax\">Basic syntax<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>chown &#91;OPTIONS] OWNER&#91;:GROUP] FILE...\nchown &#91;OPTIONS] :GROUP FILE...\nchown &#91;OPTIONS] --reference=RFILE FILE...<\/code><\/pre>\n\n\n\n<p><strong>Key points:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Change owner only:<\/strong> <code>chown alice file.txt<\/code><\/li>\n\n\n\n<li><strong>Change group only:<\/strong> <code>chown :developers file.txt<\/code><\/li>\n\n\n\n<li><strong>Change both:<\/strong> <code>chown alice:developers file.txt<\/code><\/li>\n\n\n\n<li><strong>Numeric IDs:<\/strong> <code>chown 1001:1002 file.txt<\/code> (uses UID:GID)<\/li>\n\n\n\n<li><strong>Separator:<\/strong> Prefer colon (<code>:<\/code>). A dot (<code>.<\/code>) may work on some systems but can be ambiguous.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"common-options-youll-actually-use\">Common options you\u2019ll actually use<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-R<\/code>: Recurse into directories.<\/li>\n\n\n\n<li><strong><code>-h<\/code>:<\/strong> Affect a symlink itself rather than the target.<\/li>\n\n\n\n<li><strong><code>-H<\/code>\/<code>-L<\/code>\/<code>-P<\/code> (with <code>-R<\/code>): <\/strong>Control symlink following. Default is <code>-P<\/code> (never follow).<\/li>\n\n\n\n<li><strong><code>-c<\/code>: <\/strong>Report changes only.<\/li>\n\n\n\n<li><strong><code>-v<\/code>:<\/strong> Verbose; report every file processed.<\/li>\n\n\n\n<li><code>--from=CURRENT_OWNER:CURRENT_GROUP<\/code>: Only change if current ownership matches (useful for safe scripts).<\/li>\n\n\n\n<li><code>--reference=RFILE<\/code>: Copy owner:group from another file.<\/li>\n\n\n\n<li><code>--preserve-root<\/code>: Fail if attempting recursive operation on <code>\/<\/code> (safety net; recommended in scripts).<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"quick-chown-examples\">Quick chown Examples<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"1-change-owner-only\">1) Change owner only<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Make alice the owner of a file\nsudo chown alice report.pdf\n\n# Verify\nls -l report.pdf\n# -rw-r--r-- 1 alice staff 12345 Jan  9 10:00 report.pdf<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"2-change-group-only\">2) Change group only<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Assign group developers while keeping current owner\nsudo chown :developers app.log\n\n# Or set group recursively for a directory\nsudo chown -R :www-data \/var\/www\/site\/logs<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"3-change-both-owner-and-group\">3) Change both owner and group<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Set owner:group in one command\nsudo chown alice:developers app.py\n\n# Use numeric IDs if names are inconsistent across servers\nsudo chown 1001:1002 \/data\/shared.bin<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"4-recursive-ownership-for-a-project\">4) Recursive ownership for a project<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Recursively assign project to a service account\nsudo chown -R deploy:deploy \/srv\/project\n\n# Show only changed files (less noisy than -v)\nsudo chown -Rc deploy:deploy \/srv\/project<\/code><\/pre>\n\n\n\n<p>Tip: To avoid accidental changes, target specific directories (e.g., <code>\/srv\/project\/www<\/code>) and use <code>-c<\/code> to audit what changed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"5-dont-follow-symlinks-when-recursing\">5) Don\u2019t follow symlinks when recursing<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Default with -R is -P (do not follow symlinks)\nsudo chown -RP appuser:appgroup \/opt\/app\n\n# If you specifically want to change the symlink itself\nsudo chown -h appuser:appgroup \/opt\/app\/current<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"6-match-ownership-from-another-file\">6) Match ownership from another file<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Make config.json match ownership of template.json\nsudo chown --reference=\/etc\/app\/template.json \/etc\/app\/config.json<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"7-change-ownership-conditionally-with-from\">7) Change ownership conditionally with &#8211;from<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Only change files that are currently owned by root:root\nsudo chown -R --from=root:root appuser:appgroup \/var\/lib\/myapp<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"real-world-use-cases-and-best-practices\">Real World Use Cases and Best Practices<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"wordpress-and-web-hosting\">WordPress and web hosting<\/h3>\n\n\n\n<p>On LAMP\/LEMP servers, your web server user (often <code>www-data<\/code> on Debian\/Ubuntu or <code>apache<\/code> on CentOS\/RHEL) needs ownership or group access to write content such as uploads and cache. A common pattern:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Give the web server ownership of just the writable areas\nsudo chown -R www-data:www-data \/var\/www\/site\/wp-content\/uploads\nsudo chown -R www-data:www-data \/var\/www\/site\/wp-content\/cache<\/code><\/pre>\n\n\n\n<p>Avoid giving the entire site to the web server account, which can increase risk if a plugin is compromised. Limit ownership to files that must be written at runtime.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"multi-user-and-shared-servers\">Multi user and shared servers<\/h3>\n\n\n\n<p>Use groups to control collaborative directories. Assign each project to a dedicated group and add members accordingly. Combine chown with ACLs for finer control when needed.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Create a shared directory owned by group \"design\"\nsudo mkdir -p \/share\/design\nsudo chown root:design \/share\/design\nsudo chmod 2775 \/share\/design   # setgid bit: preserve group on new files<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"containers-mounts-and-uid-mapping\">Containers, mounts, and UID mapping<\/h3>\n\n\n\n<p>In Docker\/Podman, the user inside the container might map to a different host UID. If files appear owned by a random number on the host, it\u2019s likely a UID mismatch. Align with numeric IDs or use volume options that map ownership correctly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"safety-checklist-before-using-chown-r\">Safety checklist before using chown -R<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Target the narrowest path possible; never run <code>chown -R<\/code> on <code>\/<\/code> or system directories.<\/li>\n\n\n\n<li>Prefer <code>-c<\/code> to see changes and review output.<\/li>\n\n\n\n<li>Consider <code>--from=current<\/code> to avoid touching unexpected files.<\/li>\n\n\n\n<li>Avoid following symlinks unless you intend to (<code>-P<\/code> is default; keep it).<\/li>\n\n\n\n<li>In scripts, include <code>--preserve-root<\/code> to prevent catastrophic mistakes.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"troubleshooting-chown-errors\">Troubleshooting chown Errors<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Operation not permitted:<\/strong> Use <code>sudo<\/code> or run as root. On network filesystems (NFS with root_squash) or Windows formatted drives (NTFS\/exFAT\/FAT), ownership changes may be restricted or ignored. You may need mount options like <code>uid=<\/code> and <code>gid=<\/code>, or change on the server side.<\/li>\n\n\n\n<li><strong>Invalid user\/group:<\/strong> Ensure the account exists (<code>id alice<\/code>) and the group is created (<code>getent group developers<\/code>).<\/li>\n\n\n\n<li><strong>File is immutable:<\/strong> If <code>chattr +i<\/code> is set, remove it with <code>sudo chattr -i file<\/code> before chown.<\/li>\n\n\n\n<li><strong>Symlink confusion:<\/strong> Use <code>-h<\/code> to change the link itself; otherwise chown affects the target.<\/li>\n\n\n\n<li><strong>No such file or directory:<\/strong> Check paths, quoting, and globbing. Use absolute paths in scripts.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"chown-vs-chmod-vs-chgrp\">chown vs chmod vs chgrp<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>chown:<\/strong> Changes the owner and optionally the group of files\/directories.<\/li>\n\n\n\n<li><strong>chgrp:<\/strong> Changes the group only (equivalent to <code>chown :group<\/code>).<\/li>\n\n\n\n<li><strong>chmod:<\/strong> Changes permission bits (read\/write\/execute) and special bits (setuid, setgid, sticky).<\/li>\n<\/ul>\n\n\n\n<p>Ownership (chown\/chgrp) answers \u201cwho\u201d owns the file. Permissions (chmod) answer \u201cwhat\u201d actions are allowed. Both are needed for secure, functional systems.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"security-notes-most-admins-miss\">Security Notes Most Admins Miss<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>SELinux\/AppArmor:<\/strong> chown does not <a href=\"https:\/\/www.youstable.com\/blog\/fix-selinux-on-linux-server\">fix SELinux<\/a> labels. After moving or restoring files on SELinux-enabled systems, run <code>restorecon -R \/path<\/code> or adjust contexts with <code>chcon<\/code>.<\/li>\n\n\n\n<li><strong>Setuid\/setgid implications:<\/strong> Changing owners on executables with special bits can alter security behavior. Audit with <code>find \/path -perm -4000 -o -perm -2000<\/code>.<\/li>\n\n\n\n<li><strong>Backups:<\/strong> Preserve ownership in backups with tools like <code>rsync -a<\/code> or <code>tar --same-owner<\/code> (when extracting as root).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"advanced-patterns-with-find-plus-chown\">Advanced Patterns with find + chown<\/h2>\n\n\n\n<p>For granular control (e.g., exclude directories, target only files), combine find and chown:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Only files, exclude cache\nfind \/var\/www\/site -type f -not -path \"*\/cache\/*\" -exec chown app:app {} +\n\n# Only directories\nfind \/data\/shared -type d -exec chown root:designers {} +<\/code><\/pre>\n\n\n\n<p>Use <code>-print<\/code> first to preview the match set before executing chown.<\/p>\n\n\n\n<p class=\"has-ast-global-color-1-background-color has-background\"><strong>Also take a look at these commands<br>\u2022 <a href=\"https:\/\/www.youstable.com\/blog\/chocolatey-install-command\">Chocolatey Install Command Explained With Example<\/a><br>\u2022 <a href=\"https:\/\/www.youstable.com\/blog\/echo-command-in-linux\">Echo Command in Linux Explained With Examples<\/a><br>\u2022 <a href=\"https:\/\/www.youstable.com\/blog\/nmap-command-in-linux\">NMAP Command in Linux | Ultimate Network Scanning Guide<\/a><br>\u2022 <a href=\"https:\/\/www.youstable.com\/blog\/head-command-in-linux\">Head Command in linux | Complete User Guide with Examples<\/a><\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs\">FAQs<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1768045106929\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"what-does-chown-do-in-linux\">What does chown do in Linux?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>chown changes the owner and optionally the group of files and directories. It is essential for aligning file ownership with user accounts and services, ensuring the right processes can read\/write data securely.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768046348154\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-change-owner-and-group-at-the-same-time\">How do I change owner and group at the same time?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use <code>chown OWNER:GROUP FILE<\/code>. Example: <code>sudo chown alice:developers project.zip<\/code>. To apply recursively: <code>sudo chown -R alice:developers \/path\/to\/dir<\/code>.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768046360733\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"whats-the-difference-between-chown-chgrp-and-chmod\">What\u2019s the difference between chown, chgrp, and chmod?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>chown sets the owner (and optionally the group). chgrp sets the group only. chmod sets permission bits. You\u2019ll often use chown\/chgrp to define ownership and chmod to define access rights.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768046369493\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"why-does-chown-say-operation-not-permitted\">Why does chown say \u201cOperation not permitted\u201d?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You might lack privileges (use sudo), the filesystem might not support POSIX ownership (e.g., FAT\/exFAT), an NFS export might squash root, or the file could be immutable (<code>chattr +i<\/code>). Check mounts, permissions, and file attributes.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768046377404\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-chown-without-following-symlinks\">How do I chown without following symlinks?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>By default, <code>chown -R<\/code> uses <code>-P<\/code> (do not follow symlinks). To explicitly ensure this, run <code>chown -RP owner:group path<\/code>. To change the symlink itself, add <code>-h<\/code>.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p><strong>The chown command in Linux is<\/strong> fundamental for secure, reliable servers. Mastering owner:group syntax, recursive flags, and symlink behavior will prevent outages and permissions headaches. <\/p>\n\n\n\n<p>If you prefer not to wrestle with file ownership on production, <strong><a href=\"https:\/\/www.youstable.com\/blog\/managed-vps-hosting-in-india-for-e-commerce-websites\">YouStable\u2019s managed VPS<\/a><\/strong> and <strong><a href=\"https:\/\/www.youstable.com\/blog\/best-dedicated-server-in-india\">dedicated hosting<\/a><\/strong> can preconfigure secure users, groups, and permissions tailored to your stack.<\/p>\n\n\n\n<p>Need help migrating or fixing broken permissions after a move? Our engineers can audit your ownership and harden your environment so your applications run safely and smoothly.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The chown command in Linux changes the owner and group of files and directories. Its basic syntax is: chown [OPTIONS] [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":18634,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[350],"tags":[],"class_list":["post-17373","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/01\/Chown-Command-in-Linux.jpg","author_info":{"display_name":"Sanjeet Chauhan","author_link":"https:\/\/www.youstable.com\/blog\/author\/sanjeet"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17373","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=17373"}],"version-history":[{"count":6,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17373\/revisions"}],"predecessor-version":[{"id":19328,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17373\/revisions\/19328"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/18634"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=17373"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=17373"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=17373"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}