RapidAPI · Schema
ApiVersion
API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the API version |
| apiId | string | The API this version belongs to |
| name | string | Version name or label |
| status | string | Current status of the version |
| createdAt | string | Timestamp when the version was created |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiVersion",
"title": "ApiVersion",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the API version"
},
"apiId": {
"type": "string",
"description": "The API this version belongs to"
},
"name": {
"type": "string",
"description": "Version name or label"
},
"status": {
"type": "string",
"enum": [
"active",
"deprecated",
"draft"
],
"description": "Current status of the version"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the version was created"
}
}
}