RapidAPI · Schema

Category

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
id string Unique identifier for the category
name string Display name of the category
slugifiedName string URL-friendly slug for the category
View JSON Schema on GitHub

JSON Schema

rapidapi-category-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Category",
  "title": "Category",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the category"
    },
    "name": {
      "type": "string",
      "description": "Display name of the category"
    },
    "slugifiedName": {
      "type": "string",
      "description": "URL-friendly slug for the category"
    }
  }
}