{

  "intentName": "SetEBicycleSeat",

  "intentVersion": "1.0.2",

  "llmDescription": "设置电动自行车座桶",

  "keywords": ["SetEBicycleSeat"],

  "domain": "NavigationDomain",

  "parameters": {

    "type": "object",

    "propertyNames": {

      "enum": [

        "operationType"

      ]

    },

    "required": [

      "operationType"

    ],

    "properties": {

      "operationType": {

        "description": "操作类型。Lock:上锁。Unlock:解锁。",

        "type": "string",

        "enum":[

          "Lock",

          "Unlock"

        ]

      }

    }

  },

  "result": {

    "type": "object",

    "propertyNames": {

      "enum": [

        "code",

        "result",

        "entityId",

        "entityName",

        "entityLogoURL",

        "entityDisplayName",

        "entityDescription",

        "statusImageUrl"

      ]

    },

    "required": [

      "code",

      "result",

      "entityId",

      "entityName",

      "entityLogoURL",

      "entityDisplayName"

    ],

    "properties": {

      "code": {

        "description": "意图调用返回的结果码,0代表成功。",

        "type": "number"

      },

      "result": {

        "description": "意图调用返回的数据,如果无数据则返回空。",

        "type": "object"

      },

      "entityId": {

        "description": "本次执行实例ID。",

        "type": "string"

      },

      "entityName": {

        "description": "执行结果实体名称,固定内容。",

        "type": "string"

      },

      "entityLogoURL": {

        "description": "执行结果主图片。",

        "type": "string"

      },

      "entityDisplayName": {

        "description": "执行结果展示名称(主标题)。",

        "type": "string"

      },

      "entityDescription": {

        "description": "执行结果实体描述。",

        "type": "string"

      },

      "statusImageUrl": {

        "description": "执行结果状态图片。",

        "type": "string"

      }

    }

  }

}