{

  "intentName": "ApplyInsuranceClaim",

  "intentVersion": "1.0.1",

  "llmDescription": "申请理赔",

  "keywords": ["ApplyInsuranceClaim"],

  "domain": "FinanceDomain",

  "parameters": {

    "type": "object",

    "propertyNames": {

      "enum": [

        "entityId",

        "insuranceType"

      ]

    },

    "properties": {

      "entityId": {

        "description": "数据唯一标识。",

        "type": "string",

        "maxLength": 64

      },

      "insuranceType": {

        "description": "保险类型。Car:车险。TrafficCompulsory:交强险。Health:健康险。Accident:意外险。Property:财产险。Travel:旅行险。Pet:宠物险。Enterprise:企业险。",

        "type": "string",

        "enum":[

          "Car",

          "TrafficCompulsory",

          "Health",

          "Accident",

          "Property",

          "Travel",

          "Pet",

          "Enterprise"

        ]

      }

    }

  },

  "result": {

    "type": "object",

    "propertyNames": {

      "enum": [

        "code",

        "result"

      ]

    },

    "required": [

      "code",

      "result"

    ],

    "properties": {

      "code": {

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

        "type": "number"

      },

      "result": {

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

        "type": "object"

      }

    }

  }

}