スマートホーム ロックガイド

action.devices.types.LOCK - ロックは、ロック、ロック解除、ロック状態の報告を行うことができます。

このタイプのデバイスには鍵アイコンと関連する鍵が与えられます 類義語と別名を使用します。

デバイスの機能

詳しくは、対応するトレイトのドキュメントをご覧ください。 実装の詳細(サービスがサポートする必要がある属性と状態、 EXECUTE レスポンスと QUERY レスポンスを作成します。

必要なトレイト

以下のトレイトとコマンドは必須です( できます。デバイスがこれらのトレイトをサポートしていない場合は、次のエラーコードを入力してください。 QUERY または EXECUTE レスポンスの functionNotSupported。詳しくは、 エラーと例外をご覧ください。

品質要件

  • レイテンシ: 2,000 ミリ秒以下。
  • 信頼性: 97% 以上にする必要があります。

デバイスの例: シンプルロック

このセクションでは、一般的な「ロック」を表すインテント ペイロードの例を紹介します。 デバイスは上記のデバイスタイプとトレイトに基づきます。実装でトレイトを追加または削除すると、 変更に合わせて回答を修正してください。

SYNC レスポンスの例

リクエスト
で確認できます。
{
  "requestId": "6894439706274654512",
  "inputs": [
    {
      "intent": "action.devices.SYNC"
    }
  ]
}
<ph type="x-smartling-placeholder">
</ph>
レスポンス
{
  "requestId": "6894439706274654512",
  "payload": {
    "agentUserId": "user123",
    "devices": [
      {
        "id": "123",
        "type": "action.devices.types.LOCK",
        "traits": [
          "action.devices.traits.LockUnlock"
        ],
        "name": {
          "name": "Simple lock"
        },
        "willReportState": true,
        "deviceInfo": {
          "manufacturer": "smart-home-inc",
          "model": "hs1234",
          "hwVersion": "3.2",
          "swVersion": "11.4"
        }
      }
    ]
  }
}

QUERY レスポンスの例

リクエスト
で確認できます。
{
  "requestId": "6894439706274654514",
  "inputs": [
    {
      "intent": "action.devices.QUERY",
      "payload": {
        "devices": [
          {
            "id": "123"
          }
        ]
      }
    }
  ]
}
<ph type="x-smartling-placeholder">
</ph>
対応
{
  "requestId": "6894439706274654514",
  "payload": {
    "devices": {
      "123": {
        "status": "SUCCESS",
        "online": true,
        "isLocked": true,
        "isJammed": false
      }
    }
  }
}

EXECUTE コマンドの例

LockUnlock

コマンド パラメータの詳細については、 <ph type="x-smartling-placeholder"></ph>をご覧ください action.devices.traits.LockUnlock ご覧ください。

リクエスト
で確認できます。
{
  "requestId": "6894439706274654516",
  "inputs": [
    {
      "intent": "action.devices.EXECUTE",
      "payload": {
        "commands": [
          {
            "devices": [
              {
                "id": "123"
              }
            ],
            "execution": [
              {
                "command": "action.devices.commands.LockUnlock",
                "params": {
                  "lock": true
                }
              }
            ]
          }
        ]
      }
    }
  ]
}
<ph type="x-smartling-placeholder">
</ph>
レスポンス
{
  "requestId": "6894439706274654516",
  "payload": {
    "commands": [
      {
        "ids": [
          "123"
        ],
        "status": "SUCCESS",
        "states": {
          "online": true,
          "isLocked": true,
          "isJammed": false
        }
      }
    ]
  }
}

デバイスエラー

詳しくは、 エラーと例外をご覧ください。