openapi: 3.1.0 info: title: DaVita Web REST API (WordPress REST, davita/v1 + dv-* content) version: wp-json-index-2026-09-05 description: 'Public, unauthenticated read API served by DaVita at https://www.davita.com/wp-json/. Derived mechanically from the WordPress REST route discovery index that DaVita''s own host publishes at that URL (fetched 2026-09-05, HTTP 200, self-identifying as name "DaVita", url https://davita.com). Covers DaVita''s first-party davita/v1 namespace (dialysis-center locator, Kidney Smart class finder, USDA food/nutrient lookup, video and comment endpoints) and the dv-* custom content types (recipes, articles, glossary terms, videos, cookbooks, people, topics). Third-party plugin and WordPress administration namespaces present in the same index (jetpack, kadence, akismet, cron-control, yoast, vip, two-factor, wp-site-health, wp-block-editor) are deliberately excluded: they are not DaVita''s API surface. DaVita does not publish an OpenAPI definition or developer documentation for this surface.' contact: name: DaVita url: https://davita.com/help-center/contact-us/ servers: - url: https://www.davita.com/wp-json description: DaVita WordPress REST API root tags: - name: davita-v1 description: DaVita first-party REST namespace (davita/v1) - name: wp-v2 description: WordPress core REST namespace exposing DaVita dv-* content types components: securitySchemes: applicationPassword: type: http scheme: basic description: 'WordPress Application Passwords. Authorization endpoint declared by the index: https://davita.com/wp-admin/authorize-application.php. Not offered to the public; write routes are staff-only.' cookieNonce: type: apiKey in: header name: X-WP-Nonce description: WordPress cookie authentication nonce, accepted per the Access-Control-Allow-Headers response header. Browser/session only. schemas: WPRestError: type: object description: WordPress REST error envelope observed live on this host (not RFC 9457). properties: code: type: string examples: - rest_no_route - rest_invalid_param - rest_forbidden - dv_token_invalid message: type: string data: type: object properties: status: type: integer params: type: object details: type: object required: - code - message - data paths: /davita/v1: get: operationId: get_davita_v1 summary: GET /davita/v1 description: WordPress REST route /davita/v1 (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: namespace in: query required: false schema: default: davita/v1 - name: context in: query required: false schema: default: view /davita/v1/comments/{postid}: post: operationId: post_davita_v1_comments_postid summary: POST /davita/v1/comments/(?P[\d]+) description: WordPress REST route /davita/v1/comments/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: postid in: path required: true description: Post ID schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: page: type: integer description: Page number security: - applicationPassword: [] - cookieNonce: [] /davita/v1/comments/create: post: operationId: post_davita_v1_comments_create summary: POST /davita/v1/comments/create description: WordPress REST route /davita/v1/comments/create (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: token: type: string description: User token content: type: string description: Comment content postid: type: integer description: Post ID rating: type: integer description: Rating title: type: string description: Comment title parentid: type: integer description: Parent Comment ID required: - token - content - postid security: - applicationPassword: [] - cookieNonce: [] /davita/v1/find-a-center: get: operationId: get_davita_v1_find_a_center summary: GET /davita/v1/find-a-center description: WordPress REST route /davita/v1/find-a-center (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: location in: query required: true schema: type: string description: Location (City, State name or Zip code) - name: lat in: query required: false schema: type: string description: Latitude of the location - name: lng in: query required: false schema: type: string description: Longitude of the location - name: modalities in: query required: false schema: type: integer description: Category of the center /davita/v1/find-a-class: get: operationId: get_davita_v1_find_a_class summary: GET /davita/v1/find-a-class description: WordPress REST route /davita/v1/find-a-class (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: location in: query required: false schema: type: string description: Location (State name or Zip code) - name: language in: query required: false schema: type: integer description: Language (English or Spanish) - name: sort in: query required: false schema: type: integer description: Sorting method (Date or Distance) - name: classes in: query required: false schema: type: integer description: Class type (in-person or online) - name: days in: query required: false schema: type: integer description: The day of the class - name: time in: query required: false schema: type: string description: Time of day for the class /davita/v1/icons: get: operationId: get_davita_v1_icons summary: GET /davita/v1/icons description: WordPress REST route /davita/v1/icons (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: sets-only in: query required: false schema: type: boolean default: true /davita/v1/icons/import: get: operationId: get_davita_v1_icons_import summary: GET /davita/v1/icons/import description: WordPress REST route /davita/v1/icons/import (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' /davita/v1/icons/list: get: operationId: get_davita_v1_icons_list summary: GET /davita/v1/icons/list description: WordPress REST route /davita/v1/icons/list (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' /davita/v1/icons/update: post: operationId: post_davita_v1_icons_update summary: POST /davita/v1/icons/update description: WordPress REST route /davita/v1/icons/update (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: name: type: string default: '' keywords: type: string default: '' required: - name security: - applicationPassword: [] - cookieNonce: [] /davita/v1/playlist-details: get: operationId: get_davita_v1_playlist_details summary: GET /davita/v1/playlist-details description: WordPress REST route /davita/v1/playlist-details (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' /davita/v1/usda/food/{id}: get: operationId: get_davita_v1_usda_food_id summary: GET /davita/v1/usda/food/(?P\d+) description: WordPress REST route /davita/v1/usda/food/(?P\d+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Food ID schema: type: integer /davita/v1/usda/search: get: operationId: get_davita_v1_usda_search summary: GET /davita/v1/usda/search description: WordPress REST route /davita/v1/usda/search (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: food in: query required: true schema: type: string description: Search term - name: page in: query required: false schema: type: integer description: Page number /davita/v1/verify-token: post: operationId: post_davita_v1_verify_token summary: POST /davita/v1/verify-token description: WordPress REST route /davita/v1/verify-token (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' security: - applicationPassword: [] - cookieNonce: [] /davita/v1/video-details: get: operationId: get_davita_v1_video_details summary: GET /davita/v1/video-details description: WordPress REST route /davita/v1/video-details (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - davita-v1 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' /wp/v2: get: operationId: get_wp_v2 summary: GET /wp/v2 description: WordPress REST route /wp/v2 (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: namespace in: query required: false schema: default: wp/v2 - name: context in: query required: false schema: default: view /wp/v2/categories: get: operationId: get_wp_v2_categories summary: GET /wp/v2/categories description: WordPress REST route /wp/v2/categories (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_categories summary: POST /wp/v2/categories description: WordPress REST route /wp/v2/categories (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/categories/{id}: get: operationId: get_wp_v2_categories_id summary: GET /wp/v2/categories/(?P[\d]+) description: WordPress REST route /wp/v2/categories/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_categories_id summary: POST /wp/v2/categories/(?P[\d]+) description: WordPress REST route /wp/v2/categories/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_categories_id summary: PUT /wp/v2/categories/(?P[\d]+) description: WordPress REST route /wp/v2/categories/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_categories_id summary: PATCH /wp/v2/categories/(?P[\d]+) description: WordPress REST route /wp/v2/categories/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_categories_id summary: DELETE /wp/v2/categories/(?P[\d]+) description: WordPress REST route /wp/v2/categories/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-article: get: operationId: get_wp_v2_dv_article summary: GET /wp/v2/dv-article description: WordPress REST route /wp/v2/dv-article (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query required: false schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: categories in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the categories taxonomy. - name: categories_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the categories taxonomy. - name: tags in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the tags taxonomy. - name: tags_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the tags taxonomy. - name: dv-topic in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-topic taxonomy. - name: dv-topic_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-topic taxonomy. post: operationId: post_wp_v2_dv_article summary: POST /wp/v2/dv-article description: WordPress REST route /wp/v2/dv-article (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-article/{id}: get: operationId: get_wp_v2_dv_article_id summary: GET /wp/v2/dv-article/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_article_id summary: POST /wp/v2/dv-article/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id001 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_article_id summary: PUT /wp/v2/dv-article/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id001 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_article_id summary: PATCH /wp/v2/dv-article/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id001 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_article_id summary: DELETE /wp/v2/dv-article/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-article/{id}/autosaves: get: operationId: get_wp_v2_dv_article_id_autosaves summary: GET /wp/v2/dv-article/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-article/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_article_id_autosaves summary: POST /wp/v2/dv-article/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-article/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-article/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_article_parent_autosaves_id summary: GET /wp/v2/dv-article/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/dv-article/{parent}/revisions: get: operationId: get_wp_v2_dv_article_parent_revisions summary: GET /wp/v2/dv-article/(?P[\d]+)/revisions description: WordPress REST route /wp/v2/dv-article/(?P[\d]+)/revisions (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. /wp/v2/dv-article/{parent}/revisions/{id}: get: operationId: get_wp_v2_dv_article_parent_revisions_id summary: GET /wp/v2/dv-article/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+)/revisions/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. delete: operationId: delete_wp_v2_dv_article_parent_revisions_id summary: DELETE /wp/v2/dv-article/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/dv-article/(?P[\d]+)/revisions/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as revisions do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-cookbook: get: operationId: get_wp_v2_dv_cookbook summary: GET /wp/v2/dv-cookbook description: WordPress REST route /wp/v2/dv-cookbook (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. post: operationId: post_wp_v2_dv_cookbook summary: POST /wp/v2/dv-cookbook description: WordPress REST route /wp/v2/dv-cookbook (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-cookbook/{id}: get: operationId: get_wp_v2_dv_cookbook_id summary: GET /wp/v2/dv-cookbook/(?P[\d]+) description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_cookbook_id summary: POST /wp/v2/dv-cookbook/(?P[\d]+) description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id002 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_cookbook_id summary: PUT /wp/v2/dv-cookbook/(?P[\d]+) description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id002 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_cookbook_id summary: PATCH /wp/v2/dv-cookbook/(?P[\d]+) description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id002 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_cookbook_id summary: DELETE /wp/v2/dv-cookbook/(?P[\d]+) description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-cookbook/{id}/autosaves: get: operationId: get_wp_v2_dv_cookbook_id_autosaves summary: GET /wp/v2/dv-cookbook/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_cookbook_id_autosaves summary: POST /wp/v2/dv-cookbook/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-cookbook/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_cookbook_parent_autosaves_id summary: GET /wp/v2/dv-cookbook/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-cookbook/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/dv-dialysis-center: get: operationId: get_wp_v2_dv_dialysis_center summary: GET /wp/v2/dv-dialysis-center description: WordPress REST route /wp/v2/dv-dialysis-center (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. post: operationId: post_wp_v2_dv_dialysis_center summary: POST /wp/v2/dv-dialysis-center description: WordPress REST route /wp/v2/dv-dialysis-center (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-dialysis-center/{id}: get: operationId: get_wp_v2_dv_dialysis_center_id summary: GET /wp/v2/dv-dialysis-center/(?P[\d]+) description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_dialysis_center_id summary: POST /wp/v2/dv-dialysis-center/(?P[\d]+) description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id003 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_dialysis_center_id summary: PUT /wp/v2/dv-dialysis-center/(?P[\d]+) description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id003 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_dialysis_center_id summary: PATCH /wp/v2/dv-dialysis-center/(?P[\d]+) description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id003 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_dialysis_center_id summary: DELETE /wp/v2/dv-dialysis-center/(?P[\d]+) description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-dialysis-center/{id}/autosaves: get: operationId: get_wp_v2_dv_dialysis_center_id_autosaves summary: GET /wp/v2/dv-dialysis-center/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_dialysis_center_id_autosaves summary: POST /wp/v2/dv-dialysis-center/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-dialysis-center/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_dialysis_center_parent_autosaves_id summary: GET /wp/v2/dv-dialysis-center/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-dialysis-center/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/dv-food-analyzer: get: operationId: get_wp_v2_dv_food_analyzer summary: GET /wp/v2/dv-food-analyzer description: WordPress REST route /wp/v2/dv-food-analyzer (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. post: operationId: post_wp_v2_dv_food_analyzer summary: POST /wp/v2/dv-food-analyzer description: WordPress REST route /wp/v2/dv-food-analyzer (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-food-analyzer/{id}: get: operationId: get_wp_v2_dv_food_analyzer_id summary: GET /wp/v2/dv-food-analyzer/(?P[\d]+) description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_food_analyzer_id summary: POST /wp/v2/dv-food-analyzer/(?P[\d]+) description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id004 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_food_analyzer_id summary: PUT /wp/v2/dv-food-analyzer/(?P[\d]+) description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id004 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_food_analyzer_id summary: PATCH /wp/v2/dv-food-analyzer/(?P[\d]+) description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id004 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_food_analyzer_id summary: DELETE /wp/v2/dv-food-analyzer/(?P[\d]+) description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-food-analyzer/{id}/autosaves: get: operationId: get_wp_v2_dv_food_analyzer_id_autosaves summary: GET /wp/v2/dv-food-analyzer/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_food_analyzer_id_autosaves summary: POST /wp/v2/dv-food-analyzer/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-food-analyzer/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_food_analyzer_parent_autosaves_id summary: GET /wp/v2/dv-food-analyzer/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-food-analyzer/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/dv-glossary-term: get: operationId: get_wp_v2_dv_glossary_term summary: GET /wp/v2/dv-glossary-term description: WordPress REST route /wp/v2/dv-glossary-term (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query required: false schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: dv-topic in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-topic taxonomy. - name: dv-topic_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-topic taxonomy. post: operationId: post_wp_v2_dv_glossary_term summary: POST /wp/v2/dv-glossary-term description: WordPress REST route /wp/v2/dv-glossary-term (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-glossary-term/{id}: get: operationId: get_wp_v2_dv_glossary_term_id summary: GET /wp/v2/dv-glossary-term/(?P[\d]+) description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_glossary_term_id summary: POST /wp/v2/dv-glossary-term/(?P[\d]+) description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id005 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_glossary_term_id summary: PUT /wp/v2/dv-glossary-term/(?P[\d]+) description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id005 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_glossary_term_id summary: PATCH /wp/v2/dv-glossary-term/(?P[\d]+) description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id005 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_glossary_term_id summary: DELETE /wp/v2/dv-glossary-term/(?P[\d]+) description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-glossary-term/{id}/autosaves: get: operationId: get_wp_v2_dv_glossary_term_id_autosaves summary: GET /wp/v2/dv-glossary-term/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_glossary_term_id_autosaves summary: POST /wp/v2/dv-glossary-term/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-glossary-term/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_glossary_term_parent_autosaves_id summary: GET /wp/v2/dv-glossary-term/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-glossary-term/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/dv-image-category: get: operationId: get_wp_v2_dv_image_category summary: GET /wp/v2/dv-image-category description: WordPress REST route /wp/v2/dv-image-category (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_image_category summary: POST /wp/v2/dv-image-category description: WordPress REST route /wp/v2/dv-image-category (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-image-category/{id}: get: operationId: get_wp_v2_dv_image_category_id summary: GET /wp/v2/dv-image-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-image-category/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_image_category_id summary: POST /wp/v2/dv-image-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-image-category/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_image_category_id summary: PUT /wp/v2/dv-image-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-image-category/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_image_category_id summary: PATCH /wp/v2/dv-image-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-image-category/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_image_category_id summary: DELETE /wp/v2/dv-image-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-image-category/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-person: get: operationId: get_wp_v2_dv_person summary: GET /wp/v2/dv-person description: WordPress REST route /wp/v2/dv-person (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: menu_order in: query required: false schema: type: integer description: Limit result set to posts with a specific menu_order value. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: parent in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to items with particular parent IDs. - name: parent_exclude in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to all items except those of a particular parent ID. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. post: operationId: post_wp_v2_dv_person summary: POST /wp/v2/dv-person description: WordPress REST route /wp/v2/dv-person (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-person/{id}: get: operationId: get_wp_v2_dv_person_id summary: GET /wp/v2/dv-person/(?P[\d]+) description: WordPress REST route /wp/v2/dv-person/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_person_id summary: POST /wp/v2/dv-person/(?P[\d]+) description: WordPress REST route /wp/v2/dv-person/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id006 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_person_id summary: PUT /wp/v2/dv-person/(?P[\d]+) description: WordPress REST route /wp/v2/dv-person/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id006 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_person_id summary: PATCH /wp/v2/dv-person/(?P[\d]+) description: WordPress REST route /wp/v2/dv-person/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id006 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_person_id summary: DELETE /wp/v2/dv-person/(?P[\d]+) description: WordPress REST route /wp/v2/dv-person/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-person/{id}/autosaves: get: operationId: get_wp_v2_dv_person_id_autosaves summary: GET /wp/v2/dv-person/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-person/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_person_id_autosaves summary: POST /wp/v2/dv-person/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-person/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the post. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-person/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_person_parent_autosaves_id summary: GET /wp/v2/dv-person/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-person/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/dv-recipe: get: operationId: get_wp_v2_dv_recipe summary: GET /wp/v2/dv-recipe description: WordPress REST route /wp/v2/dv-recipe (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query required: false schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: dv-recipe-cuisine-tag in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-recipe-cuisine-tag taxonomy. - name: dv-recipe-cuisine-tag_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-recipe-cuisine-tag taxonomy. - name: dv-recipe-diet-tag in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-recipe-diet-tag taxonomy. - name: dv-recipe-diet-tag_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-recipe-diet-tag taxonomy. - name: dv-recipe-dish-type in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-recipe-dish-type taxonomy. - name: dv-recipe-dish-type_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-recipe-dish-type taxonomy. - name: dv-recipe-holiday-tag in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-recipe-holiday-tag taxonomy. - name: dv-recipe-holiday-tag_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-recipe-holiday-tag taxonomy. - name: dv-recipe-method-tag in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-recipe-method-tag taxonomy. - name: dv-recipe-method-tag_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-recipe-method-tag taxonomy. - name: dv-topic in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-topic taxonomy. - name: dv-topic_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-topic taxonomy. - name: dv-recipe-category in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-recipe-category taxonomy. - name: dv-recipe-category_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-recipe-category taxonomy. post: operationId: post_wp_v2_dv_recipe summary: POST /wp/v2/dv-recipe description: WordPress REST route /wp/v2/dv-recipe (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-recipe-cuisine-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-cuisine-tag taxonomy. dv-recipe-diet-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-diet-tag taxonomy. dv-recipe-dish-type: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-dish-type taxonomy. dv-recipe-holiday-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-holiday-tag taxonomy. dv-recipe-method-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-method-tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-recipe-category: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-category: get: operationId: get_wp_v2_dv_recipe_category summary: GET /wp/v2/dv-recipe-category description: WordPress REST route /wp/v2/dv-recipe-category (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_recipe_category summary: POST /wp/v2/dv-recipe-category description: WordPress REST route /wp/v2/dv-recipe-category (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-category/{id}: get: operationId: get_wp_v2_dv_recipe_category_id summary: GET /wp/v2/dv-recipe-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-category/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_recipe_category_id summary: POST /wp/v2/dv-recipe-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-category/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_recipe_category_id summary: PUT /wp/v2/dv-recipe-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-category/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_recipe_category_id summary: PATCH /wp/v2/dv-recipe-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-category/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_recipe_category_id summary: DELETE /wp/v2/dv-recipe-category/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-category/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-cuisine-tag: get: operationId: get_wp_v2_dv_recipe_cuisine_tag summary: GET /wp/v2/dv-recipe-cuisine-tag description: WordPress REST route /wp/v2/dv-recipe-cuisine-tag (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_recipe_cuisine_tag summary: POST /wp/v2/dv-recipe-cuisine-tag description: WordPress REST route /wp/v2/dv-recipe-cuisine-tag (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-cuisine-tag/{id}: get: operationId: get_wp_v2_dv_recipe_cuisine_tag_id summary: GET /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_recipe_cuisine_tag_id summary: POST /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_recipe_cuisine_tag_id summary: PUT /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_recipe_cuisine_tag_id summary: PATCH /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_recipe_cuisine_tag_id summary: DELETE /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-cuisine-tag/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-diet-tag: get: operationId: get_wp_v2_dv_recipe_diet_tag summary: GET /wp/v2/dv-recipe-diet-tag description: WordPress REST route /wp/v2/dv-recipe-diet-tag (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_recipe_diet_tag summary: POST /wp/v2/dv-recipe-diet-tag description: WordPress REST route /wp/v2/dv-recipe-diet-tag (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-diet-tag/{id}: get: operationId: get_wp_v2_dv_recipe_diet_tag_id summary: GET /wp/v2/dv-recipe-diet-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-diet-tag/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_recipe_diet_tag_id summary: POST /wp/v2/dv-recipe-diet-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-diet-tag/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_recipe_diet_tag_id summary: PUT /wp/v2/dv-recipe-diet-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-diet-tag/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_recipe_diet_tag_id summary: PATCH /wp/v2/dv-recipe-diet-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-diet-tag/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_recipe_diet_tag_id summary: DELETE /wp/v2/dv-recipe-diet-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-diet-tag/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-dish-type: get: operationId: get_wp_v2_dv_recipe_dish_type summary: GET /wp/v2/dv-recipe-dish-type description: WordPress REST route /wp/v2/dv-recipe-dish-type (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_recipe_dish_type summary: POST /wp/v2/dv-recipe-dish-type description: WordPress REST route /wp/v2/dv-recipe-dish-type (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-dish-type/{id}: get: operationId: get_wp_v2_dv_recipe_dish_type_id summary: GET /wp/v2/dv-recipe-dish-type/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-dish-type/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_recipe_dish_type_id summary: POST /wp/v2/dv-recipe-dish-type/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-dish-type/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_recipe_dish_type_id summary: PUT /wp/v2/dv-recipe-dish-type/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-dish-type/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_recipe_dish_type_id summary: PATCH /wp/v2/dv-recipe-dish-type/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-dish-type/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_recipe_dish_type_id summary: DELETE /wp/v2/dv-recipe-dish-type/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-dish-type/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-holiday-tag: get: operationId: get_wp_v2_dv_recipe_holiday_tag summary: GET /wp/v2/dv-recipe-holiday-tag description: WordPress REST route /wp/v2/dv-recipe-holiday-tag (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_recipe_holiday_tag summary: POST /wp/v2/dv-recipe-holiday-tag description: WordPress REST route /wp/v2/dv-recipe-holiday-tag (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-holiday-tag/{id}: get: operationId: get_wp_v2_dv_recipe_holiday_tag_id summary: GET /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_recipe_holiday_tag_id summary: POST /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_recipe_holiday_tag_id summary: PUT /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_recipe_holiday_tag_id summary: PATCH /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_recipe_holiday_tag_id summary: DELETE /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-holiday-tag/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-method-tag: get: operationId: get_wp_v2_dv_recipe_method_tag summary: GET /wp/v2/dv-recipe-method-tag description: WordPress REST route /wp/v2/dv-recipe-method-tag (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_recipe_method_tag summary: POST /wp/v2/dv-recipe-method-tag description: WordPress REST route /wp/v2/dv-recipe-method-tag (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe-method-tag/{id}: get: operationId: get_wp_v2_dv_recipe_method_tag_id summary: GET /wp/v2/dv-recipe-method-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-method-tag/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_recipe_method_tag_id summary: POST /wp/v2/dv-recipe-method-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-method-tag/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_recipe_method_tag_id summary: PUT /wp/v2/dv-recipe-method-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-method-tag/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_recipe_method_tag_id summary: PATCH /wp/v2/dv-recipe-method-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-method-tag/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_recipe_method_tag_id summary: DELETE /wp/v2/dv-recipe-method-tag/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe-method-tag/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe/{id}: get: operationId: get_wp_v2_dv_recipe_id summary: GET /wp/v2/dv-recipe/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_recipe_id summary: POST /wp/v2/dv-recipe/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id007 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id008 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id009 - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-recipe-cuisine-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-cuisine-tag taxonomy. dv-recipe-diet-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-diet-tag taxonomy. dv-recipe-dish-type: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-dish-type taxonomy. dv-recipe-holiday-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-holiday-tag taxonomy. dv-recipe-method-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-method-tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-recipe-category: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_recipe_id summary: PUT /wp/v2/dv-recipe/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id007 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id008 description: Whether or not comments are open on the post. ping_status: type: string enum: *id009 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-recipe-cuisine-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-cuisine-tag taxonomy. dv-recipe-diet-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-diet-tag taxonomy. dv-recipe-dish-type: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-dish-type taxonomy. dv-recipe-holiday-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-holiday-tag taxonomy. dv-recipe-method-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-method-tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-recipe-category: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_recipe_id summary: PATCH /wp/v2/dv-recipe/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id007 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id008 description: Whether or not comments are open on the post. ping_status: type: string enum: *id009 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-recipe-cuisine-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-cuisine-tag taxonomy. dv-recipe-diet-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-diet-tag taxonomy. dv-recipe-dish-type: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-dish-type taxonomy. dv-recipe-holiday-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-holiday-tag taxonomy. dv-recipe-method-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-method-tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-recipe-category: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_recipe_id summary: DELETE /wp/v2/dv-recipe/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe/{id}/autosaves: get: operationId: get_wp_v2_dv_recipe_id_autosaves summary: GET /wp/v2/dv-recipe/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_recipe_id_autosaves summary: POST /wp/v2/dv-recipe/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-recipe-cuisine-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-cuisine-tag taxonomy. dv-recipe-diet-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-diet-tag taxonomy. dv-recipe-dish-type: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-dish-type taxonomy. dv-recipe-holiday-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-holiday-tag taxonomy. dv-recipe-method-tag: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-method-tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-recipe-category: type: array items: type: integer description: The terms assigned to the post in the dv-recipe-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-recipe/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_recipe_parent_autosaves_id summary: GET /wp/v2/dv-recipe/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/dv-recipe/{parent}/revisions: get: operationId: get_wp_v2_dv_recipe_parent_revisions summary: GET /wp/v2/dv-recipe/(?P[\d]+)/revisions description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+)/revisions (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. /wp/v2/dv-recipe/{parent}/revisions/{id}: get: operationId: get_wp_v2_dv_recipe_parent_revisions_id summary: GET /wp/v2/dv-recipe/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+)/revisions/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. delete: operationId: delete_wp_v2_dv_recipe_parent_revisions_id summary: DELETE /wp/v2/dv-recipe/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/dv-recipe/(?P[\d]+)/revisions/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as revisions do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-topic: get: operationId: get_wp_v2_dv_topic summary: GET /wp/v2/dv-topic description: WordPress REST route /wp/v2/dv-topic (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_topic summary: POST /wp/v2/dv-topic description: WordPress REST route /wp/v2/dv-topic (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-topic/{id}: get: operationId: get_wp_v2_dv_topic_id summary: GET /wp/v2/dv-topic/(?P[\d]+) description: WordPress REST route /wp/v2/dv-topic/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_topic_id summary: POST /wp/v2/dv-topic/(?P[\d]+) description: WordPress REST route /wp/v2/dv-topic/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_topic_id summary: PUT /wp/v2/dv-topic/(?P[\d]+) description: WordPress REST route /wp/v2/dv-topic/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_topic_id summary: PATCH /wp/v2/dv-topic/(?P[\d]+) description: WordPress REST route /wp/v2/dv-topic/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_topic_id summary: DELETE /wp/v2/dv-topic/(?P[\d]+) description: WordPress REST route /wp/v2/dv-topic/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-video: get: operationId: get_wp_v2_dv_video summary: GET /wp/v2/dv-video description: WordPress REST route /wp/v2/dv-video (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query required: false schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: dv-topic in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-topic taxonomy. - name: dv-topic_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-topic taxonomy. - name: dv-video-playlist in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-video-playlist taxonomy. - name: dv-video-playlist_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-video-playlist taxonomy. post: operationId: post_wp_v2_dv_video summary: POST /wp/v2/dv-video description: WordPress REST route /wp/v2/dv-video (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-video-playlist: type: array items: type: integer description: The terms assigned to the post in the dv-video-playlist taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-video-playlist: get: operationId: get_wp_v2_dv_video_playlist summary: GET /wp/v2/dv-video-playlist description: WordPress REST route /wp/v2/dv-video-playlist (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_dv_video_playlist summary: POST /wp/v2/dv-video-playlist description: WordPress REST route /wp/v2/dv-video-playlist (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-video-playlist/{id}: get: operationId: get_wp_v2_dv_video_playlist_id summary: GET /wp/v2/dv-video-playlist/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video-playlist/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_dv_video_playlist_id summary: POST /wp/v2/dv-video-playlist/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video-playlist/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_video_playlist_id summary: PUT /wp/v2/dv-video-playlist/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video-playlist/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_video_playlist_id summary: PATCH /wp/v2/dv-video-playlist/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video-playlist/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_video_playlist_id summary: DELETE /wp/v2/dv-video-playlist/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video-playlist/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-video/{id}: get: operationId: get_wp_v2_dv_video_id summary: GET /wp/v2/dv-video/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_dv_video_id summary: POST /wp/v2/dv-video/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id010 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-video-playlist: type: array items: type: integer description: The terms assigned to the post in the dv-video-playlist taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_dv_video_id summary: PUT /wp/v2/dv-video/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id010 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-video-playlist: type: array items: type: integer description: The terms assigned to the post in the dv-video-playlist taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_dv_video_id summary: PATCH /wp/v2/dv-video/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id010 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-video-playlist: type: array items: type: integer description: The terms assigned to the post in the dv-video-playlist taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_dv_video_id summary: DELETE /wp/v2/dv-video/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-video/{id}/autosaves: get: operationId: get_wp_v2_dv_video_id_autosaves summary: GET /wp/v2/dv-video/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-video/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_dv_video_id_autosaves summary: POST /wp/v2/dv-video/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/dv-video/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. dv-video-playlist: type: array items: type: integer description: The terms assigned to the post in the dv-video-playlist taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/dv-video/{parent}/autosaves/{id}: get: operationId: get_wp_v2_dv_video_parent_autosaves_id summary: GET /wp/v2/dv-video/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/dv-video/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/media: get: operationId: get_wp_v2_media summary: GET /wp/v2/media description: WordPress REST route /wp/v2/media (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: parent in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to items with particular parent IDs. - name: parent_exclude in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to all items except those of a particular parent ID. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: inherit items: type: string enum: - inherit - private - trash description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query required: false schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: dv-image-category in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-image-category taxonomy. - name: dv-image-category_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-image-category taxonomy. - name: media_type in: query required: false schema: type: array items: type: string enum: - image - video - audio - application - text description: Limit result set to attachments of a particular media type or media types. - name: mime_type in: query required: false schema: type: array items: type: string description: Limit result set to attachments of a particular MIME type or MIME types. post: operationId: post_wp_v2_media summary: POST /wp/v2/media description: WordPress REST route /wp/v2/media (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-image-category: type: array items: type: integer description: The terms assigned to the post in the dv-image-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/media/{id}: get: operationId: get_wp_v2_media_id summary: GET /wp/v2/media/(?P[\d]+) description: WordPress REST route /wp/v2/media/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_media_id summary: POST /wp/v2/media/(?P[\d]+) description: WordPress REST route /wp/v2/media/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id011 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id012 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id013 - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-image-category: type: array items: type: integer description: The terms assigned to the post in the dv-image-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_media_id summary: PUT /wp/v2/media/(?P[\d]+) description: WordPress REST route /wp/v2/media/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id011 description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id012 description: Whether or not comments are open on the post. ping_status: type: string enum: *id013 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-image-category: type: array items: type: integer description: The terms assigned to the post in the dv-image-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_media_id summary: PATCH /wp/v2/media/(?P[\d]+) description: WordPress REST route /wp/v2/media/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id011 description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id012 description: Whether or not comments are open on the post. ping_status: type: string enum: *id013 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-image-category: type: array items: type: integer description: The terms assigned to the post in the dv-image-category taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_media_id summary: DELETE /wp/v2/media/(?P[\d]+) description: WordPress REST route /wp/v2/media/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/media/{id}/edit: post: operationId: post_wp_v2_media_id_edit summary: POST /wp/v2/media/(?P[\d]+)/edit description: WordPress REST route /wp/v2/media/(?P[\d]+)/edit (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: src: type: string format: uri description: URL to the edited image file. modifiers: type: array items: type: object description: Array of image edits. rotation: type: integer minimum: 0 maximum: 360 description: 'The amount to rotate the image clockwise in degrees. DEPRECATED: Use `modifiers` instead.' x: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the x position to start the crop from. DEPRECATED: Use `modifiers` instead.' y: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the y position to start the crop from. DEPRECATED: Use `modifiers` instead.' width: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the width to crop the image to. DEPRECATED: Use `modifiers` instead.' height: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the height to crop the image to. DEPRECATED: Use `modifiers` instead.' caption: type: object description: The attachment caption. description: type: object description: The attachment description. title: type: object description: The title for the post. post: type: integer description: The ID for the associated post of the attachment. alt_text: type: string description: Alternative text to display when attachment is not displayed. required: - src security: - applicationPassword: [] - cookieNonce: [] /wp/v2/media/{id}/post-process: post: operationId: post_wp_v2_media_id_post_process summary: POST /wp/v2/media/(?P[\d]+)/post-process description: WordPress REST route /wp/v2/media/(?P[\d]+)/post-process (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the attachment. schema: type: integer requestBody: required: true content: application/json: schema: type: object properties: action: type: string enum: - create-image-subsizes required: - action security: - applicationPassword: [] - cookieNonce: [] /wp/v2/pages: get: operationId: get_wp_v2_pages summary: GET /wp/v2/pages description: WordPress REST route /wp/v2/pages (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: menu_order in: query required: false schema: type: integer description: Limit result set to posts with a specific menu_order value. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order - rand - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: parent in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to items with particular parent IDs. - name: parent_exclude in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to all items except those of a particular parent ID. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query required: false schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: dv-topic in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-topic taxonomy. - name: dv-topic_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-topic taxonomy. post: operationId: post_wp_v2_pages summary: POST /wp/v2/pages description: WordPress REST route /wp/v2/pages (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/pages/{id}: get: operationId: get_wp_v2_pages_id summary: GET /wp/v2/pages/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_pages_id summary: POST /wp/v2/pages/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id014 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id015 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id016 - open - closed description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_pages_id summary: PUT /wp/v2/pages/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id014 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id015 description: Whether or not comments are open on the post. ping_status: type: string enum: *id016 description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_pages_id summary: PATCH /wp/v2/pages/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id014 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id015 description: Whether or not comments are open on the post. ping_status: type: string enum: *id016 description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_pages_id summary: DELETE /wp/v2/pages/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/pages/{id}/autosaves: get: operationId: get_wp_v2_pages_id_autosaves summary: GET /wp/v2/pages/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/pages/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_pages_id_autosaves summary: POST /wp/v2/pages/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/pages/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the post. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/pages/{parent}/autosaves/{id}: get: operationId: get_wp_v2_pages_parent_autosaves_id summary: GET /wp/v2/pages/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/pages/{parent}/revisions: get: operationId: get_wp_v2_pages_parent_revisions summary: GET /wp/v2/pages/(?P[\d]+)/revisions description: WordPress REST route /wp/v2/pages/(?P[\d]+)/revisions (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. /wp/v2/pages/{parent}/revisions/{id}: get: operationId: get_wp_v2_pages_parent_revisions_id summary: GET /wp/v2/pages/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+)/revisions/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. delete: operationId: delete_wp_v2_pages_parent_revisions_id summary: DELETE /wp/v2/pages/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/pages/(?P[\d]+)/revisions/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as revisions do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/posts: get: operationId: get_wp_v2_posts summary: GET /wp/v2/posts description: WordPress REST route /wp/v2/posts (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: after in: query required: false schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query required: false schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query required: false schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query required: false schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query required: false schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - rand - menu_order - menu_order - meta_value - meta_value_num - rand - post__in - comment_count - name default: date description: Sort collection by post attribute. - name: search_columns in: query required: false schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query required: false schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam - jp-temp-feedback - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query required: false schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: categories in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the categories taxonomy. - name: categories_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the categories taxonomy. - name: tags in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the tags taxonomy. - name: tags_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the tags taxonomy. - name: dv-topic in: query required: false schema: type: object description: Limit result set to items with specific terms assigned in the dv-topic taxonomy. - name: dv-topic_exclude in: query required: false schema: type: object description: Limit result set to items except those with specific terms assigned in the dv-topic taxonomy. - name: sticky in: query required: false schema: type: boolean description: Limit result set to items that are sticky. - name: ignore_sticky in: query required: false schema: type: boolean default: true description: Whether to ignore sticky posts or not. - name: format in: query required: false schema: type: array items: type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio description: Limit result set to items assigned one or more given formats. post: operationId: post_wp_v2_posts summary: POST /wp/v2/posts description: WordPress REST route /wp/v2/posts (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. format: type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/posts/{id}/related: get: operationId: get_wp_v2_posts_id_related summary: GET /wp/v2/posts/(?P[0-9]+)/related description: WordPress REST route /wp/v2/posts/(?P[0-9]+)/related (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Post ID. schema: type: string - name: number in: query required: false schema: default: 5 description: Number of posts /wp/v2/posts/{id}: get: operationId: get_wp_v2_posts_id summary: GET /wp/v2/posts/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query required: false schema: type: integer description: Override the default excerpt length. - name: password in: query required: false schema: type: string description: The password for the post if it is password protected. post: operationId: post_wp_v2_posts_id summary: POST /wp/v2/posts/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id017 - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id018 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id019 - open - closed description: Whether or not the post can be pinged. format: type: string enum: &id020 - standard - aside - chat - gallery - link - image - quote - status - video - audio description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_posts_id summary: PUT /wp/v2/posts/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id017 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id018 description: Whether or not comments are open on the post. ping_status: type: string enum: *id019 description: Whether or not the post can be pinged. format: type: string enum: *id020 description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_posts_id summary: PATCH /wp/v2/posts/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id017 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id018 description: Whether or not comments are open on the post. ping_status: type: string enum: *id019 description: Whether or not the post can be pinged. format: type: string enum: *id020 description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_posts_id summary: DELETE /wp/v2/posts/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the post. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Whether to bypass Trash and force deletion. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/posts/{id}/autosaves: get: operationId: get_wp_v2_posts_id_autosaves summary: GET /wp/v2/posts/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/posts/(?P[\d]+)/autosaves (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: query required: false schema: type: integer description: The ID for the parent of the autosave. - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: id in: path required: true schema: type: string post: operationId: post_wp_v2_posts_id_autosaves summary: POST /wp/v2/posts/(?P[\d]+)/autosaves description: WordPress REST route /wp/v2/posts/(?P[\d]+)/autosaves (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - nab_hidden - nab_ready - nab_scheduled - nab_running - nab_paused - nab_paused_draft - nab_finished - spam description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. format: type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. dv-topic: type: array items: type: integer description: The terms assigned to the post in the dv-topic taxonomy. jetpack_sharing_enabled: type: boolean description: Are sharing buttons enabled? security: - applicationPassword: [] - cookieNonce: [] /wp/v2/posts/{parent}/autosaves/{id}: get: operationId: get_wp_v2_posts_parent_autosaves_id summary: GET /wp/v2/posts/(?P[\d]+)/autosaves/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+)/autosaves/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the autosave. schema: type: integer - name: id in: path required: true description: The ID for the autosave. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/posts/{parent}/revisions: get: operationId: get_wp_v2_posts_parent_revisions summary: GET /wp/v2/posts/(?P[\d]+)/revisions description: WordPress REST route /wp/v2/posts/(?P[\d]+)/revisions (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. /wp/v2/posts/{parent}/revisions/{id}: get: operationId: get_wp_v2_posts_parent_revisions_id summary: GET /wp/v2/posts/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+)/revisions/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. delete: operationId: delete_wp_v2_posts_parent_revisions_id summary: DELETE /wp/v2/posts/(?P[\d]+)/revisions/(?P[\d]+) description: WordPress REST route /wp/v2/posts/(?P[\d]+)/revisions/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: parent in: path required: true description: The ID for the parent of the revision. schema: type: integer - name: id in: path required: true description: Unique identifier for the revision. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as revisions do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/search: get: operationId: get_wp_v2_search summary: GET /wp/v2/search description: WordPress REST route /wp/v2/search (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: type in: query required: false schema: type: string enum: - post - term - post-format default: post description: Limit results to items of an object type. - name: subtype in: query required: false schema: type: array default: any items: type: string enum: - post - page - dv-article - dv-cookbook - dv-dialysis-center - dv-food-analyzer - dv-glossary-term - dv-person - dv-recipe - dv-video - category - post_tag - dv-image-category - dv-recipe-cuisine-tag - dv-recipe-holiday-tag - dv-recipe-method-tag - dv-topic - dv-recipe-category - any description: Limit results to items of one or more object subtypes. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. /wp/v2/statuses: get: operationId: get_wp_v2_statuses summary: GET /wp/v2/statuses description: WordPress REST route /wp/v2/statuses (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/statuses/{status}: get: operationId: get_wp_v2_statuses_status summary: GET /wp/v2/statuses/(?P[\w-]+) description: WordPress REST route /wp/v2/statuses/(?P[\w-]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: status in: path required: true description: An alphanumeric identifier for the status. schema: type: string - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/tags: get: operationId: get_wp_v2_tags summary: GET /wp/v2/tags description: WordPress REST route /wp/v2/tags (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query required: false schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query required: false schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query required: false schema: type: string description: Limit results to those matching a string. - name: exclude in: query required: false schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query required: false schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query required: false schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query required: false schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query required: false schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query required: false schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query required: false schema: type: integer description: Limit result set to terms assigned to a specific post. - name: slug in: query required: false schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. post: operationId: post_wp_v2_tags summary: POST /wp/v2/tags description: WordPress REST route /wp/v2/tags (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name security: - applicationPassword: [] - cookieNonce: [] /wp/v2/tags/{id}: get: operationId: get_wp_v2_tags_id summary: GET /wp/v2/tags/(?P[\d]+) description: WordPress REST route /wp/v2/tags/(?P[\d]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. post: operationId: post_wp_v2_tags_id summary: POST /wp/v2/tags/(?P[\d]+) description: WordPress REST route /wp/v2/tags/(?P[\d]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_tags_id summary: PUT /wp/v2/tags/(?P[\d]+) description: WordPress REST route /wp/v2/tags/(?P[\d]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_tags_id summary: PATCH /wp/v2/tags/(?P[\d]+) description: WordPress REST route /wp/v2/tags/(?P[\d]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_tags_id summary: DELETE /wp/v2/tags/(?P[\d]+) description: WordPress REST route /wp/v2/tags/(?P[\d]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: id in: path required: true description: Unique identifier for the term. schema: type: integer requestBody: required: false content: application/json: schema: type: object properties: force: type: boolean default: false description: Required to be true, as terms do not support trashing. security: - applicationPassword: [] - cookieNonce: [] /wp/v2/taxonomies: get: operationId: get_wp_v2_taxonomies summary: GET /wp/v2/taxonomies description: WordPress REST route /wp/v2/taxonomies (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: type in: query required: false schema: type: string description: Limit results to taxonomies associated with a specific post type. /wp/v2/taxonomies/{taxonomy}: get: operationId: get_wp_v2_taxonomies_taxonomy summary: GET /wp/v2/taxonomies/(?P[\w-]+) description: WordPress REST route /wp/v2/taxonomies/(?P[\w-]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: taxonomy in: path required: true description: An alphanumeric identifier for the taxonomy. schema: type: string - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/types: get: operationId: get_wp_v2_types summary: GET /wp/v2/types description: WordPress REST route /wp/v2/types (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/types/{type}: get: operationId: get_wp_v2_types_type summary: GET /wp/v2/types/(?P[\w-]+) description: WordPress REST route /wp/v2/types/(?P[\w-]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: type in: path required: true description: An alphanumeric identifier for the post type. schema: type: string - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. /wp/v2/users/{user_id}/application-passwords: get: operationId: get_wp_v2_users_user_id_application_passwords summary: GET /wp/v2/users/(?P(?:[\d]+|me))/application-passwords description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: user_id in: path required: true schema: type: string post: operationId: post_wp_v2_users_user_id_application_passwords summary: POST /wp/v2/users/(?P(?:[\d]+|me))/application-passwords description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: user_id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: app_id: type: string 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. name: type: string description: The name of the application password. required: - name security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_users_user_id_application_passwords summary: DELETE /wp/v2/users/(?P(?:[\d]+|me))/application-passwords description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: user_id in: path required: true schema: type: string security: - applicationPassword: [] - cookieNonce: [] /wp/v2/users/{user_id}/application-passwords/{uuid}: get: operationId: get_wp_v2_users_user_id_application_passwords_uuid summary: GET /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string post: operationId: post_wp_v2_users_user_id_application_passwords_uuid summary: POST /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) (POST), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: app_id: type: string 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. name: type: string description: The name of the application password. security: - applicationPassword: [] - cookieNonce: [] put: operationId: put_wp_v2_users_user_id_application_passwords_uuid summary: PUT /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) (PUT), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: app_id: type: string 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. name: type: string description: The name of the application password. security: - applicationPassword: [] - cookieNonce: [] patch: operationId: patch_wp_v2_users_user_id_application_passwords_uuid summary: PATCH /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) (PATCH), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: app_id: type: string 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. name: type: string description: The name of the application password. security: - applicationPassword: [] - cookieNonce: [] delete: operationId: delete_wp_v2_users_user_id_application_passwords_uuid summary: DELETE /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+) (DELETE), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string security: - applicationPassword: [] - cookieNonce: [] /wp/v2/users/{user_id}/application-passwords/introspect: get: operationId: get_wp_v2_users_user_id_application_passwords_introspect summary: GET /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/introspect description: WordPress REST route /wp/v2/users/(?P(?:[\d]+|me))/application-passwords/introspect (GET), as declared by the route discovery index at https://www.davita.com/wp-json/. tags: - wp-v2 responses: '200': description: Success content: application/json: schema: type: - object - array '400': description: Invalid parameter content: application/json: schema: $ref: '#/components/schemas/WPRestError' '401': description: Not authorized content: application/json: schema: $ref: '#/components/schemas/WPRestError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPRestError' parameters: - name: context in: query required: false schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: user_id in: path required: true schema: type: string x-generated-from: https://www.davita.com/wp-json/ — WordPress REST route discovery index, mechanical transformation (route regex -> templated path, endpoint args -> parameters/requestBody). No operation, parameter, or response was invented. x-generated-on: '2026-09-05'