Allegion · Schema

Schlage Home Access Code

A numeric access code stored on a Schlage Home device with a schedule that may be Always, Temporary, or Recurring.

Access ControlSmart LockSmart HomeMobile CredentialsBluetoothBLEIoTSecurityWebhookAuthenticationSchlageVon DuprinENGAGE

Properties

Name Type Description
accessCodeId string
name string 1-12 character alpha-numeric label. Updating the name does not change the numeric access code.
code string Numeric access code. Per-device length is changed by deleting all codes.
accessorType string Accessor classification (e.g. Owner, Guest). New accessor types were added March 25, 2025.
schedule object
View JSON Schema on GitHub

JSON Schema

schlage-home-access-code-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/allegion/json-schema/schlage-home-access-code-schema.json",
  "title": "Schlage Home Access Code",
  "description": "A numeric access code stored on a Schlage Home device with a schedule that may be Always, Temporary, or Recurring.",
  "type": "object",
  "required": ["accessCodeId", "name", "code", "schedule"],
  "properties": {
    "accessCodeId": { "type": "string" },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 12,
      "pattern": "^[a-zA-Z0-9]+$",
      "description": "1-12 character alpha-numeric label. Updating the name does not change the numeric access code."
    },
    "code": {
      "type": "string",
      "pattern": "^[0-9]+$",
      "description": "Numeric access code. Per-device length is changed by deleting all codes."
    },
    "accessorType": {
      "type": "string",
      "description": "Accessor classification (e.g. Owner, Guest). New accessor types were added March 25, 2025."
    },
    "schedule": {
      "oneOf": [
        {
          "type": "object",
          "required": ["type"],
          "properties": {
            "type": { "const": "Always" }
          }
        },
        {
          "type": "object",
          "required": ["type", "startDateTime", "endDateTime"],
          "properties": {
            "type": { "const": "Temporary" },
            "startDateTime": {
              "type": "string",
              "format": "date-time",
              "description": "Includes DST offset since April 14, 2026."
            },
            "endDateTime": {
              "type": "string",
              "format": "date-time"
            }
          }
        },
        {
          "type": "object",
          "required": ["type", "daysOfWeek", "startTime", "endTime"],
          "properties": {
            "type": { "const": "Recurring" },
            "daysOfWeek": {
              "type": "array",
              "items": {
                "type": "string",
                "enum": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
              }
            },
            "startTime": { "type": "string", "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]$" },
            "endTime": { "type": "string", "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]$" }
          }
        }
      ]
    }
  }
}

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.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/schlage-home-access-code"
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 email required.

A second provider on the same verified email joins the account you already have.