<div>The criteria used for validation of value that represents <em>data</em> options.</div>
<div>This option is passed to the test plugin as key, value pair For example <code>config_data is ansible.utils.validate(criteria=criteria</code>), in this case the value of <em>criteria</em> key represents this criteria for data validation.</div>
<div>For the type of <em>criteria</em> that represents this value refer documentation of individual validate plugins.</div>
<div>A data that will be validated against <em>criteria</em>.</div>
<div>This option represents the value that is passed to test plugin as check. For example <code>config_data is ansible.utils.validate(criteria=criteria</code>, in this case <b>config_data</b> represents this option.</div>
<div>For the type of <em>data</em> that represents this value refer documentation of individual validate plugins.</div>
<div>This option can be passed in test plugin as a key, value pair For example <code>config_data is ansible.utils.validate(engine='ansible.utils.jsonschema', criteria=criteria</code>), in this case the value of <em>engine</em> key represents the engine to be use for data validation. If the value is not provided the default value that is <code>ansible.utils.jsonschema</code> will be used.</div>
<div>The value should be in fully qualified collection name format that is <b><org-name>.<collection-name>.<validate-plugin-name></b>.</div>
- For the type of options *data* and *criteria* refer the individual validate plugin documentation that is represented in the value of *engine* option.
- For additional plugin configuration options refer the individual validate plugin documentation that is represented by the value of *engine* option.
- The plugin configuration option can be either passed as ``key=value`` pairs within test plugin or set as environment variables.
- The precedence the validate plugin configurable option is the variable passed within test plugin as ``key=value`` pairs followed by task variables followed by environment variables.
- name: validate data in json format using jsonschema with test plugin
ansible.builtin.set_fact:
is_data_valid: "{{ data is ansible.utils.validate(engine='ansible.utils.jsonschema', criteria=criteria, draft='draft7') }}"
Return Values
-------------
Common return values are documented `here <https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values>`_, the following are the fields unique to this test:
<a class="ansibleOptionLink" href="#return-" title="Permalink to this return value"></a>
<div style="font-size: small">
<span style="color: purple">-</span>
</div>
</td>
<td></td>
<td>
<div>If data is valid return <code>true</code></div>
<div>If data is invalid return <code>false</code></div>
<br/>
</td>
</tr>
</table>
<br/><br/>
Status
------
Authors
~~~~~~~
- Ganesh Nalawade (@ganeshrn)
..hint::
Configuration entries for each entry type have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up.