diff --git a/src/molecule/data/molecule.json b/src/molecule/data/molecule.json index 00b867b31..ff1e43d84 100644 --- a/src/molecule/data/molecule.json +++ b/src/molecule/data/molecule.json @@ -457,24 +457,30 @@ "type": "object" }, "ScenarioSequence": { - "additionalProperties": false, "items": { - "enum": [ - "check", - "cleanup", - "converge", - "create", - "dependency", - "destroy", - "idempotence", - "lint", - "prepare", - "side_effect", - "syntax", - "test", - "verify" - ], - "type": "string" + "anyOf": [ + { + "enum": [ + "check", + "cleanup", + "converge", + "create", + "dependency", + "destroy", + "idempotence", + "lint", + "prepare", + "side_effect", + "syntax", + "test", + "verify" + ], + "type": "string" + }, + { + "type": "string" + } + ] }, "title": "ScenarioSequence", "type": "array"