RapidAPI · Schema
EndpointInput
API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Display name of the endpoint |
| method | string | HTTP method |
| path | string | URL path for the endpoint |
| group | string | The endpoint group to organize under |
| description | string | Description of the endpoint |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EndpointInput",
"title": "EndpointInput",
"type": "object",
"required": [
"name",
"method",
"path"
],
"properties": {
"name": {
"type": "string",
"description": "Display name of the endpoint"
},
"method": {
"type": "string",
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE"
],
"description": "HTTP method"
},
"path": {
"type": "string",
"description": "URL path for the endpoint"
},
"group": {
"type": "string",
"description": "The endpoint group to organize under"
},
"description": {
"type": "string",
"description": "Description of the endpoint"
}
}
}