# Policy Object Documentation
## Overview
The policy object represents a store policy, such as privacy or return policies, available through Shopify's Liquid API.
## Properties
| Property | Type | Description |
|----------|------|-------------|
| `body` | string | "The content of the policy" |
| `id` | string | "The ID of the policy" |
| `title` | string | "The title of the policy" |
| `url` | string | "The relative URL of the policy" |
## Sample Data
```json
{
"body": "<p>We have a 30-day return policy, which means you have 30 days after receiving your item to request a return. ...</p>",
"id": 23805034561,
"title": "Refund policy",
"url": "/policies/refund-policy"
}
```
## Related Resources
For information on configuring these policies in your Shopify store, refer to the checkout settings documentation for [refunds, privacy, and terms of service](https://help.shopify.com/manual/checkout-settings/refund-privacy-tos).
---
**Source:** [Shopify Liquid API Documentation](https://shopify.dev/docs/api/liquid/objects/policy)