You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get datas that have objects and arrays on it in a YML format, but it returns something wrong
.md file:
description: Remove a track by its UID from your favorite tracksroute: /api/token/map/favorite/{mapUid}/removemethod: POSTparameters:
path:
mapUid:
type: stringdescription: The UID of the maprequired: truedefault: ""
Returned object:
Excepted:
{
"description": "Remove a track by its UID from your favorite tracks",
"route": "/api/token/map/favorite/{mapUid}/remove",
"method": "POST",
"parameters": {
"path": {
"mapUid": {
"type": "string",
"description": "The UID of the map",
"required": true,
"default": ""
}
}
}
}
Actual:
{
"description": "Remove a track by its UID from your favorite tracks",
"route": "/api/token/map/favorite/{mapUid}/remove",
"method": "POST",
"parameters: path: mapUid: type: string description: The UID of the map required: true default": """"
}
The text was updated successfully, but these errors were encountered:
I'm trying to get datas that have objects and arrays on it in a YML format, but it returns something wrong
.md file:
Returned object:
Excepted:
Actual:
The text was updated successfully, but these errors were encountered: