RapidAPI · Schema
Definition
API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the definition |
| projectId | string | The project this definition belongs to |
| format | string | The format of the definition |
| version | string | The specification version |
| title | string | Title from the imported definition |
| importedAt | string | Timestamp when the definition was imported |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Definition",
"title": "Definition",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the definition"
},
"projectId": {
"type": "string",
"description": "The project this definition belongs to"
},
"format": {
"type": "string",
"enum": [
"openapi",
"postman"
],
"description": "The format of the definition"
},
"version": {
"type": "string",
"description": "The specification version"
},
"title": {
"type": "string",
"description": "Title from the imported definition"
},
"importedAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the definition was imported"
}
}
}