x-apidog-folder field. If this field does not exist, it will use the first value in the tags field./ to separate Multi-level folders. Note that both backslash \ and forward slash / are special characters that require escaping. To represent the character forward slash /, please use \/, and to represent the character \, please use \\."paths": {
"/pets": {
"post": {
...
"operationId": "addPet",
"x-apidog-folder": "Pet Store/Pet Information"
}
}
}x-apidog-status| Status | Description |
|---|---|
| (Designing) | designing |
| (Pending) | pending |
| (Developing) | developing |
| (Integrating) | integrating |
| (Testing) | testing |
| (Tested) | tested |
| (Released) | released |
| (Deprecated) | deprecated |
| (Exception) | exception |
| (Obsolete) | obsolete |
| (To be Deprecated) | to be deprecated |
"paths": {
"/pets": {
"post": {
...
"operationId": "addPet",
"x-apidog-status": "released"
}
}
}x-apidog-maintainer. Its value is the nickname or username of the Apidog user within the team."paths": {
"/pets": {
"post": {
...
"x-apidog-maintainer": "david"
}
}
}@Operation(extensions = {
@Extension(properties = {
@ExtensionProperty(name = "apidog-maintainer", value = "david")})
})
public Response createPet() {...}