Skip to content

Instantly share code, notes, and snippets.

@kalda341
Last active November 8, 2020 22:13
Show Gist options
  • Save kalda341/f81dc81624d56f706d54289047f73a79 to your computer and use it in GitHub Desktop.
Save kalda341/f81dc81624d56f706d54289047f73a79 to your computer and use it in GitHub Desktop.
const publicSteps = [
{
name: 'Step 1 - Mandatory public notification in certain circumstances',
outcomes: [
{
value: 'required',
description: 'Required',
},
{
value: null,
description: 'Not required',
},
],
},
{
name: 'Step 2 - Public notification precluded by rule',
outcomes: [
{
value: 'precluded',
description: 'Precluded (by rule)',
},
{
value: null,
description: 'Not precluded',
},
],
},
{
name: 'Step 3, Part 1 - Public notification required by rule',
outcomes: [
{
value: 'required',
description: 'Required (by rule)',
},
{
value: null,
description: 'Not required',
},
],
},
{
name:
'Step 3, Part 2 - Public notification required by effects on wider environment',
outcomes: [
{
value: 'required',
description: 'Required (effects more than minor)',
},
{
value: null,
description: 'Not requred',
},
],
},
{
name: 'Step 4 - Public notification in special circumstances',
outcomes: [
{
value: 'required',
description: 'Required (special circumstances exist)',
},
{
value: null,
description: 'Not required',
},
],
},
];
const limitedSteps = [
{
name:
'Step 1 - certain affected groups and affected persons must be notified',
outcomes: [
{
value: 'required',
description: 'Required',
},
{
value: null,
description: 'Not required',
},
],
},
{
name: 'Step 2 - limited notification precluded in certain circumstances',
outcomes: [
{
value: 'precluded',
description: 'Precluded (by rule)',
},
{
value: null,
description: 'Not precluded',
},
],
},
{
name: 'Step 3, Part 1 - limited notification required by rule',
outcomes: [
{
value: 'required',
description: 'Required (by rule)',
},
{
value: null,
description: 'Not precluded',
},
],
},
{
name:
'Step 3, Part 2 - Limited notification required by affected persons assessment',
outcomes: [
{
value: 'required',
description: 'Required (effects minor or more than minor)',
},
{
value: null,
description: 'Not requred',
},
],
},
{
name: 'Step 4 - Limited notification in special circumstances',
outcomes: [
{
value: 'required',
description: 'Required (special circumstances exist)',
},
{
value: null,
description: 'Not required',
},
],
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment