Skip to content

Commit

Permalink
Fix variable description in docs (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaartendeKruijf authored Mar 21, 2024
1 parent a14d277 commit dbf4ff6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/content/en/docs/soarca-extensions/fin-protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,8 @@ Variables information structure
|field |content |type | description |
| ----------------- | ------------- | ------ | ----------- |
|type |variable type |[variable-type-ov](https://docs.oasis-open.org/cacao/security-playbooks/v2.0/cs01/security-playbooks-v2.0-cs01.html#_Toc152256556) | The cacao variable type see CACAO V2 chapter 10.18, 10.18.4 Variable Type Vocabulary
|description |description |string |Description of the step
|name |name |string |Name of the variable this `must` be the same as the key on the map
|description |description |string |Description of the variable
|value |value |string |Value of the variable
|constant |true or false |bool |whether it is constant
|external |true or false |bool |whether it is external to the playbook
Expand All @@ -436,6 +437,7 @@ Variables information structure
{
"__<var1>__": {
"type": "<cacao.variable-type-ov>",
"name": "<string>",
"description": "<string>",
"value": "<string>",
"constant": "<bool>",
Expand Down

0 comments on commit dbf4ff6

Please sign in to comment.