Reolink · Schema
Reolink Alarm Settings
Motion detection and AI alarm configuration including sensitivity, detection zones, and schedule parameters.
IoTSecurity CamerasSurveillanceSmart HomeAI Detection
Properties
| Name | Type | Description |
|---|---|---|
| channel | integer | Camera channel number |
| type | string | Alarm type |
| enable | integer | Enable or disable the alarm (0 = disabled, 1 = enabled) |
| sens | array | Sensitivity settings for detection zones |
| area | object | Detection area definition as a grid of cells |
| schedule | object | Weekly schedule for alarm activation |
JSON Schema
{
"$id": "alarm-settings.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Reolink Alarm Settings",
"description": "Motion detection and AI alarm configuration including sensitivity, detection zones, and schedule parameters.",
"type": "object",
"properties": {
"channel": {
"type": "integer",
"description": "Camera channel number",
"minimum": 0
},
"type": {
"type": "string",
"description": "Alarm type",
"enum": ["md", "people", "vehicle", "dog_cat", "audio"]
},
"enable": {
"type": "integer",
"description": "Enable or disable the alarm (0 = disabled, 1 = enabled)",
"enum": [0, 1]
},
"sens": {
"type": "array",
"description": "Sensitivity settings for detection zones",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Zone identifier"
},
"sensitivity": {
"type": "integer",
"description": "Sensitivity level (0-50)",
"minimum": 0,
"maximum": 50
}
}
}
},
"area": {
"type": "object",
"description": "Detection area definition as a grid of cells",
"properties": {
"row": {
"type": "integer",
"description": "Number of rows in detection grid"
},
"col": {
"type": "integer",
"description": "Number of columns in detection grid"
},
"table": {
"type": "string",
"description": "Bitmask string defining active detection cells"
}
}
},
"schedule": {
"type": "object",
"description": "Weekly schedule for alarm activation",
"properties": {
"enable": {
"type": "integer",
"enum": [0, 1]
},
"table": {
"type": "string",
"description": "Weekly schedule encoded as a bitmask string"
}
}
}
},
"required": ["channel"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/alarm-settings"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.