ProductPlan · Schema

Objective

A strategic objective (OKR) in ProductPlan with associated key results.

Road MappingProduct ManagementOKRRoadmapsFeaturesProduct StrategyLaunchesDiscoveryIntegrations

Properties

Name Type Description
id integer Unique identifier for the objective
title string Title of the objective
description string Detailed description of the objective
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

objective.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/productplan/main/json-schema/objective.json",
  "title": "Objective",
  "description": "A strategic objective (OKR) in ProductPlan with associated key results.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the objective"
    },
    "title": {
      "type": "string",
      "description": "Title of the objective"
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the objective"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["id", "title"]
}