mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
meraki - Remove YAML formatting on JSON code block (#45526)
* Remove YAML formatting on JSON code block
This commit is contained in:
parent
9984c0fd40
commit
3b38bf377e
1 changed files with 7 additions and 7 deletions
|
@ -102,16 +102,16 @@ Returned Data Structures
|
||||||
|
|
||||||
Meraki and its related Ansible modules return most information in the form of a list. For example, this is returned information by ``meraki_admin`` querying administrators. It returns a list even though there's only one.
|
Meraki and its related Ansible modules return most information in the form of a list. For example, this is returned information by ``meraki_admin`` querying administrators. It returns a list even though there's only one.
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: json
|
||||||
|
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
'orgAccess': 'full',
|
"orgAccess": "full",
|
||||||
'name': 'John Doe',
|
"name": "John Doe",
|
||||||
'tags': [],
|
"tags": [],
|
||||||
'networks': [],
|
"networks": [],
|
||||||
'email': 'john@doe.com',
|
"email": "john@doe.com",
|
||||||
'id': '12345677890'
|
"id": "12345677890"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue