{

  "intentName": "ViewLogistics",

  "intentVersion": "1.0.1",

  "llmDescription": "查看快递",

  "keywords": ["ViewLogistics"],

  "domain": "LifestyleDomain",

  "parameters": {

    "type": "object",

    "propertyNames": {

      "enum": [

        "trackingNo",

        "entityId"

      ]

    },

    "properties": {

      "trackingNo": {

        "description": "快递单号,空则停留在首页。",

        "maxLength": 64,

        "type": "string"

      },

      "entityId": {

        "description": "快递实体ID,查询场景下默认使用该字段回传打开。",

        "maxLength": 64,

        "type": "string"

      }

    }

  },

  "result": {

    "type": "object",

    "propertyNames": {

      "enum": [

        "code",

        "result"

      ]

    },

    "required": [

      "code",

      "result"

    ],

    "properties": {

      "code": {

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

        "type": "number"

      },

      "result": {

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

        "type": "object"

      }

    }

  }

}