RapidAPI · Schema
ApiUpdateInput
API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Updated display name of the API |
| description | string | Updated short description of the API |
| longDescription | string | Updated detailed description |
| category | string | Updated category assignment |
| websiteUrl | string | Updated website URL |
| imageFile | string | Updated API icon image file |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiUpdateInput",
"title": "ApiUpdateInput",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Updated display name of the API"
},
"description": {
"type": "string",
"description": "Updated short description of the API"
},
"longDescription": {
"type": "string",
"description": "Updated detailed description"
},
"category": {
"type": "string",
"description": "Updated category assignment"
},
"websiteUrl": {
"type": "string",
"format": "uri",
"description": "Updated website URL"
},
"imageFile": {
"type": "string",
"format": "binary",
"description": "Updated API icon image file"
}
}
}