## YAML Template.
##---
$schema: http://json-schema.org/draft-04/schema#
id: "/request/ble/central/descriptor_get"
related :  "/response/ble/central/descriptor_get"


type: object
required : [get_descriptors]
properties:
    get_descriptors :
        type : object
        required: [address,service_uuid,characteristic_uuid]
        additionalProperties: false
        properties:
            address : {$ref : "/deviceAddress"}
            service_uuid : {$ref : "/uuid"}
            characteristic_uuid : {$ref : "/uuid"}
