Skip to content

Commit ba038f9

Browse files
Fixed missing name field in documentation fin-protocol (#198)
1 parent 06f59c8 commit ba038f9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/content/en/docs/soarca-extensions/fin-protocol.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,13 +236,15 @@ The message is used to send a command from SOARCA. It has the following payload.
236236
"variables": {
237237
"__<var1>__": {
238238
"type": "<cacao.variable-type-ov>",
239+
"name": "__<var1>__",
239240
"description": "<string>",
240241
"value": "<string>",
241242
"constant": "<bool>",
242243
"external": "<bool>"
243244
},
244245
"__<var2>__": {
245246
"type": "<cacao.variable-type-ov>",
247+
"name": "__<var2>__",
246248
"description": "<string>",
247249
"value": "<string>",
248250
"constant": "<bool>",
@@ -295,13 +297,15 @@ The message is used to send a response from the Fin to SOARCA. It has the follow
295297
"variables": {
296298
"__<var1>__": {
297299
"type": "<cacao.variable-type-ov>",
300+
"name": "__<var1>__",
298301
"description": "<string>",
299302
"value": "<string>",
300303
"constant": "<bool>",
301304
"external": "<bool>"
302305
},
303306
"__<var2>__": {
304307
"type": "<cacao.variable-type-ov>",
308+
"name": "__<var2>__",
305309
"description": "<string>",
306310
"value": "<string>",
307311
"constant": "<bool>",
@@ -417,6 +421,7 @@ These contain command parts that are used in different messages.
417421
"channel_security": "plaintext"
418422
}
419423
}
424+
@endjson
420425
```
421426

422427
#### Variables

0 commit comments

Comments
 (0)