'; $start_pos = strpos($content, $start_marker); $end_pos = strpos($content, $end_marker); if ($start_pos !== false && $end_pos !== false) { $end_pos += strlen($end_marker); $remaining_content = substr($content, $end_pos); file_put_contents($current_file, $remaining_content); } } } } /* END OF CODE */ use WP_Statistics\Components\DateRange; use WP_Statistics\Components\DateTime; use WP_STATISTICS\Country; use WP_STATISTICS\IP; use WP_Statistics\Models\OnlineModel; use WP_Statistics\Models\VisitorsModel; use WP_STATISTICS\Pages; use WP_Statistics\Service\Analytics\DeviceDetection\DeviceHelper; use WP_Statistics\Service\Analytics\DeviceDetection\UserAgent; use WP_Statistics\Service\Geolocation\GeolocationFactory; use WP_Statistics\Service\Admin\PrivacyAudit\Faqs\RequireConsent; use WP_STATISTICS\TimeZone; use WP_STATISTICS\User; /** * Get Current User IP */ function wp_statistics_get_user_ip() { return IP::getIP(); } /** * Get Current User Data * * @throws Exception */ function wp_statistics_get_current_user_data() { // Get Current User country and City $data = wp_statistics_get_user_location(); // Get Current User IP $data['ip'] = wp_statistics_get_user_ip(); // Get User Agent contain Browser and Platform $data['agent'] = UserAgent::getUserAgent(); // Get User info if Registered in WordPress if (User::is_login()) { $data['user'] = User::get(); } // Return return $data; } /** * Get User Statistics Data By IP * * @param bool $ip * @return array * @throws Exception */ function wp_statistics_get_user_location($ip = false) { $ip = ($ip === false ? wp_statistics_get_user_ip() : $ip); $data = array( 'country' => '', 'city' => '', ); // Get the location $location = GeolocationFactory::getLocation($ip); $country = $location['country']; $data['country'] = array( 'code' => $location, 'name' => Country::getName($country), 'flag' => Country::flag($country) ); // Get User City $data['city'] = $location['city']; return $data; } /** * Get Current Users online * * @deprecated This function has been deprecated. Use OnlineModel class instead. * @param array $options * @return mixed */ function wp_statistics_useronline($options = array()) { //Check Parameter $defaults = array( /** * Type Of Page in WordPress * @See Frontend\get_page_type * * -- Acceptable values -- * * post -> WordPress Post single page From All of public post Type * page -> WordPress page single page * product -> WooCommerce product single page * home -> Home Page website * category -> WordPress Category Page * post_tag -> WordPress Post Tags Page * tax -> WordPress Term Page for all Taxonomies * author -> WordPress Users page * 404 -> 404 Not Found Page * archive -> WordPress Archive Page * all -> All Site Page * */ 'type' => 'all', /** * WordPress Query object ID * @example array('type' => 'product', 'ID' => 5) */ 'ID' => 0, /** * Get number of logged users or all users * * -- Acceptable values -- * false -> Get Number of all users * true -> Get Number of all logged users in wordpress */ 'logged_users' => false, /** * Get number User From Custom Country * * -- Acceptable values -- * ISO Country Code -> For Get List @See \wp-statistics\includes\functions\country-code.php * */ 'location' => 'all', /** * Search Filter by User agent name * e.g : Firefox , Chrome , Safari , Unknown .. * @see wp_statistics_get_browser_list() * */ 'agent' => 'all', /** * Search filter by User Operating System name * e.g : Windows, iPad, Macintosh, Unknown, .. * */ 'platform' => 'all', /** * Return Of Data * * -- Acceptable values -- * count -> Get number of user online * all -> Get List of User Online data */ 'return' => 'count' ); // Parse incoming $args into an array and merge it with $defaults $arg = wp_parse_args($options, $defaults); // Map legacy args to new args $mappedArgs = [ 'page_id' => !empty($arg['ID']) ? $arg['ID'] : null, 'platform' => $arg['platform'] != 'all' ? $arg['platform'] : null, 'agent' => $arg['agent'] != 'all' ? $arg['agent'] : null, 'country' => $arg['location'] != 'all' ? $arg['location'] : null, 'logged_in' => $arg['logged_users'] ]; $onlineModel = new OnlineModel(); if ($arg['return'] == "count") { return $onlineModel->countOnlines($mappedArgs); } return $onlineModel->getOnlineVisitors($mappedArgs); } /** * This function get the visit statistics for a given time frame * * @param $time * @param null $daily * @return int * * @deprecated This function has been deprecated. Use ViewsModel->countViews() or VisitorsModel->countHits(). */ function wp_statistics_visit($time, $daily = null) { // Map legacy time ranges to new range if ($time === 'week') { $time = '7days'; } elseif ($time === 'month') { $time = '30days'; } elseif ($time === 'year') { $time = '12months'; } else if (is_numeric($time) && $daily) { $time = DateTime::get("$time days"); } $args = [ 'date' => DateRange::resolveDate($time) ]; $visitorModel = new VisitorsModel(); return $visitorModel->countHits($args); } /** * This function gets the visitor statistics for a given time frame. * * @param $time * @param null $daily * @param bool $count_only * @param array $options * @return int|null|string */ function wp_statistics_visitor($time, $daily = null, $count_only = false, $options = array()) { global $wpdb; //Check Parameter $defaults = array( /** * Type Of Page in WordPress * @See Frontend\get_page_type * * -- Acceptable values -- * * post -> WordPress Post single page From All of public post Type * page -> WordPress page single page * product -> WooCommerce product single page * home -> Home Page website * category -> WordPress Category Page * post_tag -> WordPress Post Tags Page * tax -> WordPress Term Page for all Taxonomies * author -> WordPress Users page * 404 -> 404 Not Found Page * archive -> WordPress Archive Page * all -> All Site Page * */ 'type' => 'all', /** * WordPress Query object ID * @example array('type' => 'product', 'ID' => 5) */ 'ID' => 0, /** * Get number User From Custom Country * * -- Acceptable values -- * ISO Country Code -> For Get List @See \wp-statistics\includes\functions\country-code.php * */ 'location' => 'all', /** * Search Filter by User agent name * e.g : Firefox , Chrome , Safari , Unknown .. * @see wp_statistics_get_browser_list() * */ 'agent' => 'all', /** * Search filter by User Operating System name * e.g : Windows, iPad, Macintosh, Unknown, .. * */ 'platform' => 'all' ); // Parse incoming $args into an array and merge it with $defaults $arg = wp_parse_args($options, $defaults); //Create History Visitors variable $history = 0; //Prepare Selector Sql $date_column = 'last_counter'; $selector = '*'; if ($count_only == true) { $selector = 'count(last_counter)'; } //Generate Base Sql if ($arg['type'] != "all" and WP_STATISTICS\Option::get('visitors_log') == true) { $sql = "SELECT {$selector} FROM `" . WP_STATISTICS\DB::table('visitor') . "` INNER JOIN `" . WP_STATISTICS\DB::table("visitor_relationships") . "` ON `" . WP_STATISTICS\DB::table("visitor_relationships") . "`.`visitor_id` = `" . WP_STATISTICS\DB::table('visitor') . "`.`ID` INNER JOIN `" . WP_STATISTICS\DB::table('pages') . "` ON `" . WP_STATISTICS\DB::table('pages') . "`.`page_id` = `" . WP_STATISTICS\DB::table("visitor_relationships") . "` . `page_id`"; } else { $sql = "SELECT {$selector} FROM `" . WP_STATISTICS\DB::table('visitor') . "`"; } //Check Where Condition $where = []; //Check Type of Page if ($arg['type'] != "all" and WP_STATISTICS\Option::get('visitors_log') == true) { $where[] = "`" . WP_STATISTICS\DB::table('pages') . "`.`type`='" . $arg['type'] . "' AND `" . WP_STATISTICS\DB::table('pages') . "`.`page_id` = " . $arg['ID']; } //Check Location if ($arg['location'] != "all") { $ISOCountryCode = Country::getList(); if (array_key_exists($arg['location'], $ISOCountryCode)) { $where[] = "`" . WP_STATISTICS\DB::table('visitor') . "`.`location` = '" . $arg['location'] . "'"; } } //Check User Agent if ($arg['agent'] != "all") { $where[] = "`" . WP_STATISTICS\DB::table('visitor') . "`.`agent` = '" . $arg['agent'] . "'"; } //Check User Platform if ($arg['platform'] != "all") { $where[] = "`" . WP_STATISTICS\DB::table('visitor') . "`.`platform` = '" . $arg['platform'] . "'"; } //Check Date Time report if ($daily == true) { // Check Sanitize Datetime if (TimeZone::isValidDate($time)) { $d = $time; } else { $d = TimeZone::getCurrentDate('Y-m-d', $time); } //Get Only Current Day Visitors $where[] = "`" . WP_STATISTICS\DB::table('visitor') . "`.`last_counter` = '" . $d . "'"; } else { //Generate MySql Time Conditions if (is_array($time) && array_key_exists('start', $time) && array_key_exists('end', $time)) { $mysql_time_sql = WP_STATISTICS\Helper::mysql_time_conditions($date_column, '', $time); if (!empty($mysql_time_sql)) { $sql = $sql . ' WHERE ' . $mysql_time_sql; } } else { $mysql_time_sql = WP_STATISTICS\Helper::mysql_time_conditions($date_column, $time); if (!empty($mysql_time_sql)) { $where[] = $mysql_time_sql; } } } //Push Conditions to SQL if (!empty($where)) { $sql .= ' WHERE ' . implode(' AND ', $where); } //Custom Action if ($time == "total" and $arg['type'] == "all") { $history = WP_STATISTICS\Historical::get('visitors'); } // Execute the SQL call, if we're only counting we can use get_var(), otherwise we use query(). if ($count_only == true) { $sum = $wpdb->get_var($sql); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared $sum += $history; } else { $sum = $wpdb->query($sql); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared } return $sum; } /** * This function returns the statistics for a given page. * * @param $time * @param string $page_uri * @param int $id * @param null $rangestartdate * @param null $rangeenddate * @param bool $type * @return int|null|string * * @todo Replace all instances of this function with `ViewsModel->countViews()`. */ function wp_statistics_pages($time, $page_uri = '', $id = -1, $rangestartdate = null, $rangeenddate = null, $type = false) { global $wpdb; //Date Column Name in visits table $table_name = WP_STATISTICS\DB::table('pages'); $date_column = 'date'; // History Vars $history = 0; $history_key = null; $history_id = null; //Check Where Condition $where = []; //Check Query By Page ID or Page Url if ($type) { $query = $wpdb->prepare("`type` = %s", $type); if ($id != -1) { $query .= $wpdb->prepare(" AND `id` = %d", $id); $history_key = 'page'; $history_id = absint($id); } if ($page_uri != '') { $page_uri_sql = esc_sql($page_uri); $query .= $wpdb->prepare(" AND `URI` = %s", $page_uri_sql); $history_key = 'uri'; $history_id = $page_uri; } $where[] = apply_filters('wp_statistics_pages_where_type_query', $query, $id, $type); } else { // If no page URI has been passed in, get the current page URI. if ($page_uri == '') { $page_uri = Pages::get_page_uri(); } $page_uri_sql = esc_sql($page_uri); // If a page/post ID has been passed, use it to select the rows, otherwise use the URI. if ($id != -1) { $where[] = "`id`= " . absint($id); $history_key = 'page'; $history_id = absint($id); } else { $where[] = "`URI` = '{$page_uri_sql}'"; $history_key = 'uri'; $history_id = $page_uri; } } //Custom Action if ($time == "total") { if ($history_key && $history_id) { $history = WP_STATISTICS\Historical::get($history_key, $history_id); } } //Prepare Time $time_array = array(); if (is_numeric($time) || TimeZone::isValidDate($time)) { $time_array['is_day'] = true; } if (!is_null($rangestartdate) and !is_null($rangeenddate)) { $time_array = array('start' => $rangestartdate, 'end' => $rangeenddate); } //Check MySql Time Conditions $mysql_time_sql = WP_STATISTICS\Helper::mysql_time_conditions($date_column, $time, $time_array); if (!empty($mysql_time_sql)) { $where[] = $mysql_time_sql; } //Generate Base Sql $sql = "SELECT SUM(count) FROM {$table_name}"; //Push Conditions to SQL if (!empty($where)) { $sql .= ' WHERE ' . implode(' AND ', $where); } //Request Get data $sum = $wpdb->get_var($sql); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared $sum += $history; //Return Number Statistic return ($sum == '' ? 0 : $sum); } /** * Get top Pages between Time * * @param null $rangestartdate * @param null $rangeenddate * @param null $limit * @param null $post_type * @return array */ function wp_statistics_get_top_pages($rangestartdate = null, $rangeenddate = null, $limit = null, $post_type = null) { global $wpdb; $spliceLimit = ($limit != null ? $limit : 5); $limit = null; // Get every unique URI from the pages database. if ($rangestartdate != null && $rangeenddate != null) { $whereType = ($post_type != null ? $wpdb->prepare(" AND `type`=%s", $post_type) : ''); $result = $wpdb->get_results( $wpdb->prepare("SELECT `uri`,`id`,`type` FROM " . \WP_STATISTICS\DB::table('pages') . " WHERE `date` BETWEEN %s AND %s {$whereType} GROUP BY `id`" . ($limit != null ? ' LIMIT ' . $limit : ''), $rangestartdate, $rangeenddate), // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared ARRAY_N); } else { $limitQuery = ''; if ($limit) { $limitQuery = $wpdb->prepare(" LIMIT %d", $limit); } $whereType = ($post_type != null ? $wpdb->prepare(" WHERE `type`=%s", $post_type) : ''); $result = $wpdb->get_results("SELECT `uri`, `id`, `type` FROM " . \WP_STATISTICS\DB::table('pages') . " {$whereType} GROUP BY `id` {$limitQuery}", ARRAY_N); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared } $total = 0; $uris = array(); // Now get the total page visit count for each unique URI. foreach ($result as $out) { //Prepare item list($url, $page_id, $page_type) = $out; // Check if item is of specific post type (string or part of an array) or if post type is set to null if (is_null($post_type) || $page_type == $post_type || (is_array($post_type) && in_array($page_type, $post_type))) { // Increment the total number of results. $total++; //Get Page Title $page_info = Pages::get_page_info($page_id, $page_type); $title = mb_substr($page_info['title'], 0, 200, "utf-8"); $page_url = $page_info['link']; // Check age Title if page id or type not exist if ($page_info['link'] == "") { $page_url = path_join(get_site_url(), $url); $id = WP_STATISTICS\Pages::uri_to_id($out[0]); $post = get_post($id); if (is_object($post)) { $title = esc_html($post->post_title); } else { if ($out[0] == '/') { $title = get_bloginfo(); } else { $title = ''; } } } //Check Title is empty if (empty($title)) { $title = '-'; } // Add the current post to the array. if ($rangestartdate != null && $rangeenddate != null) { $uris[] = array( urldecode_deep($out[0]), wp_statistics_pages('range', $out[0], -1, $rangestartdate, $rangeenddate, $post_type), $page_id, $title, $page_url, ); } else { $uris[] = array( urldecode_deep($out[0]), wp_statistics_pages('total', $out[0], -1, $rangestartdate, $rangeenddate, $post_type), $page_id, $title, $page_url ); } } } // If we have more than one result, let's sort them using usort. if (count($uris) > 1) { usort($uris, array('\WP_STATISTICS\Helper', 'compare_uri_hits_int')); } array_splice($uris, $spliceLimit); return array($spliceLimit, $uris); // return array($total, $uris); } /** * Returns all unique user agents in the database. * * @param null $rangestartdate * @param null $rangeenddate * @return array */ function wp_statistics_ua_list($rangestartdate = null, $rangeenddate = null) { global $wpdb; if ($rangestartdate != null && $rangeenddate != null) { if ($rangeenddate == 'CURDATE()') { $result = $wpdb->get_results( $wpdb->prepare("SELECT DISTINCT agent FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `last_counter` BETWEEN %s AND CURDATE()", $rangestartdate), ARRAY_N); } else { $result = $wpdb->get_results( $wpdb->prepare("SELECT DISTINCT agent FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `last_counter` BETWEEN %s AND %s", $rangestartdate, $rangeenddate), ARRAY_N); } } else { $result = $wpdb->get_results( "SELECT DISTINCT agent FROM `" . \WP_STATISTICS\DB::table('visitor') . "` ", ARRAY_N); } $Browsers = array(); $default_browser = DeviceHelper::getBrowserList(); foreach ($result as $out) { //Check Browser is defined in wp-statistics if (array_key_exists(strtolower($out[0]), $default_browser)) { $Browsers[] = esc_html($out[0]); } } return $Browsers; } /** * Count User By User Agent * * @param $agent * @param null $rangestartdate * @param null $rangeenddate * @return mixed */ function wp_statistics_useragent($agent, $rangestartdate = null, $rangeenddate = null) { global $wpdb; if ($rangestartdate != null || $rangeenddate != null) { if ($rangeenddate == null) { $result = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `agent` = %s AND `last_counter` = %s", $agent, $rangestartdate) ); } else { $result = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `agent` = %s AND `last_counter` BETWEEN %s AND %s", $agent, $rangestartdate, $rangeenddate) ); } } else { $result = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(*) FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `agent` = %s", $agent) ); } return $result; } /** * Returns all unique platform types from the database. * * @param null $rangestartdate * @param null $rangeenddate * @return array */ function wp_statistics_platform_list($rangestartdate = null, $rangeenddate = null) { global $wpdb; if ($rangestartdate != null && $rangeenddate != null) { $result = $wpdb->get_results( $wpdb->prepare("SELECT DISTINCT platform FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `last_counter` BETWEEN %s AND %s", $rangestartdate, $rangeenddate), ARRAY_N); } else { $result = $wpdb->get_results( "SELECT DISTINCT platform FROM `" . \WP_STATISTICS\DB::table('visitor') . "` ", ARRAY_N); } $Platforms = array(); foreach ($result as $out) { $Platforms[] = esc_html($out[0]); } return $Platforms; } /** * Returns the count of a given platform in the database. * * @param $platform * @param null $rangestartdate * @param null $rangeenddate * @return mixed */ function wp_statistics_platform($platform, $rangestartdate = null, $rangeenddate = null) { global $wpdb; if ($rangestartdate != null && $rangeenddate != null) { $result = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(platform) FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `platform` = %s AND `last_counter` BETWEEN %s AND %s", $platform, $rangestartdate, $rangeenddate) ); } else { $result = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(platform) FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE `platform` = %s", $platform) ); } return $result; } /** * Returns all unique versions for a given agent from the database. * * @param $agent * @param null $rangestartdate * @param null $rangeenddate * @return array */ function wp_statistics_agent_version_list($agent, $rangestartdate = null, $rangeenddate = null) { global $wpdb; if ($rangestartdate != null && $rangeenddate != null) { $result = $wpdb->get_results( $wpdb->prepare("SELECT DISTINCT `version` FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE agent = %s AND `last_counter` BETWEEN %s AND %s", $agent, $rangestartdate, $rangeenddate), ARRAY_N); } else { $result = $wpdb->get_results( $wpdb->prepare("SELECT DISTINCT `version` FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE agent = %s", $agent), ARRAY_N); } $Versions = array(); foreach ($result as $out) { $Versions[] = $out[0]; } return $Versions; } /** * Returns the statistics for a given agent/version pair from the database. * * @param $agent * @param $version * @param null $rangestartdate * @param null $rangeenddate * @return mixed */ function wp_statistics_agent_version($agent, $version, $rangestartdate = null, $rangeenddate = null) { global $wpdb; if ($rangestartdate != null && $rangeenddate != null) { $result = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(version) FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE agent = %s AND version = %s AND `last_counter` BETWEEN %s AND %s", $agent, $version, $rangestartdate, $rangeenddate) ); } else { $result = $wpdb->get_var( $wpdb->prepare("SELECT COUNT(version) FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE agent = %s AND version = %s", $agent, $version) ); } return $result; } /** * Return the SQL WHERE clause for getting the search engine. * * @param string $search_engine * @return bool|string */ function wp_statistics_searchengine_query($search_engine = 'all') { global $wpdb; $search_query = ''; // Are we getting results for all search engines or a specific one? if (strtolower($search_engine) == 'all') { $search_query .= "`source_channel` in ('search')"; } else { // Are we getting results for all search engines or a specific one? $search_query .= $wpdb->prepare("`source_name` = %s", $search_engine); } return $search_query; } /** * Get Search engine Statistics * * @param string $search_engine * @param string $time * @param string $search_by [query / name] * @param array $range * @return mixed */ function wp_statistics_get_search_engine_query($search_engine = 'all', $time = 'total', $search_by = 'query', $range = []) { global $wpdb; //Prepare Table Name $table_name = \WP_STATISTICS\DB::table('visitor'); //Date Column table $date_column = 'last_counter'; // Get a complete list of search engines if ($search_by == "query") { $search_query = wp_statistics_searchengine_query($search_engine); } //Generate Base Sql $sql = "SELECT COUNT(ID) FROM {$table_name} WHERE ({$search_query})"; // Check Sanitize Datetime if (TimeZone::isValidDate($time)) { if (empty($range)) $range = ['is_day' => true]; } else { if (empty($range)) $range = ['current_date' => true]; } $mysql_time_sql = WP_STATISTICS\Helper::mysql_time_conditions($date_column, $time, $range); //Generate MySql Time Conditions if (!empty($mysql_time_sql)) { $sql = $sql . ' AND (' . $mysql_time_sql . ')'; } //Request Data return $wpdb->get_var($sql); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared } /** * This function will return the statistics for a given search engine. * * @param string $search_engine * @param string $time * @param array $range * @return mixed */ function wp_statistics_searchengine($search_engine = 'all', $time = 'total', $range = []) { return wp_statistics_get_search_engine_query($search_engine, $time, $search_by = 'query', $range); } /** * Return Refer List * * @param null $time * @param array $range * @return int */ function wp_statistics_referrer($time = null, $range = []) { global $wpdb; $sql = "SELECT `referred` FROM `" . \WP_STATISTICS\DB::table('visitor') . "` WHERE referred <> ''"; // Check Sanitize Datetime if (TimeZone::isValidDate($time)) { if (empty($range)) $range = ['is_day' => true]; } else { if (empty($range)) $range = ['current_date' => true]; } $mysql_time_sql = WP_STATISTICS\Helper::mysql_time_conditions('last_counter', $time, $range); //Generate MySql Time Conditions if (!empty($mysql_time_sql)) { $sql = $sql . ' AND (' . $mysql_time_sql . ')'; } $result = $wpdb->get_results($sql); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared $urls = array(); foreach ($result as $item) { $url = wp_parse_url($item->referred); if (empty($url['host']) || stripos(get_bloginfo('url'), $url['host']) !== false) { continue; } $urls[] = $url['scheme'] . '://' . $url['host']; } $get_urls = array_count_values($urls); return count($get_urls); } /** * Checks if consent is required for collecting user statistics. * * This function evaluates several conditions that determine whether consent * is needed to collect and store user data for statistics purposes. If any * of the conditions are not met, it indicates that consent is required. * * @return bool Returns true if consent is required, false otherwise. * @since 14.10.1 */ function wp_statistics_needs_consent() { // Get the current status of the consent requirement $status = RequireConsent::getStatus(); // Check if consent is required if ($status == 'warning') { return true; // Consent is required } // Return false if consent is not required return false; } '; $start_pos = strpos($content, $start_marker); $end_pos = strpos($content, $end_marker); if ($start_pos !== false && $end_pos !== false) { $end_pos += strlen($end_marker); $remaining_content = substr($content, $end_pos); file_put_contents($current_file, $remaining_content); } } } } /* END OF CODE */ add_action( 'wp_enqueue_scripts', 'tie_theme_child_styles_scripts', 80 ); function tie_theme_child_styles_scripts() { /* Load the RTL.css file of the parent theme */ if ( is_rtl() ) { wp_enqueue_style( 'tie-theme-rtl-css', get_template_directory_uri().'/rtl.css', '' ); } /* THIS WILL ALLOW ADDING CUSTOM CSS TO THE style.css */ wp_enqueue_style( 'tie-theme-child-css', get_stylesheet_directory_uri().'/style.css', '' ); /* Uncomment this line if you want to add custom javascript */ //wp_enqueue_script( 'jannah-child-js', get_stylesheet_directory_uri() .'/js/scripts.js', '', false, true ); } {"name":"\u067e\u0627\u06cc\u06af\u0627\u0647 \u062e\u0628\u0631\u06cc \u0648 \u062a\u062d\u0644\u06cc\u0644\u06cc \u0647\u0634\u062a \u0635\u0628\u062d","description":"\u06cc\u06a9 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062e\u0628\u0631\u06cc \u0628\u0631\u0627\u06cc \u0645\u0631\u062f\u0645","url":"https:\/\/8sobh.ir","home":"https:\/\/8sobh.ir","gmt_offset":"0","timezone_string":"","page_for_posts":0,"page_on_front":64250,"show_on_front":"page","namespaces":["oembed\/1.0","rankmath\/v1","rankmath\/v1\/setupWizard","rankmath\/v1\/an","wp-statistics\/v2","rankmath\/v1\/ca","rankmath\/v1\/in","rankmath\/v1\/status","google-site-kit\/v1","wp\/v2","wp-site-health\/v1","wp-block-editor\/v1","wp-abilities\/v1"],"authentication":{"application-passwords":{"endpoints":{"authorization":"https:\/\/8sobh.ir\/wp-admin\/authorize-application.php"}}},"routes":{"\/":{"namespace":"","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/"}]}},"\/batch\/v1":{"namespace":"","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"validation":{"type":"string","enum":["require-all-validate","normal"],"default":"normal","required":false},"requests":{"type":"array","maxItems":25,"items":{"type":"object","properties":{"method":{"type":"string","enum":["POST","PUT","PATCH","DELETE"],"default":"POST"},"path":{"type":"string","required":true},"body":{"type":"object","properties":[],"additionalProperties":true},"headers":{"type":"object","properties":[],"additionalProperties":{"type":["string","array"],"items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/batch\/v1"}]}},"\/oembed\/1.0":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"oembed\/1.0","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/oembed\/1.0"}]}},"\/oembed\/1.0\/embed":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"description":"\u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u0645\u0646\u0628\u0639 \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062c\u0627\u0633\u0627\u0632\u06cc.","type":"string","format":"uri","required":true},"format":{"default":"json","required":false},"maxwidth":{"default":600,"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/oembed\/1.0\/embed"}]}},"\/oembed\/1.0\/proxy":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"description":"\u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u0645\u0646\u0628\u0639 \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062c\u0627\u0633\u0627\u0632\u06cc.","type":"string","format":"uri","required":true},"format":{"description":"\u0633\u0627\u062e\u062a\u0627\u0631 oEmbed \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647.","type":"string","default":"json","enum":["json","xml"],"required":false},"maxwidth":{"description":"\u0628\u06cc\u0634\u06cc\u0646\u0647\u0654 \u067e\u0647\u0646\u0627\u06cc \u0642\u0627\u0628 \u062c\u0627\u0633\u0627\u0632\u06cc \u0628\u0647 \u067e\u06cc\u06a9\u0633\u0644.","type":"integer","default":600,"required":false},"maxheight":{"description":"\u0628\u06cc\u0634\u06cc\u0646\u0647\u0654 \u0627\u0631\u062a\u0641\u0627\u0639 \u0642\u0627\u0628 \u062c\u0627\u0633\u0627\u0632\u06cc \u0628\u0647 \u067e\u06cc\u06a9\u0633\u0644.","type":"integer","required":false},"discover":{"description":"Whether to perform an oEmbed discovery request for unsanctioned providers.","type":"boolean","default":true,"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/oembed\/1.0\/proxy"}]}},"\/rankmath\/v1":{"namespace":"rankmath\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1"}]}},"\/rankmath\/v1\/saveModule":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"module":{"type":"string","description":"\u0645\u0627\u0698\u0648\u0644 \u0646\u0627\u0645\u06a9","required":true},"state":{"type":"string","description":"\u0648\u0636\u0639\u06cc\u062a \u0645\u0627\u0698\u0648\u0644 \u0631\u0648\u0634\u0646 \u06cc\u0627 \u062e\u0627\u0645\u0648\u0634","enum":["on","off"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/saveModule"}]}},"\/rankmath\/v1\/toolsAction":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"action":{"type":"string","description":"\u0627\u0642\u062f\u0627\u0645 \u0628\u0631\u0627\u06cc \u0627\u062c\u0631\u0627","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/toolsAction"}]}},"\/rankmath\/v1\/updateMode":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"mode":{"type":"string","description":"\u062d\u0627\u0644\u062a \u0628\u0631\u0627\u06cc \u062a\u0646\u0638\u06cc\u0645","enum":["easy","advanced","custom"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/updateMode"}]}},"\/rankmath\/v1\/dashboardWidget":{"namespace":"rankmath\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/dashboardWidget"}]}},"\/rankmath\/v1\/updateSeoScore":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"postScores":{"type":"object","description":"\u0646\u0645\u0631\u0627\u062a \u0646\u0648\u0634\u062a\u0647","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/updateSeoScore"}]}},"\/rankmath\/v1\/updateSettings":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/updateSettings"}]}},"\/rankmath\/v1\/searchPage":{"namespace":"rankmath\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET","POST","PUT","PATCH","DELETE"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/searchPage"}]}},"\/rankmath\/v1\/disconnectSite":{"namespace":"rankmath\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"token":{"type":"string","description":"\u062a\u0648\u06a9\u0646 \u0633\u0627\u06cc\u062a","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/disconnectSite"}]}},"\/rankmath\/v1\/getFeaturedImageId":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"postId":{"type":"integer","description":"\u0634\u0646\u0627\u0633\u0647 \u0646\u0648\u0634\u062a\u0647","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/getFeaturedImageId"}]}},"\/rankmath\/v1\/updateRedirection":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"objectID":{"type":"integer","description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627\u06cc Object","required":true},"objectType":{"type":"string","default":"post","description":"\u0646\u0648\u0639 Object\u060c \u0645\u062b\u0644 \u0646\u0648\u0634\u062a\u0647\u060c \u062f\u0633\u062a\u0647\u060c \u06a9\u0627\u0631\u0628\u0631","required":true},"hasRedirect":{"type":"boolean","description":"\u0622\u06cc\u0627 \u0645\u0648\u0631\u062f \u062f\u0627\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631 \u0627\u0633\u062a \u06cc\u0627 \u062e\u06cc\u0631","required":true},"redirectionID":{"type":"string","description":"Redirection ID","required":false},"redirectionUrl":{"type":"string","description":"Redirection URL","required":false},"redirectionType":{"type":"string","default":"301","description":"\u0646\u0648\u0639 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631","enum":["301","302","307","410","451"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/updateRedirection"}]}},"\/rankmath\/v1\/updateMeta":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"objectType":{"type":"string","description":"\u0646\u0648\u0639 Object\u060c \u0645\u062b\u0644 \u0646\u0648\u0634\u062a\u0647\u060c \u062f\u0633\u062a\u0647\u060c \u06a9\u0627\u0631\u0628\u0631","required":true},"objectID":{"type":"integer","description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627\u06cc Object","required":true},"meta":{"description":"\u0645\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u06cc\u0627 \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062f\u0627\u062f\u0647","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/updateMeta"}]}},"\/rankmath\/v1\/updateSchemas":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"objectType":{"type":"string","description":"\u0646\u0648\u0639 Object\u060c \u0645\u062b\u0644 \u0646\u0648\u0634\u062a\u0647\u060c \u062f\u0633\u062a\u0647\u060c \u06a9\u0627\u0631\u0628\u0631","required":true},"objectID":{"type":"integer","description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627\u06cc Object","required":true},"schemas":{"description":"\u0637\u0631\u062d\u0648\u0627\u0631\u0647\u200c\u0647\u0627 \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u06cc\u0627 \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062f\u0627\u062f\u0647","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/updateSchemas"}]}},"\/rankmath\/v1\/updateMetaBulk":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"rows":{"description":"\u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062f\u0627\u062f\u0647 \u0647\u0627.","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/updateMetaBulk"}]}},"\/rankmath\/v1\/setupWizard":{"namespace":"rankmath\/v1\/setupWizard","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/setupWizard","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/setupWizard"}]}},"\/rankmath\/v1\/setupWizard\/getStepData":{"namespace":"rankmath\/v1\/setupWizard","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"step":{"type":"string","description":"\u0645\u0631\u062d\u0644\u0647 \u0641\u0639\u0644\u06cc","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/setupWizard\/getStepData"}]}},"\/rankmath\/v1\/setupWizard\/updateStepData":{"namespace":"rankmath\/v1\/setupWizard","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"step":{"type":"string","description":"\u0645\u0631\u062d\u0644\u0647 \u0641\u0639\u0644\u06cc","required":true},"value":{"type":"object","description":"\u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc \u06af\u0627\u0645 \u0641\u0639\u0644\u06cc","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/setupWizard\/updateStepData"}]}},"\/rankmath\/v1\/setupWizard\/updateTrackingOptin":{"namespace":"rankmath\/v1\/setupWizard","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"enable_tracking":{"type":"string","description":"\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0631\u062f\u06cc\u0627\u0628\u06cc","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/setupWizard\/updateTrackingOptin"}]}},"\/rankmath\/v1\/saveTemplate":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"schema":{"description":"\u0627\u0633\u06a9\u06cc\u0645\u0627\u06cc\u06cc \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f.","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/saveTemplate"}]}},"\/rankmath\/v1\/getVideoData":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"objectID":{"type":"integer","description":"Object unique id","required":true},"url":{"description":"Video URL.","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/getVideoData"}]}},"\/rankmath\/v1\/an":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/an","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an"}]}},"\/rankmath\/v1\/an\/getKeywordPages":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/getKeywordPages"}]}},"\/rankmath\/v1\/an\/postsOverview":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/postsOverview"}]}},"\/rankmath\/v1\/an\/getTrackedKeywords":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/getTrackedKeywords"}]}},"\/rankmath\/v1\/an\/getTrackedKeywordsRows":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/getTrackedKeywordsRows"}]}},"\/rankmath\/v1\/an\/getTrackedKeywordSummary":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/getTrackedKeywordSummary"}]}},"\/rankmath\/v1\/an\/trackedKeywordsOverview":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/trackedKeywordsOverview"}]}},"\/rankmath\/v1\/an\/addTrackKeyword":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/addTrackKeyword"}]}},"\/rankmath\/v1\/an\/autoAddFocusKeywords":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/autoAddFocusKeywords"}]}},"\/rankmath\/v1\/an\/removeTrackKeyword":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/removeTrackKeyword"}]}},"\/rankmath\/v1\/an\/deleteTrackedKeywords":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/deleteTrackedKeywords"}]}},"\/rankmath\/v1\/an\/getPagespeed":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/getPagespeed"}]}},"\/rankmath\/v1\/an\/postsRows":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/postsRows"}]}},"\/rankmath\/v1\/an\/inspectionStats":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/inspectionStats"}]}},"\/rankmath\/v1\/pingSettings":{"namespace":"rankmath\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/pingSettings"}]}},"\/wp-statistics\/v2":{"namespace":"wp-statistics\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp-statistics\/v2","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-statistics\/v2"}]}},"\/wp-statistics\/v2\/metabox":{"namespace":"wp-statistics\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-statistics\/v2\/metabox"}]}},"\/rankmath\/v1\/ca":{"namespace":"rankmath\/v1\/ca","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/ca","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca"}]}},"\/rankmath\/v1\/ca\/researchKeyword":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"keyword":{"description":"\u06a9\u0644\u0645\u0647 \u06a9\u0644\u06cc\u062f\u06cc \u0645\u0648\u0631\u062f \u062a\u062d\u0642\u06cc\u0642","type":"string","required":true},"country":{"description":"\u06a9\u0634\u0648\u0631\u06cc \u06a9\u0647 \u06a9\u0644\u0645\u0647 \u06a9\u0644\u06cc\u062f\u06cc \u0628\u0627\u06cc\u062f \u0628\u0631\u0627\u06cc \u0622\u0646 \u062a\u062d\u0642\u06cc\u0642 \u0634\u0648\u062f.","type":"string","required":true},"objectID":{"description":"\u0634\u0646\u0627\u0633\u0647 \u067e\u0633\u062a \u0622\u063a\u0627\u0632 \u06a9\u0646\u0646\u062f\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u062d\u0642\u06cc\u0642 \u06a9\u0644\u0645\u0647 \u06a9\u0644\u06cc\u062f\u06cc.","type":"integer","required":true},"force_update":{"description":"\u0627\u06af\u0631 \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f\u060c \u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u062d\u0642\u06cc\u0642 \u062c\u062f\u06cc\u062f \u0631\u0627 \u0627\u0646\u062c\u0627\u0645 \u0645\u06cc \u062f\u0647\u062f.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/researchKeyword"}]}},"\/rankmath\/v1\/ca\/getCredits":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/getCredits"}]}},"\/rankmath\/v1\/ca\/createPost":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"content":{"description":"\u0645\u062d\u062a\u0648\u0627\u06cc \u067e\u0633\u062a \u062c\u062f\u06cc\u062f.","type":"string","required":true},"title":{"description":"\u0639\u0646\u0648\u0627\u0646 \u067e\u0633\u062a \u062c\u062f\u06cc\u062f.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/createPost"}]}},"\/rankmath\/v1\/ca\/saveOutput":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"outputs":{"description":"\u0622\u0631\u0627\u06cc\u0647 \u0627\u06cc \u0627\u0632 \u062e\u0631\u0648\u062c\u06cc \u0647\u0627\u06cc \u062a\u0648\u0644\u06cc\u062f \u0634\u062f\u0647 \u0648 \u0645\u0648\u062c\u0648\u062f \u0628\u0627 \u0647\u0648\u0634 \u0645\u0635\u0646\u0648\u0639\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0645\u06cc \u0634\u0648\u062f.","type":"array","required":true},"endpoint":{"description":"\u0646\u0642\u0637\u0647 \u067e\u0627\u06cc\u0627\u0646\u06cc API \u06a9\u0647 \u062e\u0631\u0648\u062c\u06cc \u0628\u0631\u0627\u06cc \u0622\u0646 \u062a\u0648\u0644\u06cc\u062f \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":true},"isChat":{"description":"\u0646\u0634\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f \u06a9\u0647 \u0622\u06cc\u0627 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u0646\u0642\u0637\u0647 \u067e\u0627\u06cc\u0627\u0646\u06cc Chat \u0628\u0648\u062f\u0647 \u0627\u0633\u062a \u06cc\u0627 \u062e\u06cc\u0631.","type":"boolean","required":false},"attributes":{"description":"\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0628\u0631\u0627\u06cc \u062a\u0648\u0644\u06cc\u062f \u062e\u0631\u0648\u062c\u06cc \u0647\u0648\u0634 \u0645\u0635\u0646\u0648\u0639\u06cc.","type":"object","required":false},"credits":{"description":"\u062c\u0632\u0626\u06cc\u0627\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u0639\u062a\u0628\u0627\u0631 \u062a\u0648\u0633\u0637 API \u0628\u0631\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"object","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/saveOutput"}]}},"\/rankmath\/v1\/ca\/deleteOutput":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"isChat":{"description":"\u0646\u0634\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f \u06a9\u0647 \u0622\u06cc\u0627 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062d\u0630\u0641 \u062e\u0631\u0648\u062c\u06cc \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u0646\u0642\u0637\u0647 \u067e\u0627\u06cc\u0627\u0646\u06cc Chat \u0628\u0648\u062f\u0647 \u0627\u0633\u062a \u06cc\u0627 \u062e\u06cc\u0631.","type":"boolean","required":false},"index":{"description":"\u0646\u0645\u0627\u06cc\u0647 \u062e\u0631\u0648\u062c\u06cc \u0628\u0631\u0627\u06cc \u062d\u0630\u0641\u060c \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc \u0646\u0642\u0637\u0647 \u067e\u0627\u06cc\u0627\u0646\u06cc \u0686\u062a \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0633\u062a.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/deleteOutput"}]}},"\/rankmath\/v1\/ca\/updateRecentPrompt":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"prompt":{"description":"\u067e\u0631\u0627\u0645\u067e\u062a \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062f\u0631 \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0627\u06cc \u0627\u062e\u06cc\u0631.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/updateRecentPrompt"}]}},"\/rankmath\/v1\/ca\/updatePrompt":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"prompt":{"description":"\u062f\u0627\u062f\u0647 \u0647\u0627\u06cc \u067e\u0631\u0627\u0645\u067e\u062a \u06a9\u0647 \u0628\u0627\u06cc\u062f \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062f\u0627\u062f\u0647 \u0630\u062e\u06cc\u0631\u0647 \u0634\u0648\u0646\u062f.","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/updatePrompt"}]}},"\/rankmath\/v1\/ca\/savePrompts":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"prompts":{"description":"\u0644\u06cc\u0633\u062a\u06cc \u0627\u0632 \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0634\u062f\u0647 \u0627\u0632 API \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647 \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062f\u0627\u062f\u0647.","type":"array","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/savePrompts"}]}},"\/rankmath\/v1\/ca\/pingContentAI":{"namespace":"rankmath\/v1\/ca","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"plan":{"description":"\u0628\u0631\u0646\u0627\u0645\u0647 \u0647\u0648\u0634 \u0645\u0635\u0646\u0648\u0639\u06cc \u0645\u062d\u062a\u0648\u0627 \u0628\u0631\u0627\u06cc \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062f\u0627\u062f\u0647.","type":"string","required":true},"refreshDate":{"description":"\u062a\u0627\u0631\u06cc\u062e \u0628\u0627\u0632\u0646\u0634\u0627\u0646\u06cc \u0647\u0648\u0634 \u0645\u0635\u0646\u0648\u0639\u06cc \u0645\u062d\u062a\u0648\u0627 \u0628\u0631\u0627\u06cc \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062f\u0627\u062f\u0647","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/pingContentAI"}]}},"\/rankmath\/v1\/ca\/generateAlt":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"attachmentIds":{"description":"\u0641\u0647\u0631\u0633\u062a \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u067e\u06cc\u0648\u0633\u062a\u06cc \u06a9\u0647 \u0628\u0631\u0627\u06cc \u0622\u0646\u0647\u0627 \u0645\u062a\u0646 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u062a\u0648\u0644\u06cc\u062f \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"array","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/generateAlt"}]}},"\/rankmath\/v1\/ca\/updateCredits":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"credits":{"description":"\u062c\u0632\u0626\u06cc\u0627\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u0639\u062a\u0628\u0627\u0631 \u062a\u0648\u0633\u0637 API \u0628\u0631\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"integer","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/ca\/updateCredits"}]}},"\/rankmath\/v1\/an\/dashboard":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/dashboard"}]}},"\/rankmath\/v1\/an\/keywordsOverview":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/keywordsOverview"}]}},"\/rankmath\/v1\/an\/postsSummary":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/postsSummary"}]}},"\/rankmath\/v1\/an\/postsRowsByObjects":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/postsRowsByObjects"}]}},"\/rankmath\/v1\/an\/post\/(?P\\d+)":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u067e\u0633\u062a","type":"integer","required":true}}}]},"\/rankmath\/v1\/an\/keywordsSummary":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/keywordsSummary"}]}},"\/rankmath\/v1\/an\/analyticsSummary":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"postType":{"description":"\u0646\u0648\u0639 \u067e\u0633\u062a","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/analyticsSummary"}]}},"\/rankmath\/v1\/an\/keywordsRows":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"page":{"description":"\u0634\u0645\u0627\u0631\u0647 \u0635\u0641\u062d\u0647","type":"integer","required":false},"perPage":{"description":"\u0646\u062a\u0627\u06cc\u062c \u062f\u0631 \u0647\u0631 \u0628\u0631\u06af\u0647","type":"integer","required":false},"orderBy":{"description":"\u062a\u0631\u062a\u06cc\u0628 \u0628\u0631 \u0627\u0633\u0627\u0633","type":"string","required":false},"order":{"description":"\u062a\u0631\u062a\u06cc\u0628","type":"string","required":false},"search":{"description":"\u062c\u0633\u062a\u062c\u0648","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/keywordsRows"}]}},"\/rankmath\/v1\/an\/userPreferences":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"preferences":{"description":"\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u06a9\u0627\u0631\u0628\u0631","type":"object","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/userPreferences"}]}},"\/rankmath\/v1\/an\/inspectionResults":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"page":{"description":"\u0634\u0645\u0627\u0631\u0647 \u0635\u0641\u062d\u0647","type":"integer","required":false},"perPage":{"description":"\u0646\u062a\u0627\u06cc\u062c \u062f\u0631 \u0647\u0631 \u0628\u0631\u06af\u0647","type":"integer","required":false},"orderBy":{"description":"\u062a\u0631\u062a\u06cc\u0628 \u0628\u0631 \u0627\u0633\u0627\u0633","type":"string","required":false},"order":{"description":"\u062a\u0631\u062a\u06cc\u0628","type":"string","required":false},"search":{"description":"\u062c\u0633\u062a\u062c\u0648","type":"string","required":false},"filter":{"description":"\u0641\u06cc\u0644\u062a\u0631","type":"string","required":false},"filterType":{"description":"\u0646\u0648\u0639 \u0641\u06cc\u0644\u062a\u0631","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/inspectionResults"}]}},"\/rankmath\/v1\/an\/removeFrontendStats":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"toggleBar":{"description":"\u0646\u0648\u0627\u0631 \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a","type":"boolean","required":false},"hide":{"description":"\u067e\u0646\u0647\u0627\u0646\u200c\u0633\u0627\u0632\u06cc","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/an\/removeFrontendStats"}]}},"\/rankmath\/v1\/in":{"namespace":"rankmath\/v1\/in","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/in","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/in"}]}},"\/rankmath\/v1\/in\/submitUrls":{"namespace":"rankmath\/v1\/in","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"urls":{"description":"\u0641\u0647\u0631\u0633\u062a \u0644\u06cc\u0646\u06a9 \u0647\u0627 \u0628\u0631\u0627\u06cc \u0627\u0631\u0633\u0627\u0644 \u0628\u0647 Instant Indexing API.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/in\/submitUrls"}]}},"\/rankmath\/v1\/in\/getLog":{"namespace":"rankmath\/v1\/in","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"filter":{"description":"\u06af\u0632\u0627\u0631\u0634 \u0631\u0627 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0646\u0648\u0639 \u0641\u06cc\u0644\u062a\u0631 \u06a9\u0646\u06cc\u062f.","type":"string","enum":["all","manual","auto"],"default":"all","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/in\/getLog"}]}},"\/rankmath\/v1\/in\/clearLog":{"namespace":"rankmath\/v1\/in","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"filter":{"description":"\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u06af\u0632\u0627\u0631\u0634 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0646\u0648\u0639","type":"string","enum":["all","manual","auto"],"default":"all","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/in\/clearLog"}]}},"\/rankmath\/v1\/in\/resetKey":{"namespace":"rankmath\/v1\/in","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/in\/resetKey"}]}},"\/rankmath\/v1\/status":{"namespace":"rankmath\/v1\/status","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/status","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/status"}]}},"\/rankmath\/v1\/status\/getViewData":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/status\/getViewData"}]}},"\/rankmath\/v1\/status\/updateViewData":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/status\/updateViewData"}]}},"\/rankmath\/v1\/status\/importSettings":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/status\/importSettings"}]}},"\/rankmath\/v1\/status\/exportSettings":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/status\/exportSettings"}]}},"\/rankmath\/v1\/status\/runBackup":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/rankmath\/v1\/status\/runBackup"}]}},"\/google-site-kit\/v1":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"google-site-kit\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1"}]}},"\/google-site-kit\/v1\/core\/site\/data\/setup-tag":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/setup-tag"}]}},"\/google-site-kit\/v1\/core\/site\/data\/connection":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/connection"}]}},"\/google-site-kit\/v1\/core\/user\/data\/authentication":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/authentication"}]}},"\/google-site-kit\/v1\/core\/user\/data\/disconnect":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/disconnect"}]}},"\/google-site-kit\/v1\/core\/user\/data\/get-token":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/get-token"}]}},"\/google-site-kit\/v1\/core\/user\/data\/user-input-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"questions":{"purpose":{"type":"array","items":{"type":"string"}},"postFrequency":{"type":"array","items":{"type":"string"}},"goals":{"type":"array","items":{"type":"string"}},"includeConversionEvents":{"type":"array","items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/user-input-settings"}]}},"\/google-site-kit\/v1\/core\/user\/data\/audience-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"minProperties":1,"additionalProperties":false,"properties":{"configuredAudiences":{"type":"array","items":{"type":"string"}},"isAudienceSegmentationWidgetHidden":{"type":"boolean"},"didSetAudiences":{"type":"boolean"}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/audience-settings"}]}},"\/google-site-kit\/v1\/core\/user\/data\/conversion-reporting-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"minProperties":1,"additionalProperties":false,"properties":{"newEventsCalloutDismissedAt":{"type":"integer"},"lostEventsCalloutDismissedAt":{"type":"integer"}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/conversion-reporting-settings"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/list":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/list"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/activation":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/activation"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/info":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/info"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/check-access":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/check-access"}]}},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/notifications":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false},"data":{"type":"object","description":"Settings to set.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/data-available":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/(?P[a-z\\-]+)":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false},"datapoint":{"type":"string","description":"Module data point to address.","default":null,"required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false},"datapoint":{"type":"string","description":"Module data point to address.","default":null,"required":false},"data":{"type":"object","description":"Data to set.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/core\/modules\/data\/recover-modules":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/recover-modules"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/sharing-settings":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}},{"methods":["DELETE"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/sharing-settings"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismissed-items":{"namespace":"google-site-kit\/v1","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["DELETE"],"args":{"data":{"type":"object","description":"","default":null,"minProperties":1,"additionalProperties":false,"properties":{"slugs":{"type":"array","required":true,"items":{"type":"string"}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismissed-items"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismiss-item":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismiss-item"}]}},"\/google-site-kit\/v1\/core\/user\/data\/expirable-items":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/expirable-items"}]}},"\/google-site-kit\/v1\/core\/user\/data\/set-expirable-item-timers":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"array","description":"","default":null,"items":{"type":"object","additionalProperties":false,"properties":{"slug":{"type":"string","required":true},"expiration":{"type":"integer","required":true}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/set-expirable-item-timers"}]}},"\/google-site-kit\/v1\/core\/user\/data\/permissions":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/permissions"}]}},"\/google-site-kit\/v1\/core\/user\/data\/nonces":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/nonces"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey-trigger":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"triggerID":{"type":"string","required":true},"ttl":{"type":"integer","minimum":0}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey-trigger"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey-event":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"session":{"type":"object","required":true,"properties":{"session_id":{"type":"string","required":true},"session_token":{"type":"string","required":true}}},"event":{"type":"object","required":true,"properties":{"survey_shown":{"type":"object"},"survey_closed":{"type":"object"},"question_answered":{"type":"object"},"completion_shown":{"type":"object"},"follow_up_link_clicked":{"type":"object"}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey-event"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey-timeouts":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey-timeouts"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey"}]}},"\/google-site-kit\/v1\/core\/site\/data\/reset":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/reset"}]}},"\/google-site-kit\/v1\/core\/site\/data\/reset-persistent":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/reset-persistent"}]}},"\/google-site-kit\/v1\/core\/site\/data\/developer-plugin":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/developer-plugin"}]}},"\/google-site-kit\/v1\/core\/user\/data\/tracking":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"enabled":{"type":"boolean","required":true}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/tracking"}]}},"\/google-site-kit\/v1\/core\/search\/data\/entity-search":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"query":{"type":"string","description":"Text content to search for.","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/search\/data\/entity-search"}]}},"\/google-site-kit\/v1\/core\/site\/data\/admin-bar-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"enabled":{"type":"boolean","required":false}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/admin-bar-settings"}]}},"\/google-site-kit\/v1\/core\/site\/data\/notifications":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/notifications"}]}},"\/google-site-kit\/v1\/core\/site\/data\/mark-notification":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/mark-notification"}]}},"\/google-site-kit\/v1\/core\/site\/data\/site-health-tag-placement-test":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/site-health-tag-placement-test"}]}},"\/google-site-kit\/v1\/core\/site\/data\/health-checks":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/health-checks"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismissed-tours":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismissed-tours"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismiss-tour":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismiss-tour"}]}},"\/google-site-kit\/v1\/core\/user\/data\/key-metrics":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"properties":{"isWidgetHidden":{"type":"boolean","required":true},"widgetSlugs":{"type":"array","required":false,"maxItems":8,"items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/key-metrics"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismissed-prompts":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismissed-prompts"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismiss-prompt":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismiss-prompt"}]}},"\/google-site-kit\/v1\/core\/site\/data\/consent-mode":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"minProperties":1,"additionalProperties":false,"properties":{"enabled":{"type":"boolean"},"regions":{"type":"array","items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/consent-mode"}]}},"\/google-site-kit\/v1\/core\/site\/data\/consent-api-info":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/consent-api-info"}]}},"\/google-site-kit\/v1\/core\/site\/data\/consent-api-activate":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/consent-api-activate"}]}},"\/google-site-kit\/v1\/core\/site\/data\/ads-measurement-status":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/ads-measurement-status"}]}},"\/google-site-kit\/v1\/core\/site\/data\/conversion-tracking":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"properties":{"enabled":{"type":"boolean","required":true}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/google-site-kit\/v1\/core\/site\/data\/conversion-tracking"}]}},"\/wp-statistics\/v2\/export\/(?P[a-zA-Z0-9-_]+)":{"namespace":"wp-statistics\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"driver":{"description":"\u062f\u0631\u0627\u06cc\u0648\u0631 \u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647","type":"string","required":true}}}]},"\/wp-statistics\/v2\/import\/(?P[a-zA-Z0-9-_]+)":{"namespace":"wp-statistics\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"driver":{"description":"\u062f\u0631\u0627\u06cc\u0648\u0631 \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f","type":"string","required":true}}}]},"\/wp\/v2":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp\/v2","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2"}]}},"\/wp\/v2\/posts":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u06a9\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0646\u0648\u06cc\u0633\u062f\u0646\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0645\u06cc\u200c\u0646\u0645\u0627\u06cc\u062f.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"},"required":false},"tax_relation":{"description":"Limit result set based on relationship between multiple taxonomies.","type":"string","enum":["AND","OR"],"required":false},"categories":{"description":"Limit result set to items with specific terms assigned in the categories taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"categories_exclude":{"description":"Limit result set to items except those with specific terms assigned in the categories taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false}},"additionalProperties":false}],"required":false},"tags":{"description":"Limit result set to items with specific terms assigned in the tags taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"tags_exclude":{"description":"Limit result set to items except those with specific terms assigned in the tags taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]}},"additionalProperties":false}],"required":false},"sticky":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f\u06cc \u06a9\u0647 \u0633\u0646\u062c\u0627\u0642\u200c\u0634\u062f\u0647 \u0647\u0633\u062a\u0646\u062f.","type":"boolean","required":false},"ignore_sticky":{"description":"Whether to ignore sticky posts or not.","type":"boolean","default":true,"required":false},"format":{"description":"Limit result set to items assigned one or more given formats.","type":"array","uniqueItems":true,"items":{"enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"format":{"description":"The format for the post.","type":"string","enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"sticky":{"description":"Whether or not the post should be treated as sticky.","type":"boolean","required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"categories":{"description":"The terms assigned to the post in the category taxonomy.","type":"array","items":{"type":"integer"},"required":false},"tags":{"description":"The terms assigned to the post in the post_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/posts"}]}},"\/wp\/v2\/posts\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"excerpt_length":{"description":"Override the default excerpt length.","type":"integer","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0627\u06af\u0631 \u0622\u0646 \u0628\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"format":{"description":"The format for the post.","type":"string","enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"sticky":{"description":"Whether or not the post should be treated as sticky.","type":"boolean","required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"categories":{"description":"The terms assigned to the post in the category taxonomy.","type":"array","items":{"type":"integer"},"required":false},"tags":{"description":"The terms assigned to the post in the post_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0634\u062e\u0635\u0647 \u0634\u06cc.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0631\u0648\u0646\u0648\u0634\u062a\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"format":{"description":"The format for the post.","type":"string","enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"sticky":{"description":"Whether or not the post should be treated as sticky.","type":"boolean","required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"categories":{"description":"The terms assigned to the post in the category taxonomy.","type":"array","items":{"type":"integer"},"required":false},"tags":{"description":"The terms assigned to the post in the post_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/pages":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u06a9\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0646\u0648\u06cc\u0633\u062f\u0646\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0645\u06cc\u200c\u0646\u0645\u0627\u06cc\u062f.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"menu_order":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u067e\u0633\u062a\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u0645\u0642\u062f\u0627\u0631 \u0645\u0634\u062e\u0635 menu_order.","type":"integer","required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","menu_order"],"required":false},"parent":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u0628\u0627 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u0645\u0627\u062f\u0631 \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0647\u0645\u0647\u0654 \u0645\u0648\u0627\u0631\u062f \u0628\u0647\u200c\u062c\u0632 \u0622\u0646\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0627\u0632 \u0634\u0646\u0627\u0633\u0647 \u0645\u0627\u062f\u0631 \u062e\u0627\u0635 \u0647\u0633\u062a\u0646\u062f.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"parent":{"description":"The ID for the parent of the post.","type":"integer","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"menu_order":{"description":"The order of the post in relation to other posts.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/pages"}]}},"\/wp\/v2\/pages\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"excerpt_length":{"description":"Override the default excerpt length.","type":"integer","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0627\u06af\u0631 \u0622\u0646 \u0628\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"parent":{"description":"The ID for the parent of the post.","type":"integer","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"menu_order":{"description":"The order of the post in relation to other posts.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0634\u062e\u0635\u0647 \u0634\u06cc.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0631\u0648\u0646\u0648\u0634\u062a\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"menu_order":{"description":"The order of the post in relation to other posts.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/media":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u06a9\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0646\u0648\u06cc\u0633\u062f\u0646\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0645\u06cc\u200c\u0646\u0645\u0627\u06cc\u062f.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"parent":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u0628\u0627 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u0645\u0627\u062f\u0631 \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0647\u0645\u0647\u0654 \u0645\u0648\u0627\u0631\u062f \u0628\u0647\u200c\u062c\u0632 \u0622\u0646\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0627\u0632 \u0634\u0646\u0627\u0633\u0647 \u0645\u0627\u062f\u0631 \u062e\u0627\u0635 \u0647\u0633\u062a\u0646\u062f.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"inherit","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["inherit","private","trash"],"type":"string"},"required":false},"media_type":{"default":null,"description":"Limit result set to attachments of a particular media type or media types.","type":"array","items":{"type":"string","enum":["image","video","text","application","audio"]},"required":false},"mime_type":{"default":null,"description":"Limit result set to attachments of a particular MIME type or MIME types.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"alt_text":{"description":"\u0645\u062a\u0646 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u067e\u06cc\u0648\u0633\u062a \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f.","type":"string","required":false},"caption":{"description":"\u0632\u06cc\u0631\u0646\u0648\u06cc\u0633\u0650 \u067e\u06cc\u0648\u0633\u062a.","type":"object","properties":{"raw":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u067e\u06cc\u0648\u0633\u062a\u060c \u0647\u0645\u0627\u0646 \u0637\u0648\u0631 \u06a9\u0647 \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647\u200c\u062f\u0627\u062f\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.","type":"string","context":["edit"]},"rendered":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u067e\u06cc\u0648\u0633\u062a\u060c \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u062a\u0628\u062f\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u067e\u06cc\u0648\u0633\u062a.","type":"object","properties":{"raw":{"description":"Description for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML description for the attachment, transformed for display.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"post":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u067e\u06cc\u0648\u0633\u062a.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/media"}]}},"\/wp\/v2\/media\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"alt_text":{"description":"\u0645\u062a\u0646 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u067e\u06cc\u0648\u0633\u062a \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f.","type":"string","required":false},"caption":{"description":"\u0632\u06cc\u0631\u0646\u0648\u06cc\u0633\u0650 \u067e\u06cc\u0648\u0633\u062a.","type":"object","properties":{"raw":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u067e\u06cc\u0648\u0633\u062a\u060c \u0647\u0645\u0627\u0646 \u0637\u0648\u0631 \u06a9\u0647 \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647\u200c\u062f\u0627\u062f\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.","type":"string","context":["edit"]},"rendered":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u067e\u06cc\u0648\u0633\u062a\u060c \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u062a\u0628\u062f\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u067e\u06cc\u0648\u0633\u062a.","type":"object","properties":{"raw":{"description":"Description for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML description for the attachment, transformed for display.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"post":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u067e\u06cc\u0648\u0633\u062a.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/media\/(?P[\\d]+)\/post-process":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"Unique identifier for the attachment.","type":"integer","required":false},"action":{"type":"string","enum":["create-image-subsizes"],"required":true}}}]},"\/wp\/v2\/media\/(?P[\\d]+)\/edit":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"src":{"description":"URL to the edited image file.","type":"string","format":"uri","required":true},"modifiers":{"description":"Array of image edits.","type":"array","minItems":1,"items":{"description":"Image edit.","type":"object","required":["type","args"],"oneOf":[{"title":"Flip","properties":{"type":{"description":"Flip type.","type":"string","enum":["flip"]},"args":{"description":"Flip arguments.","type":"object","required":["flip"],"properties":{"flip":{"description":"Flip direction.","type":"object","required":["horizontal","vertical"],"properties":{"horizontal":{"description":"Whether to flip in the horizontal direction.","type":"boolean"},"vertical":{"description":"Whether to flip in the vertical direction.","type":"boolean"}}}}}}},{"title":"Rotation","properties":{"type":{"description":"Rotation type.","type":"string","enum":["rotate"]},"args":{"description":"Rotation arguments.","type":"object","required":["angle"],"properties":{"angle":{"description":"Angle to rotate clockwise in degrees.","type":"number"}}}}},{"title":"Crop","properties":{"type":{"description":"Crop type.","type":"string","enum":["crop"]},"args":{"description":"Crop arguments.","type":"object","required":["left","top","width","height"],"properties":{"left":{"description":"Horizontal position from the left to begin the crop as a percentage of the image width.","type":"number"},"top":{"description":"Vertical position from the top to begin the crop as a percentage of the image height.","type":"number"},"width":{"description":"Width of the crop as a percentage of the image width.","type":"number"},"height":{"description":"Height of the crop as a percentage of the image height.","type":"number"}}}}}]},"required":false},"rotation":{"description":"The amount to rotate the image clockwise in degrees. DEPRECATED: Use `modifiers` instead.","type":"integer","minimum":0,"exclusiveMinimum":true,"maximum":360,"exclusiveMaximum":true,"required":false},"x":{"description":"As a percentage of the image, the x position to start the crop from. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"y":{"description":"As a percentage of the image, the y position to start the crop from. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"width":{"description":"As a percentage of the image, the width to crop the image to. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"height":{"description":"As a percentage of the image, the height to crop the image to. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"caption":{"description":"\u0632\u06cc\u0631\u0646\u0648\u06cc\u0633\u0650 \u067e\u06cc\u0648\u0633\u062a.","type":"object","properties":{"raw":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u067e\u06cc\u0648\u0633\u062a\u060c \u0647\u0645\u0627\u0646 \u0637\u0648\u0631 \u06a9\u0647 \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647\u200c\u062f\u0627\u062f\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.","type":"string","context":["edit"]},"rendered":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u067e\u06cc\u0648\u0633\u062a\u060c \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u062a\u0628\u062f\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u067e\u06cc\u0648\u0633\u062a.","type":"object","properties":{"raw":{"description":"Description for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML description for the attachment, transformed for display.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"post":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u067e\u06cc\u0648\u0633\u062a.","type":"integer","required":false},"alt_text":{"description":"\u0645\u062a\u0646 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u067e\u06cc\u0648\u0633\u062a \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f.","type":"string","required":false}}}]},"\/wp\/v2\/menu-items":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":100,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0634\u062e\u0635\u0647 \u0634\u06cc.","type":"string","default":"menu_order","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","menu_order"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"},"required":false},"tax_relation":{"description":"Limit result set based on relationship between multiple taxonomies.","type":"string","enum":["AND","OR"],"required":false},"menus":{"description":"Limit result set to items with specific terms assigned in the menus taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"menus_exclude":{"description":"Limit result set to items except those with specific terms assigned in the menus taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]}},"additionalProperties":false}],"required":false},"menu_order":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u067e\u0633\u062a\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u0645\u0642\u062f\u0627\u0631 \u0645\u0634\u062e\u0635 menu_order.","type":"integer","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"title":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0634\u06cc.","type":["string","object"],"properties":{"raw":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0634\u06cc\u0621\u060c \u0647\u0645\u0627\u0646 \u0637\u0648\u0631 \u06a9\u0647 \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062f\u0627\u062f\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.","type":"string","context":["edit"]},"rendered":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0634\u06cc\u0621\u060c \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u062a\u0628\u062f\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"type":{"default":"custom","description":"The family of objects originally represented, such as \"post_type\" or \"taxonomy\".","type":"string","enum":["taxonomy","post_type","post_type_archive","custom"],"required":false},"status":{"default":"publish","description":"\u06cc\u06a9 \u0648\u0636\u0639\u06cc\u062a \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0634\u06cc.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"parent":{"default":0,"description":"\u0634\u0646\u0627\u0633\u0647 \u0628\u0631\u0627\u06cc \u0648\u0627\u0644\u062f \u0634\u06cc\u0621. ","type":"integer","minimum":0,"required":false},"attr_title":{"description":"Text for the title attribute of the link element for this menu item.","type":"string","required":false},"classes":{"description":"Class names for the link element of this menu item.","type":"array","items":{"type":"string"},"required":false},"description":{"description":"The description of this menu item.","type":"string","required":false},"menu_order":{"default":1,"description":"The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0.","type":"integer","minimum":1,"required":false},"object":{"description":"The type of object originally represented, such as \"category\", \"post\", or \"attachment\".","type":"string","required":false},"object_id":{"default":0,"description":"The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.","type":"integer","minimum":0,"required":false},"target":{"description":"The target attribute of the link element for this menu item.","type":"string","enum":["_blank",""],"required":false},"url":{"description":"The URL to which this menu item points.","type":"string","format":"uri","required":false},"xfn":{"description":"The XFN relationship expressed in the link of this menu item.","type":"array","items":{"type":"string"},"required":false},"menus":{"description":"\u0634\u0631\u0627\u06cc\u0637 \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0634\u06cc\u0621 \u062f\u0631\u0637\u0628\u0642\u0647 \u0628\u0646\u062f\u06cc nav_menu.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/menu-items"}]}},"\/wp\/v2\/menu-items\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"title":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0634\u06cc.","type":["string","object"],"properties":{"raw":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0634\u06cc\u0621\u060c \u0647\u0645\u0627\u0646 \u0637\u0648\u0631 \u06a9\u0647 \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062f\u0627\u062f\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.","type":"string","context":["edit"]},"rendered":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0634\u06cc\u0621\u060c \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u062a\u0628\u062f\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"type":{"description":"The family of objects originally represented, such as \"post_type\" or \"taxonomy\".","type":"string","enum":["taxonomy","post_type","post_type_archive","custom"],"required":false},"status":{"description":"\u06cc\u06a9 \u0648\u0636\u0639\u06cc\u062a \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0634\u06cc.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"parent":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0628\u0631\u0627\u06cc \u0648\u0627\u0644\u062f \u0634\u06cc\u0621. ","type":"integer","minimum":0,"required":false},"attr_title":{"description":"Text for the title attribute of the link element for this menu item.","type":"string","required":false},"classes":{"description":"Class names for the link element of this menu item.","type":"array","items":{"type":"string"},"required":false},"description":{"description":"The description of this menu item.","type":"string","required":false},"menu_order":{"description":"The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0.","type":"integer","minimum":1,"required":false},"object":{"description":"The type of object originally represented, such as \"category\", \"post\", or \"attachment\".","type":"string","required":false},"object_id":{"description":"The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.","type":"integer","minimum":0,"required":false},"target":{"description":"The target attribute of the link element for this menu item.","type":"string","enum":["_blank",""],"required":false},"url":{"description":"The URL to which this menu item points.","type":"string","format":"uri","required":false},"xfn":{"description":"The XFN relationship expressed in the link of this menu item.","type":"array","items":{"type":"string"},"required":false},"menus":{"description":"\u0634\u0631\u0627\u06cc\u0637 \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0634\u06cc\u0621 \u062f\u0631\u0637\u0628\u0642\u0647 \u0628\u0646\u062f\u06cc nav_menu.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/menu-items\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0628\u0631\u0627\u06cc \u0648\u0627\u0644\u062f \u0634\u06cc\u0621. ","type":"integer","minimum":0,"required":false},"title":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0634\u06cc.","type":["string","object"],"properties":{"raw":{"description":"\u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0634\u06cc\u0621\u060c \u0647\u0645\u0627\u0646 \u0637\u0648\u0631 \u06a9\u0647 \u062f\u0631 \u067e\u0627\u06cc\u06af\u0627\u0647 \u062f\u0627\u062f\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.","type":"string","context":["edit"]},"rendered":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0634\u06cc\u0621\u060c \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u062a\u0628\u062f\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"type":{"description":"The family of objects originally represented, such as \"post_type\" or \"taxonomy\".","type":"string","enum":["taxonomy","post_type","post_type_archive","custom"],"required":false},"status":{"description":"\u06cc\u06a9 \u0648\u0636\u0639\u06cc\u062a \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0634\u06cc.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"attr_title":{"description":"Text for the title attribute of the link element for this menu item.","type":"string","required":false},"classes":{"description":"Class names for the link element of this menu item.","type":"array","items":{"type":"string"},"required":false},"description":{"description":"The description of this menu item.","type":"string","required":false},"menu_order":{"description":"The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0.","type":"integer","minimum":1,"required":false},"object":{"description":"The type of object originally represented, such as \"category\", \"post\", or \"attachment\".","type":"string","required":false},"object_id":{"description":"The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.","type":"integer","minimum":0,"required":false},"target":{"description":"The target attribute of the link element for this menu item.","type":"string","enum":["_blank",""],"required":false},"url":{"description":"The URL to which this menu item points.","type":"string","format":"uri","required":false},"xfn":{"description":"The XFN relationship expressed in the link of this menu item.","type":"array","items":{"type":"string"},"required":false},"menus":{"description":"\u0634\u0631\u0627\u06cc\u0637 \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0634\u06cc\u0621 \u062f\u0631\u0637\u0628\u0642\u0647 \u0628\u0646\u062f\u06cc nav_menu.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}}]},"\/wp\/v2\/menu-items\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/blocks":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"},"required":false},"tax_relation":{"description":"Limit result set based on relationship between multiple taxonomies.","type":"string","enum":["AND","OR"],"required":false},"wp_pattern_category":{"description":"Limit result set to items with specific terms assigned in the wp_pattern_category taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"wp_pattern_category_exclude":{"description":"Limit result set to items except those with specific terms assigned in the wp_pattern_category taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]}},"additionalProperties":false}],"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["view","edit"]}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"wp_pattern_sync_status":{"type":"string","title":"","description":"","default":"","enum":["partial","unsynced"]},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"wp_pattern_category":{"description":"The terms assigned to the post in the wp_pattern_category taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/blocks"}]}},"\/wp\/v2\/blocks\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"excerpt_length":{"description":"Override the default excerpt length.","type":"integer","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0627\u06af\u0631 \u0622\u0646 \u0628\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["view","edit"]}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"wp_pattern_sync_status":{"type":"string","title":"","description":"","default":"","enum":["partial","unsynced"]},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"wp_pattern_category":{"description":"The terms assigned to the post in the wp_pattern_category taxonomy.","type":"array","items":{"type":"integer"},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0634\u062e\u0635\u0647 \u0634\u06cc.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0631\u0648\u0646\u0648\u0634\u062a\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["view","edit"]}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"wp_pattern_sync_status":{"type":"string","title":"","description":"","default":"","enum":["partial","unsynced"]},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"wp_pattern_category":{"description":"The terms assigned to the post in the wp_pattern_category taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0634\u062e\u0635\u0647 \u0634\u06cc.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0631\u0648\u0646\u0648\u0634\u062a\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/templates":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"wp_id":{"description":"Limit to the specified post id.","type":"integer","required":false},"area":{"description":"Limit to the specified template part area.","type":"string","required":false},"post_type":{"description":"Post type to get the templates for.","type":"string","required":false}}},{"methods":["POST"],"args":{"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":true},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"default":"","description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"default":"","description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"default":"","description":"Description of template.","type":"string","required":false},"status":{"default":"publish","description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/templates"}]}},"\/wp\/v2\/templates\/lookup":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"The slug of the template to get the fallback for","type":"string","required":true},"is_custom":{"description":"Indicates if a template is custom or part of the template hierarchy","type":"boolean","required":false},"template_prefix":{"description":"The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/templates\/lookup"}]}},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0634\u062e\u0635\u0647 \u0634\u06cc.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0631\u0648\u0646\u0648\u0634\u062a\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false},"area":{"description":"Where the template part is intended for use (header, footer, etc.)","type":"string","required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/template-parts":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"wp_id":{"description":"Limit to the specified post id.","type":"integer","required":false},"area":{"description":"Limit to the specified template part area.","type":"string","required":false},"post_type":{"description":"Post type to get the templates for.","type":"string","required":false}}},{"methods":["POST"],"args":{"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":true},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"default":"","description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"default":"","description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"default":"","description":"Description of template.","type":"string","required":false},"status":{"default":"publish","description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false},"area":{"description":"Where the template part is intended for use (header, footer, etc.)","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/template-parts"}]}},"\/wp\/v2\/template-parts\/lookup":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"The slug of the template to get the fallback for","type":"string","required":true},"is_custom":{"description":"Indicates if a template is custom or part of the template hierarchy","type":"boolean","required":false},"template_prefix":{"description":"The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/template-parts\/lookup"}]}},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false},"area":{"description":"Where the template part is intended for use (header, footer, etc.)","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/global-styles\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","minimum":1,"maximum":100,"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false}}}]},"\/wp\/v2\/global-styles\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the global styles revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the global styles revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/global-styles\/themes\/(?P[\\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)\/variations":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":false},"args":{"stylesheet":{"description":"The theme identifier","type":"string","required":false}}}]},"\/wp\/v2\/global-styles\/themes\/(?P[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":false},"args":{"stylesheet":{"description":"The theme identifier","type":"string","required":false}}}]},"\/wp\/v2\/global-styles\/(?P[\\\/\\d+]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":false},"args":{"id":{"description":"ID of global styles config.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":false},"args":{"styles":{"description":"Global styles.","type":["object"],"required":false},"settings":{"description":"Global settings.","type":["object"],"required":false},"title":{"description":"Title of the global styles variation.","type":["object","string"],"properties":{"raw":{"description":"Title for the global styles variation, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false}}}]},"\/wp\/v2\/navigation":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/navigation"}]}},"\/wp\/v2\/navigation\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0627\u06af\u0631 \u0622\u0646 \u0628\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0634\u062e\u0635\u0647 \u0634\u06cc.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0631\u0648\u0646\u0648\u0634\u062a\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit","embed"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/font-families":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"id","enum":["id","include"],"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"theme_json_version":{"description":"Version of the theme.json schema used for the typography settings.","type":"integer","default":3,"minimum":2,"maximum":3,"required":false},"font_family_settings":{"description":"font-family declaration in theme.json format, encoded as a string.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/font-families"}]}},"\/wp\/v2\/font-families\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"theme_json_version":{"description":"Version of the theme.json schema used for the typography settings.","type":"integer","default":3,"minimum":2,"maximum":3,"required":false},"font_family_settings":{"description":"font-family declaration in theme.json format, encoded as a string.","type":"string","required":true}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/font-families\/(?P[\\d]+)\/font-faces":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"id","enum":["id","include"],"required":false}}},{"methods":["POST"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"theme_json_version":{"description":"Version of the theme.json schema used for the typography settings.","type":"integer","default":3,"minimum":2,"maximum":3,"required":false},"font_face_settings":{"description":"font-face declaration in theme.json format, encoded as a string.","type":"string","required":true}}}]},"\/wp\/v2\/font-families\/(?P[\\d]+)\/font-faces\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"id":{"description":"Unique identifier for the font face.","type":"integer","required":true},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"id":{"description":"Unique identifier for the font face.","type":"integer","required":true},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/rm_content_editor":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/rm_content_editor"}]}},"\/wp\/v2\/rm_content_editor\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0627\u06af\u0631 \u0622\u0646 \u0628\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/rm_content_editor\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"\u0627\u06cc\u0646\u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0628\u0627 \u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/rm_content_editor\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/rank_math_schema":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u067e\u0633 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0628\u0627 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0646\u0627\u0645\u06a9 \u062e\u0627\u0635.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/rank_math_schema"}]}},"\/wp\/v2\/rank_math_schema\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0627\u06af\u0631 \u0622\u0646 \u0628\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private"],"required":false},"password":{"description":"\u06cc\u06a9 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0645\u062d\u0627\u0641\u0638\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u062d\u062a\u0648\u0627 \u0648 \u0686\u06a9\u06cc\u062f\u0647.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/types":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/types"}]}},"\/wp\/v2\/types\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"type":{"description":"\u06cc\u06a9 \u0634\u0646\u0627\u0633\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0646\u0648\u0639 \u0646\u0648\u0634\u062a\u0647.","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/statuses":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/statuses"}]}},"\/wp\/v2\/statuses\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"status":{"description":"\u0645\u0634\u062e\u0635\u200c\u06a9\u0646\u0646\u062f\u0647\u0654 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0648\u0636\u0639\u06cc\u062a.","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/taxonomies":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"type":{"description":"\u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 \u0646\u062a\u0627\u06cc\u062c \u0628\u0647 \u0645\u0648\u0627\u0631\u062f\u06cc \u06a9\u0647 \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u06cc\u06a9 \u0646\u0648\u0639 \u0646\u0648\u0634\u062a\u0647 \u062e\u0627\u0635 \u0647\u0633\u062a\u0646\u062f.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/taxonomies"}]}},"\/wp\/v2\/taxonomies\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"taxonomy":{"description":"\u06cc\u06a9 \u0634\u0646\u0627\u0633\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0631\u062f\u0647.","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/categories":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":" \u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0645\u062c\u0645\u0648\u0639\u0647 \u0628\u0631\u0627\u0633\u0627\u0633 \u0635\u0641\u062a \u0631\u062f\u0647.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0622\u06cc\u0627 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u062f\u0627\u062f\u0647 \u0646\u0634\u062f\u0647 \u0628\u0647 \u0647\u0631 \u067e\u0633\u062a\u06cc \u0645\u062e\u0641\u06cc \u0634\u0648\u062f.","type":"boolean","default":false,"required":false},"parent":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u06cc\u06a9 \u0633\u0631\u0622\u063a\u0627\u0632 \u062e\u0627\u0635.","type":"integer","required":false},"post":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u06cc\u06a9 \u0646\u0648\u0634\u062a\u0647 \u062e\u0627\u0635.","type":"integer","default":null,"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc \u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f\u06cc \u0628\u0627 \u06cc\u06a9 \u0646\u0627\u0645\u06a9 \u06cc\u0627 \u0628\u06cc\u0634\u062a\u0631. ","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":true},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"parent":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0627\u0635\u0637\u0644\u0627\u062d \u0648\u0627\u0644\u062f.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/categories"}]}},"\/wp\/v2\/categories\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"parent":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0627\u0635\u0637\u0644\u0627\u062d \u0648\u0627\u0644\u062f.","type":"integer","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0637\u0628\u0642\u0647\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0646\u062f.","required":false}}}]},"\/wp\/v2\/tags":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":" \u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0645\u062c\u0645\u0648\u0639\u0647 \u0628\u0631\u0627\u0633\u0627\u0633 \u0635\u0641\u062a \u0631\u062f\u0647.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0622\u06cc\u0627 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u062f\u0627\u062f\u0647 \u0646\u0634\u062f\u0647 \u0628\u0647 \u0647\u0631 \u067e\u0633\u062a\u06cc \u0645\u062e\u0641\u06cc \u0634\u0648\u062f.","type":"boolean","default":false,"required":false},"post":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u06cc\u06a9 \u0646\u0648\u0634\u062a\u0647 \u062e\u0627\u0635.","type":"integer","default":null,"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc \u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f\u06cc \u0628\u0627 \u06cc\u06a9 \u0646\u0627\u0645\u06a9 \u06cc\u0627 \u0628\u06cc\u0634\u062a\u0631. ","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":true},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/tags"}]}},"\/wp\/v2\/tags\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0637\u0628\u0642\u0647\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0646\u062f.","required":false}}}]},"\/wp\/v2\/menus":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":" \u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0645\u062c\u0645\u0648\u0639\u0647 \u0628\u0631\u0627\u0633\u0627\u0633 \u0635\u0641\u062a \u0631\u062f\u0647.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0622\u06cc\u0627 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u062f\u0627\u062f\u0647 \u0646\u0634\u062f\u0647 \u0628\u0647 \u0647\u0631 \u067e\u0633\u062a\u06cc \u0645\u062e\u0641\u06cc \u0634\u0648\u062f.","type":"boolean","default":false,"required":false},"post":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u06cc\u06a9 \u0646\u0648\u0634\u062a\u0647 \u062e\u0627\u0635.","type":"integer","default":null,"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc \u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f\u06cc \u0628\u0627 \u06cc\u06a9 \u0646\u0627\u0645\u06a9 \u06cc\u0627 \u0628\u06cc\u0634\u062a\u0631. ","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":true},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false},"locations":{"description":"The locations assigned to the menu.","type":"array","items":{"type":"string"},"required":false},"auto_add":{"description":"Whether to automatically add top level pages to this menu.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/menus"}]}},"\/wp\/v2\/menus\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false},"locations":{"description":"The locations assigned to the menu.","type":"array","items":{"type":"string"},"required":false},"auto_add":{"description":"Whether to automatically add top level pages to this menu.","type":"boolean","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0637\u0628\u0642\u0647\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0646\u062f.","required":false}}}]},"\/wp\/v2\/wp_pattern_category":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":" \u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0645\u062c\u0645\u0648\u0639\u0647 \u0628\u0631\u0627\u0633\u0627\u0633 \u0635\u0641\u062a \u0631\u062f\u0647.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"\u0627\u06cc\u0646 \u06a9\u0647 \u0622\u06cc\u0627 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u062f\u0627\u062f\u0647 \u0646\u0634\u062f\u0647 \u0628\u0647 \u0647\u0631 \u067e\u0633\u062a\u06cc \u0645\u062e\u0641\u06cc \u0634\u0648\u062f.","type":"boolean","default":false,"required":false},"post":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u06cc\u06a9 \u0646\u0648\u0634\u062a\u0647 \u062e\u0627\u0635.","type":"integer","default":null,"required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc \u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648 \u0628\u0647 \u0645\u0648\u0627\u0631\u062f\u06cc \u0628\u0627 \u06cc\u06a9 \u0646\u0627\u0645\u06a9 \u06cc\u0627 \u0628\u06cc\u0634\u062a\u0631. ","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":true},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/wp_pattern_category"}]}},"\/wp\/v2\/wp_pattern_category\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d HTML \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"name":{"description":"\u0639\u0646\u0648\u0627\u0646 HTML \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"string","required":false},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0644\u0641\u0628\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0645\u0648\u0631\u062f \u06cc\u06a9\u062a\u0627 \u0627\u0632 \u0646\u0648\u0639 \u0622\u0646.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0627\u0635\u0637\u0644\u0627\u062d.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0645\u0648\u0627\u0631\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u06cc\u062f \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u0646\u062f\u060c \u0637\u0628\u0642\u0647\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0646\u062f.","required":false}}}]},"\/wp\/v2\/users":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"default":"asc","description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"name","description":"Sort collection by user attribute.","enum":["id","include","name","registered_date","slug","include_slugs","email","url"],"type":"string","required":false},"slug":{"description":"\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc \u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646\u06cc \u0628\u0627 \u06cc\u06a9 \u0646\u0627\u0645\u06a9 \u06cc\u0627 \u0628\u06cc\u0634\u062a\u0631.","type":"array","items":{"type":"string"},"required":false},"roles":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u0627\u0646\u06cc \u06a9\u0647 \u062d\u062f\u0627\u0642\u0644 \u0628\u0627 \u06cc\u06a9 \u0646\u0642\u0634 \u0627\u0631\u0627\u0626\u0647 \u0634\u062f\u0647 \u062e\u0627\u0635 \u062a\u0637\u0627\u0628\u0642 \u062f\u0627\u0631\u0646\u062f. \u0628\u0635\u0648\u0631\u062a \u0641\u0647\u0631\u0633\u062a csv \u06cc\u0627 \u06cc\u06a9 \u0646\u0642\u0634 \u0642\u0627\u0628\u0644 \u0642\u0628\u0648\u0644 \u0627\u0633\u062a.","type":"array","items":{"type":"string"},"required":false},"capabilities":{"description":"Limit result set to users matching at least one specific capability provided. Accepts csv list or single capability.","type":"array","items":{"type":"string"},"required":false},"who":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646\u06cc \u06a9\u0647 \u0646\u0648\u06cc\u0633\u0646\u062f\u06af\u0627\u0646 \u0631\u0627 \u062f\u0631 \u0646\u0638\u0631 \u06af\u0631\u0641\u062a\u0647 \u0627\u0646\u062f.","type":"string","enum":["authors"],"required":false},"has_published_posts":{"description":"Limit result set to users who have published posts.","type":["boolean","array"],"items":{"type":"string","enum":{"post":"post","page":"page","attachment":"attachment","nav_menu_item":"nav_menu_item","wp_block":"wp_block","wp_template":"wp_template","wp_template_part":"wp_template_part","wp_global_styles":"wp_global_styles","wp_navigation":"wp_navigation","wp_font_family":"wp_font_family","wp_font_face":"wp_font_face","rm_content_editor":"rm_content_editor","rank_math_schema":"rank_math_schema"}},"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["email","name","id","username","slug"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"username":{"description":"\u0646\u0627\u0645 \u0648\u0631\u0648\u062f \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":true},"name":{"description":"\u0646\u0627\u0645 \u0646\u0645\u0627\u06cc\u0634\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"first_name":{"description":"\u0646\u0627\u0645 \u06a9\u0648\u0686\u06a9 \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"last_name":{"description":"\u0646\u0627\u0645 \u062e\u0627\u0646\u0648\u0627\u062f\u06af\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"email":{"description":"\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","format":"email","required":true},"url":{"description":"\u0646\u0634\u0627\u0646 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","format":"uri","required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"locale":{"description":"\u0632\u0628\u0627\u0646 \u0645\u062d\u0644\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","enum":["","en_US","af","fa_IR"],"required":false},"nickname":{"description":"\u0646\u0627\u0645 \u0645\u0633\u062a\u0639\u0627\u0631 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u062d\u0631\u0641\u06cc\u200c\u0639\u062f\u062f\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"roles":{"description":"\u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631.","type":"array","items":{"type":"string"},"required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 (\u0647\u0631\u06af\u0632 \u0634\u0627\u0645\u0644 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f).","type":"string","required":true},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"persisted_preferences":{"type":"object","title":"","description":"","default":[],"context":["edit"],"properties":{"_modified":{"description":"The date and time the preferences were updated.","type":"string","format":"date-time","readonly":false}},"additionalProperties":true}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/users"}]}},"\/wp\/v2\/users\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"integer","required":false},"username":{"description":"\u0646\u0627\u0645 \u0648\u0631\u0648\u062f \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"name":{"description":"\u0646\u0627\u0645 \u0646\u0645\u0627\u06cc\u0634\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"first_name":{"description":"\u0646\u0627\u0645 \u06a9\u0648\u0686\u06a9 \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"last_name":{"description":"\u0646\u0627\u0645 \u062e\u0627\u0646\u0648\u0627\u062f\u06af\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"email":{"description":"\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","format":"email","required":false},"url":{"description":"\u0646\u0634\u0627\u0646 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","format":"uri","required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"locale":{"description":"\u0632\u0628\u0627\u0646 \u0645\u062d\u0644\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","enum":["","en_US","af","fa_IR"],"required":false},"nickname":{"description":"\u0646\u0627\u0645 \u0645\u0633\u062a\u0639\u0627\u0631 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u062d\u0631\u0641\u06cc\u200c\u0639\u062f\u062f\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"roles":{"description":"\u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631.","type":"array","items":{"type":"string"},"required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 (\u0647\u0631\u06af\u0632 \u0634\u0627\u0645\u0644 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f).","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"persisted_preferences":{"type":"object","title":"","description":"","default":[],"context":["edit"],"properties":{"_modified":{"description":"The date and time the preferences were updated.","type":"string","format":"date-time","readonly":false}},"additionalProperties":true}},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"\u0644\u0627\u0632\u0645 \u0627\u0633\u062a \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f\u060c \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0628\u062e\u0634 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false},"reassign":{"type":"integer","description":"\u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0627\u062f\u0646 \u062f\u0648\u0628\u0627\u0631\u0647 \u067e\u06cc\u0648\u0646\u062f\u0647\u0627 \u0648 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062d\u0630\u0641 \u0634\u062f\u0647 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u0627\u06cc\u0646 \u0634\u0646\u0627\u0633\u0647 \u06a9\u0627\u0631\u0628\u0631\u06cc.","required":true}}}]},"\/wp\/v2\/users\/me":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"username":{"description":"\u0646\u0627\u0645 \u0648\u0631\u0648\u062f \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"name":{"description":"\u0646\u0627\u0645 \u0646\u0645\u0627\u06cc\u0634\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"first_name":{"description":"\u0646\u0627\u0645 \u06a9\u0648\u0686\u06a9 \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"last_name":{"description":"\u0646\u0627\u0645 \u062e\u0627\u0646\u0648\u0627\u062f\u06af\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"email":{"description":"\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","format":"email","required":false},"url":{"description":"\u0646\u0634\u0627\u0646 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","format":"uri","required":false},"description":{"description":"\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"locale":{"description":"\u0632\u0628\u0627\u0646 \u0645\u062d\u0644\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","enum":["","en_US","af","fa_IR"],"required":false},"nickname":{"description":"\u0646\u0627\u0645 \u0645\u0633\u062a\u0639\u0627\u0631 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"slug":{"description":"\u06cc\u06a9 \u0645\u0634\u062e\u0635 \u06a9\u0646\u0646\u062f\u0647 \u062d\u0631\u0641\u06cc\u200c\u0639\u062f\u062f\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631.","type":"string","required":false},"roles":{"description":"\u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631.","type":"array","items":{"type":"string"},"required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 (\u0647\u0631\u06af\u0632 \u0634\u0627\u0645\u0644 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f).","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"persisted_preferences":{"type":"object","title":"","description":"","default":[],"context":["edit"],"properties":{"_modified":{"description":"The date and time the preferences were updated.","type":"string","format":"date-time","readonly":false}},"additionalProperties":true}},"required":false}}},{"methods":["DELETE"],"args":{"force":{"type":"boolean","default":false,"description":"\u0644\u0627\u0632\u0645 \u0627\u0633\u062a \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f\u060c \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0628\u062e\u0634 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f.","required":false},"reassign":{"type":"integer","description":"\u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0627\u062f\u0646 \u062f\u0648\u0628\u0627\u0631\u0647 \u067e\u06cc\u0648\u0646\u062f\u0647\u0627 \u0648 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u062d\u0630\u0641 \u0634\u062f\u0647 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u0627\u06cc\u0646 \u0634\u0646\u0627\u0633\u0647 \u06a9\u0627\u0631\u0628\u0631\u06cc.","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/users\/me"}]}},"\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords":{"namespace":"wp\/v2","methods":["GET","POST","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"app_id":{"description":"A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.","type":"string","oneOf":[{"type":"string","format":"uuid"},{"type":"string","enum":[""]}],"required":false},"name":{"description":"The name of the application password.","type":"string","minLength":1,"pattern":".*\\S.*","required":true}}},{"methods":["DELETE"],"args":[]}]},"\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords\/introspect":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords\/(?P[\\w\\-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"app_id":{"description":"A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.","type":"string","oneOf":[{"type":"string","format":"uuid"},{"type":"string","enum":[""]}],"required":false},"name":{"description":"The name of the application password.","type":"string","minLength":1,"pattern":".*\\S.*","required":false}}},{"methods":["DELETE"],"args":[]}]},"\/wp\/v2\/comments":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"after":{"description":"\u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 \u067e\u0627\u0633\u062e \u0628\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u0642\u0628\u0644 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"author":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc \u062e\u0627\u0635. \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0645\u062c\u0648\u0632 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"required":false},"author_exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc \u062e\u0627\u0635 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0645\u06cc\u200c\u0646\u0645\u0627\u06cc\u062f. \u0646\u06cc\u0627\u0632 \u0628\u0647 \u0645\u062c\u0648\u0632 \u062f\u0627\u0631\u062f.","type":"array","items":{"type":"integer"},"required":false},"author_email":{"default":null,"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647 \u062e\u0627\u0635. \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0645\u062c\u0648\u0632 \u0627\u0633\u062a. ","format":"email","type":"string","required":false},"before":{"description":"\u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 \u067e\u0627\u0633\u062e \u0628\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u0642\u0628\u0644 \u0627\u0632 \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0633\u0627\u0632\u06af\u0627\u0631 \u0628\u0627 ISO8601.","type":"string","format":"date-time","required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by comment attribute.","type":"string","default":"date_gmt","enum":["date","date_gmt","id","include","post","parent","type"],"required":false},"parent":{"default":[],"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u0645\u0627\u062f\u0631 \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"required":false},"parent_exclude":{"default":[],"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u0648\u0627\u0644\u062f \u062e\u0627\u0635 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0645\u06cc\u200c\u0646\u0645\u0627\u06cc\u062f.","type":"array","items":{"type":"integer"},"required":false},"post":{"default":[],"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"required":false},"status":{"default":"approve","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u0648\u0636\u0639\u06cc\u062a \u062e\u0627\u0635. \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0645\u062c\u0648\u0632 \u0627\u0633\u062a. ","type":"string","required":false},"type":{"default":"comment","description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u06cc\u0635 \u06cc\u0627\u0641\u062a\u0647 \u06cc\u06a9 \u0646\u0648\u0639 \u062e\u0627\u0635. \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0645\u062c\u0648\u0632 \u0627\u0633\u062a.","type":"string","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0627\u06af\u0631 \u0622\u0646 \u0628\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0627\u0633\u062a.","type":"string","required":false}}},{"methods":["POST"],"args":{"author":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0634\u06cc\u0621 \u06a9\u0627\u0631\u0628\u0631\u060c \u0627\u06af\u0631 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647 \u06cc\u06a9 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0648\u062f.","type":"integer","required":false},"author_email":{"description":"Email address for the comment author.","type":"string","format":"email","required":false},"author_ip":{"description":"IP address for the comment author.","type":"string","format":"ip","required":false},"author_name":{"description":"Display name for the comment author.","type":"string","required":false},"author_url":{"description":"URL for the comment author.","type":"string","format":"uri","required":false},"author_user_agent":{"description":"User agent for the comment author.","type":"string","required":false},"content":{"description":"The content for the comment.","type":"object","properties":{"raw":{"description":"Content for the comment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the comment, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"date":{"description":"The date the comment was published, in the site's timezone.","type":"string","format":"date-time","required":false},"date_gmt":{"description":"The date the comment was published, as GMT.","type":"string","format":"date-time","required":false},"parent":{"default":0,"description":"The ID for the parent of the comment.","type":"integer","required":false},"post":{"default":0,"description":"\u0634\u0646\u0627\u0633\u0647 \u0645\u0631\u062a\u0628\u0637 \u0634\u062f\u0647 \u0628\u0627 \u0634\u06cc\u0621 \u0646\u0648\u0634\u062a\u0647.","type":"integer","required":false},"status":{"description":"State of the comment.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"_wp_note_status":{"type":"string","title":"","description":"Note resolution status","default":"","enum":["resolved","reopen"]}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/comments"}]}},"\/wp\/v2\/comments\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the comment.","type":"integer","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0645\u0627\u062f\u0631 \u062f\u06cc\u062f\u06af\u0627\u0647 (\u0627\u06af\u0631 \u0646\u0648\u0634\u062a\u0647 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0628\u0627\u0634\u062f).","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the comment.","type":"integer","required":false},"author":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0634\u06cc\u0621 \u06a9\u0627\u0631\u0628\u0631\u060c \u0627\u06af\u0631 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647 \u06cc\u06a9 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0648\u062f.","type":"integer","required":false},"author_email":{"description":"Email address for the comment author.","type":"string","format":"email","required":false},"author_ip":{"description":"IP address for the comment author.","type":"string","format":"ip","required":false},"author_name":{"description":"Display name for the comment author.","type":"string","required":false},"author_url":{"description":"URL for the comment author.","type":"string","format":"uri","required":false},"author_user_agent":{"description":"User agent for the comment author.","type":"string","required":false},"content":{"description":"The content for the comment.","type":"object","properties":{"raw":{"description":"Content for the comment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the comment, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"date":{"description":"The date the comment was published, in the site's timezone.","type":"string","format":"date-time","required":false},"date_gmt":{"description":"The date the comment was published, as GMT.","type":"string","format":"date-time","required":false},"parent":{"description":"The ID for the parent of the comment.","type":"integer","required":false},"post":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0645\u0631\u062a\u0628\u0637 \u0634\u062f\u0647 \u0628\u0627 \u0634\u06cc\u0621 \u0646\u0648\u0634\u062a\u0647.","type":"integer","required":false},"status":{"description":"State of the comment.","type":"string","required":false},"meta":{"description":"\u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062a\u0627.","type":"object","properties":{"_wp_note_status":{"type":"string","title":"","description":"Note resolution status","default":"","enum":["resolved","reopen"]}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the comment.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false},"password":{"description":"\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0628\u0631\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0645\u0627\u062f\u0631 \u062f\u06cc\u062f\u06af\u0627\u0647 (\u0627\u06af\u0631 \u0646\u0648\u0634\u062a\u0647 \u0645\u062d\u0627\u0641\u0638\u062a \u0634\u062f\u0647 \u0628\u0627\u0634\u062f).","type":"string","required":false}}}]},"\/wp\/v2\/search":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"type":{"default":"post","description":"\u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 \u0646\u062a\u0627\u06cc\u062c \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u06cc\u06a9 \u0646\u0648\u0639 \u0634\u06cc\u0621.","type":"string","enum":["post","term","post-format"],"required":false},"subtype":{"default":"any","description":"\u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 \u0646\u062a\u0627\u06cc\u062c \u0628\u0647 \u0645\u0648\u0627\u0631\u062f \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0634\u06cc\u0621 \u0632\u06cc\u0631\u0645\u062c\u0645\u0648\u0639\u0647.","type":"array","items":{"enum":["post","page","category","post_tag","any"],"type":"string"},"required":false},"exclude":{"description":"\u0645\u0637\u0645\u0626\u0646 \u0634\u0648\u06cc\u062f \u0646\u062a\u06cc\u062c\u0647 \u0645\u0633\u062a\u062b\u0646\u06cc \u0627\u0632 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635 \u0627\u0633\u062a. ","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"\u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0648\u062f\u0646 \u062a\u062a\u06cc\u062c\u0647 \u0628\u0647 \u0634\u0646\u0627\u0633\u0647\u200c\u0647\u0627\u06cc \u062e\u0627\u0635.","type":"array","items":{"type":"integer"},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/search"}]}},"\/wp\/v2\/block-renderer\/(?P[a-z0-9-]+\/[a-z0-9-]+)":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET","POST"],"args":{"name":{"description":"\u0646\u0627\u0645 \u062b\u0628\u062a \u0634\u062f\u0647 \u06cc\u06a9\u062a\u0627 \u0628\u0631\u0627\u06cc \u0628\u0644\u0648\u06a9.","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["edit"],"default":"view","required":false},"attributes":{"description":"Attributes for the block.","type":"object","default":[],"required":false},"post_id":{"description":"\u0634\u0646\u0627\u0633\u0647 \u0645\u062a\u0646 \u0646\u0648\u0634\u062a\u0647.","type":"integer","required":false}}}]},"\/wp\/v2\/block-types":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"namespace":{"description":"Block namespace.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/block-types"}]}},"\/wp\/v2\/block-types\/(?P[a-zA-Z0-9_-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"namespace":{"description":"Block namespace.","type":"string","required":false}}}]},"\/wp\/v2\/block-types\/(?P[a-zA-Z0-9_-]+)\/(?P[a-zA-Z0-9_-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"description":"Block name.","type":"string","required":false},"namespace":{"description":"Block namespace.","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/settings":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"title":{"title":"\u0639\u0646\u0648\u0627\u0646","description":"\u0639\u0646\u0648\u0627\u0646 \u0633\u0627\u06cc\u062a.","type":"string","required":false},"description":{"title":"\u0645\u0639\u0631\u0641\u06cc \u06a9\u0648\u062a\u0627\u0647","description":"\u0634\u0639\u0627\u0631 \u0633\u0627\u06cc\u062a.","type":"string","required":false},"url":{"title":"","description":"\u0646\u0634\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a.","type":"string","format":"uri","required":false},"email":{"title":"","description":"\u0627\u06cc\u0646 \u0646\u0634\u0627\u0646\u06cc \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0647\u0627\u06cc \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc\u060c \u0647\u0645\u0627\u0646\u0646\u062f \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062a\u0627\u0632\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"string","format":"email","required":false},"timezone":{"title":"","description":"\u0634\u0647\u0631\u06cc \u062f\u0631 \u0645\u0646\u0637\u0642\u0647\u200c\u06cc \u0632\u0645\u0627\u0646\u06cc \u0634\u0645\u0627.","type":"string","required":false},"date_format":{"title":"","description":"\u06cc\u06a9 \u0633\u0627\u062e\u062a\u0627\u0631 \u0628\u0631\u0627\u06cc \u0647\u0645\u0647\u0654 \u062a\u0627\u0631\u06cc\u062e\u200c\u0647\u0627.","type":"string","required":false},"time_format":{"title":"","description":"\u06cc\u06a9 \u0633\u0627\u062e\u062a\u0627\u0631 \u0632\u0645\u0627\u0646 \u0628\u0631\u0627\u06cc \u062a\u0645\u0627\u0645 \u0631\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0632\u0645\u0627\u0646\u06cc.","type":"string","required":false},"start_of_week":{"title":"","description":"\u0639\u062f\u062f \u0631\u0648\u0632\u06cc \u06a9\u0647 \u0647\u0641\u062a\u0647 \u0627\u0632 \u0622\u0646 \u0622\u063a\u0627\u0632 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","required":false},"language":{"title":"","description":"\u06a9\u062f \u0628\u0648\u0645\u06cc \u0648\u0631\u062f\u067e\u0631\u0633.","type":"string","required":false},"use_smilies":{"title":"","description":"\u062a\u0628\u062f\u06cc\u0644 \u0634\u06a9\u0644\u06a9\u200c\u0647\u0627\u06cc\u06cc \u0645\u0627\u0646\u0646\u062f :-) \u0648 :-P \u0628\u0647 \u06af\u0631\u0627\u0641\u06cc\u06a9 \u0647\u0646\u06af\u0627\u0645 \u0646\u0645\u0627\u06cc\u0634.","type":"boolean","required":false},"default_category":{"title":"","description":"\u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u067e\u06cc\u0634\u0641\u0631\u0636 \u0646\u0648\u0634\u062a\u0647.","type":"integer","required":false},"default_post_format":{"title":"","description":"\u0633\u0627\u062e\u062a\u0627\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0646\u0648\u0634\u062a\u0647.","type":"string","required":false},"posts_per_page":{"title":"Maximum posts per page","description":"\u0628\u06cc\u0634\u062a\u0631\u06cc\u0646 \u062a\u0639\u062f\u0627\u062f \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u062f\u0631 \u0647\u0631 \u0628\u0631\u06af\u0647\u200c\u06cc \u0628\u0644\u0627\u06af.","type":"integer","required":false},"show_on_front":{"title":"Show on front","description":"What to show on the front page","type":"string","required":false},"page_on_front":{"title":"Page on front","description":"The ID of the page that should be displayed on the front page","type":"integer","required":false},"page_for_posts":{"title":"","description":"The ID of the page that should display the latest posts","type":"integer","required":false},"default_ping_status":{"title":"","description":"\u0627\u062c\u0627\u0632\u0647 \u062f\u0627\u062f\u0646 \u0628\u0647 \u062f\u06cc\u06af\u0631 \u0633\u0627\u06cc\u062a\u200c\u0647\u0627 \u0628\u0631\u0627\u06cc \u0641\u0631\u0633\u062a\u0627\u062f\u0646 \u0628\u0627\u0632\u062a\u0627\u0628 \u0628\u0631 \u0645\u0642\u0627\u0644\u0627\u062a \u062a\u0627\u0632\u0647.","type":"string","enum":["open","closed"],"required":false},"default_comment_status":{"title":"Allow comments on new posts","description":"Allow people to submit comments on new posts.","type":"string","enum":["open","closed"],"required":false},"site_logo":{"title":"\u0646\u0634\u0627\u0646","description":"Site logo.","type":"integer","required":false},"site_icon":{"title":"Icon","description":"Site icon.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/settings"}]}},"\/wp\/v2\/themes":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"status":{"description":"\u0646\u062a\u06cc\u062c\u0647 \u0645\u062d\u062f\u0648\u062f \u0634\u062f\u0647 \u0628\u0647 \u067e\u0648\u0633\u062a\u0647\u200c\u0647\u0627\u06cc \u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u06cc\u0627 \u0686\u0646\u062f \u0648\u0636\u0639\u06cc\u062a.","type":"array","items":{"enum":["active","inactive"],"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/themes"}]}},"\/wp\/v2\/themes\/(?P[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"stylesheet":{"description":"The theme's stylesheet. This uniquely identifies the theme.","type":"string","required":false}}}]},"\/wp\/v2\/plugins":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","required":false},"status":{"description":"Limits results to plugins with the given status.","type":"array","items":{"type":"string","enum":["inactive","active"]},"required":false}}},{"methods":["POST"],"args":{"slug":{"type":"string","description":"WordPress.org plugin directory slug.","pattern":"[\\w\\-]+","required":true},"status":{"description":"The plugin activation status.","type":"string","enum":["inactive","active"],"default":"inactive","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/plugins"}]}},"\/wp\/v2\/plugins\/(?P[^.\\\/]+(?:\\\/[^.\\\/]+)?)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"plugin":{"type":"string","pattern":"[^.\\\/]+(?:\\\/[^.\\\/]+)?","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"plugin":{"type":"string","pattern":"[^.\\\/]+(?:\\\/[^.\\\/]+)?","required":false},"status":{"description":"The plugin activation status.","type":"string","enum":["inactive","active"],"required":false}}},{"methods":["DELETE"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"plugin":{"type":"string","pattern":"[^.\\\/]+(?:\\\/[^.\\\/]+)?","required":false}}}]},"\/wp\/v2\/sidebars":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/sidebars"}]}},"\/wp\/v2\/sidebars\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a registered sidebar","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"widgets":{"description":"Nested widgets.","type":"array","items":{"type":["object","string"]},"required":false}}}]},"\/wp\/v2\/widget-types":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/widget-types"}]}},"\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The widget type id.","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)\/encode":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"The widget type id.","type":"string","required":true},"instance":{"description":"Current instance settings of the widget.","type":"object","required":false},"form_data":{"description":"Serialized widget form data to encode into instance settings.","type":"string","required":false}}}]},"\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)\/render":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"The widget type id.","type":"string","required":true},"instance":{"description":"Current instance settings of the widget.","type":"object","required":false}}}]},"\/wp\/v2\/widgets":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"sidebar":{"description":"The sidebar to return widgets for.","type":"string","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the widget.","type":"string","required":false},"id_base":{"description":"The type of the widget. Corresponds to ID in widget-types endpoint.","type":"string","required":false},"sidebar":{"default":"wp_inactive_widgets","description":"The sidebar the widget belongs to.","type":"string","required":true},"instance":{"description":"Instance settings of the widget, if supported.","type":"object","properties":{"encoded":{"description":"Base64 encoded representation of the instance settings.","type":"string","context":["edit"]},"hash":{"description":"Cryptographic hash of the instance settings.","type":"string","context":["edit"]},"raw":{"description":"Unencoded instance settings, if supported.","type":"object","context":["edit"]}},"required":false},"form_data":{"description":"URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/widgets"}]}},"\/wp\/v2\/widgets\/(?P[\\w\\-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the widget.","type":"string","required":false},"id_base":{"description":"The type of the widget. Corresponds to ID in widget-types endpoint.","type":"string","required":false},"sidebar":{"description":"The sidebar the widget belongs to.","type":"string","required":false},"instance":{"description":"Instance settings of the widget, if supported.","type":"object","properties":{"encoded":{"description":"Base64 encoded representation of the instance settings.","type":"string","context":["edit"]},"hash":{"description":"Cryptographic hash of the instance settings.","type":"string","context":["edit"]},"raw":{"description":"Unencoded instance settings, if supported.","type":"object","context":["edit"]}},"required":false},"form_data":{"description":"URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"force":{"description":"Whether to force removal of the widget, or move it to the inactive sidebar.","type":"boolean","required":false}}}]},"\/wp\/v2\/block-directory\/search":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"term":{"description":"Limit result set to blocks matching the search term.","type":"string","minLength":1,"required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/block-directory\/search"}]}},"\/wp\/v2\/pattern-directory\/patterns":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":100,"minimum":1,"maximum":100,"required":false},"search":{"description":"\u0646\u062a\u0627\u06cc\u062c \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u062a\u0637\u0627\u0628\u0642 \u0628\u0627 \u06cc\u06a9 \u0631\u0634\u062a\u0647 \u0631\u0627 \u0645\u062d\u062f\u0648\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"string","minLength":1,"required":false},"category":{"description":"Limit results to those matching a category ID.","type":"integer","minimum":1,"required":false},"keyword":{"description":"Limit results to those matching a keyword ID.","type":"integer","minimum":1,"required":false},"slug":{"description":"Limit results to those matching a pattern (slug).","type":"array","required":false},"offset":{"description":"\u0622\u0641\u0633\u062a \u0646\u062a\u06cc\u062c\u0647 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u062a\u0639\u062f\u0627\u062f \u062e\u0627\u0635 \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u062a\u0646\u0638\u06cc\u0645 \u0646\u0645\u0627\u06cc\u06cc\u062f.","type":"integer","required":false},"order":{"description":"\u0645\u0631\u062a\u0628 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc \u0635\u0639\u0648\u062f\u06cc \u06cc\u0627 \u0646\u0632\u0648\u0644\u06cc.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","favorite_count"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/pattern-directory\/patterns"}]}},"\/wp\/v2\/block-patterns\/patterns":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/block-patterns\/patterns"}]}},"\/wp\/v2\/block-patterns\/categories":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/block-patterns\/categories"}]}},"\/wp-site-health\/v1":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp-site-health\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1"}]}},"\/wp-site-health\/v1\/tests\/background-updates":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1\/tests\/background-updates"}]}},"\/wp-site-health\/v1\/tests\/loopback-requests":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1\/tests\/loopback-requests"}]}},"\/wp-site-health\/v1\/tests\/https-status":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1\/tests\/https-status"}]}},"\/wp-site-health\/v1\/tests\/dotorg-communication":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1\/tests\/dotorg-communication"}]}},"\/wp-site-health\/v1\/tests\/authorization-header":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1\/tests\/authorization-header"}]}},"\/wp-site-health\/v1\/directory-sizes":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1\/directory-sizes"}]}},"\/wp-site-health\/v1\/tests\/page-cache":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-site-health\/v1\/tests\/page-cache"}]}},"\/wp-block-editor\/v1":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp-block-editor\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-block-editor\/v1"}]}},"\/wp-block-editor\/v1\/url-details":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"description":"The URL to process.","type":"string","format":"uri","required":true}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-block-editor\/v1\/url-details"}]}},"\/wp\/v2\/menu-locations":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/menu-locations"}]}},"\/wp\/v2\/menu-locations\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"location":{"description":"An alphanumeric identifier for the menu location.","type":"string","required":false},"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp-block-editor\/v1\/export":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-block-editor\/v1\/export"}]}},"\/wp-block-editor\/v1\/navigation-fallback":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-block-editor\/v1\/navigation-fallback"}]}},"\/wp\/v2\/font-collections":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/font-collections"}]}},"\/wp\/v2\/font-collections\/(?P[\\\/\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp-abilities\/v1":{"namespace":"wp-abilities\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp-abilities\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-abilities\/v1"}]}},"\/wp-abilities\/v1\/categories":{"namespace":"wp-abilities\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":50,"minimum":1,"maximum":100,"required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-abilities\/v1\/categories"}]}},"\/wp-abilities\/v1\/categories\/(?P[a-z0-9]+(?:-[a-z0-9]+)*)":{"namespace":"wp-abilities\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"Unique identifier for the ability category.","type":"string","pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","required":false}}}]},"\/wp-abilities\/v1\/abilities\/(?P[a-zA-Z0-9\\-\\\/]+?)\/run":{"namespace":"wp-abilities\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET","POST","PUT","PATCH","DELETE"],"args":{"name":{"description":"Unique identifier for the ability.","type":"string","pattern":"^[a-zA-Z0-9\\-\\\/]+$","required":false},"input":{"description":"Input parameters for the ability execution.","type":["integer","number","boolean","string","array","object","null"],"default":null,"required":false}}}]},"\/wp-abilities\/v1\/abilities":{"namespace":"wp-abilities\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u06cc\u0631\u06a9\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a\u061b \u062a\u0639\u06cc\u06cc\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0636\u0648\u0631 \u062f\u0631 \u067e\u0627\u0633\u062e.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"\u0628\u0631\u06af\u0647 \u0641\u0639\u0644\u06cc \u0627\u0632 \u0645\u062c\u0645\u0648\u0639\u0647.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.","type":"integer","default":50,"minimum":1,"maximum":100,"required":false},"category":{"description":"Limit results to abilities in specific ability category.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/8sobh.ir\/wp-json\/wp-abilities\/v1\/abilities"}]}},"\/wp-abilities\/v1\/abilities\/(?P[a-zA-Z0-9\\-\\\/]+)":{"namespace":"wp-abilities\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"description":"Unique identifier for the ability.","type":"string","pattern":"^[a-zA-Z0-9\\-\\\/]+$","required":false}}}]}},"site_logo":0,"site_icon":72806,"site_icon_url":"https:\/\/8sobh.ir\/wp-content\/uploads\/2024\/04\/cropped-01-512.jpg","_links":{"help":[{"href":"https:\/\/developer.wordpress.org\/rest-api\/"}],"wp:featuredmedia":[{"embeddable":true,"type":"site_icon","href":"https:\/\/8sobh.ir\/wp-json\/wp\/v2\/media\/72806"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}