## YAML Template.
##---
$schema: http://json-schema.org/draft-04/schema#
id: "/request/ble/peripheral/characteristic_notify"
description : "notify characteristic for connected device"

type: object
required : [peripheral]
properties:
    peripheral :
        type : object
        required : [notify_characteristic]
        properties:
            notify_characteristic :
                type : object
                required: [service_uuid,characteristic_uuid]
                additionalProperties: false
                properties:
                    service_uuid : {$ref : "/uuid"}
                    characteristic_uuid : {$ref : "/uuid"}

