Spinnaker Stage Manual Judgement: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Spinnaker Concepts")
 
Line 1: Line 1:
=Internal=
=Internal=
* [[Spinnaker_Concepts#Manual_Judgment|Spinnaker Concepts]]
* [[Spinnaker_Concepts#Manual_Judgment|Spinnaker Concepts]]
=JSON Definition=
<syntaxhighlight lang='json'>
{
  "stages": [
    {
      "refId": "1",
      "name": "My Manual Judgment",
      "type": "manualJudgment"
      "failPipeline": true,            # what does this mean?
      "isNew": true,                    # what does this mean?
      "judgmentInputs": [
          {
            "value": "Test Option"
          }
      ],
      "notifications": [],
      "judgmentInputs": [],
      "requisiteStageRefIds": [],
    }
  ],
}
</syntaxhighlight>

Revision as of 18:42, 30 May 2023

Internal

JSON Definition

{
   "stages": [
    {
      "refId": "1",
      "name": "My Manual Judgment",
      "type": "manualJudgment"
      "failPipeline": true,             # what does this mean?
      "isNew": true,                     # what does this mean?
      "judgmentInputs": [
          {
            "value": "Test Option"
          }
       ],
      "notifications": [],
      "judgmentInputs": [],
      "requisiteStageRefIds": [],
    }
  ],
}