Scaled Agile · Schema
SAFe Program Increment
A SAFe Program Increment (PI) representing a fixed timebox of 8-12 weeks for an Agile Release Train
AgileBusiness AgilityDevOpsEnterpriseLeanProject ManagementSAFeScaled Agile
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique PI identifier |
| name | string | PI name (e.g., PI 2026.2) |
| start_date | string | PI start date |
| end_date | string | PI end date |
| art | object | Agile Release Train this PI belongs to |
| status | string | Current PI status |
| iterations | array | Sprints/Iterations within this PI |
| objectives | array | PI objectives committed by teams |
| features | array | Features planned for this PI |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/scaled-agile/main/json-schema/scaled-agile-pi-schema.json",
"title": "SAFe Program Increment",
"description": "A SAFe Program Increment (PI) representing a fixed timebox of 8-12 weeks for an Agile Release Train",
"type": "object",
"required": ["id", "name", "start_date", "end_date", "art"],
"properties": {
"id": {
"type": "string",
"description": "Unique PI identifier"
},
"name": {
"type": "string",
"description": "PI name (e.g., PI 2026.2)",
"examples": ["PI 2026.1", "PI 2026.2", "PI Q2 FY26"]
},
"start_date": {
"type": "string",
"format": "date",
"description": "PI start date"
},
"end_date": {
"type": "string",
"format": "date",
"description": "PI end date"
},
"art": {
"type": "object",
"description": "Agile Release Train this PI belongs to",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"status": {
"type": "string",
"enum": ["planning", "active", "completed"],
"description": "Current PI status"
},
"iterations": {
"type": "array",
"description": "Sprints/Iterations within this PI",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"number": {
"type": "integer",
"description": "Iteration number within PI (1-5, where 5 is typically IP)"
},
"name": {
"type": "string"
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
},
"type": {
"type": "string",
"enum": ["development", "innovation_planning"],
"description": "Iteration type"
}
}
}
},
"objectives": {
"type": "array",
"description": "PI objectives committed by teams",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"business_value": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Business value rating (1-10)"
},
"committed": {
"type": "boolean"
},
"team": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"features": {
"type": "array",
"description": "Features planned for this PI",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"status": {
"type": "string",
"enum": ["planned", "in_progress", "done", "accepted"]
}
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/scaled-agile-pi"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.