From 5eb472002ed8b576432485480d666c62bc429293 Mon Sep 17 00:00:00 2001 From: krazos Date: Mon, 3 Oct 2022 05:49:30 -0400 Subject: [PATCH] Minor clean up edits to RESTful docs (#24316) --- source/_integrations/rest.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/_integrations/rest.markdown b/source/_integrations/rest.markdown index 706722ff966..18133c729eb 100644 --- a/source/_integrations/rest.markdown +++ b/source/_integrations/rest.markdown @@ -1,6 +1,6 @@ --- -title: RESTful -description: Instructions on how to set up rest sensors within Home Assistant. +title: "RESTful" +description: "Instructions on how to integrate REST sensors and binary sensors into Home Assistant." ha_category: - Binary Sensor - Sensor @@ -17,7 +17,7 @@ ha_integration_type: integration The `rest` sensor platform is consuming a given endpoint which is exposed by a [RESTful API](https://en.wikipedia.org/wiki/Representational_state_transfer) of a device, an application, or a web service. The sensor has support for GET and POST requests. -[RESTful Sensor](/integrations/sensor.rest) and [RESTful Binary_sensor](/integrations/binary_sensor.rest) can also be set up as platforms if there is only a single sensor per endpoint. +[RESTful Sensor](/integrations/sensor.rest) and [RESTful Binary Sensor](/integrations/binary_sensor.rest) can also be set up as platforms if there is only a single sensor per endpoint. ```yaml # Example configuration.yaml entry @@ -163,11 +163,11 @@ scan_interval: type: integer default: 30 sensor: - description: A list of [RESTful Sensor](/integrations/sensor.rest) to create from the shared data. All configuration settings that the supported by [RESTful Sensor](/integrations/sensor.rest#configuration-variables) not listed above can be used here. + description: A list of sensors to create from the shared data. All configuration settings that are supported by [RESTful Sensor](/integrations/sensor.rest#configuration-variables) not listed above can be used here. required: false type: list binary_sensor: - description: A list of [RESTful Binary_sensor](/integrations/binary_sensor.rest) to create from the shared data All configuration settings that the supported by [RESTful Binary_sensor](/integrations/binary_sensor.rest#configuration-variables) not listed above can be used here. + description: A list of binary sensors to create from the shared data. All configuration settings that are supported by [RESTful Binary Sensor](/integrations/binary_sensor.rest#configuration-variables) not listed above can be used here. required: false type: list {% endconfiguration %}