ProductPlan · Schema

Roadmap

A ProductPlan roadmap representing a product strategy view with lanes, milestones, and bars.

Road MappingProduct ManagementOKRRoadmapsFeaturesProduct StrategyLaunchesDiscoveryIntegrations

Properties

Name Type Description
id integer Unique identifier for the roadmap
name string Name of the roadmap
description string Description of the roadmap
created_at string Timestamp when the roadmap was created
updated_at string Timestamp when the roadmap was last updated
View JSON Schema on GitHub

JSON Schema

roadmap.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/productplan/main/json-schema/roadmap.json",
  "title": "Roadmap",
  "description": "A ProductPlan roadmap representing a product strategy view with lanes, milestones, and bars.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the roadmap"
    },
    "name": {
      "type": "string",
      "description": "Name of the roadmap"
    },
    "description": {
      "type": "string",
      "description": "Description of the roadmap"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the roadmap was created"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the roadmap was last updated"
    }
  },
  "required": ["id", "name"]
}