SourceForge · Schema
SourceForge Ticket
Schema for an issue or ticket in the SourceForge Allura tracker
Open SourceDeveloper ToolsProject ManagementCode HostingCollaboration
Properties
| Name | Type | Description |
|---|---|---|
| ticket_num | integer | Sequential ticket number within the project tracker |
| summary | string | Short title or summary of the ticket |
| description | string | Detailed description of the issue or feature request |
| status | string | Current status of the ticket (open, closed, pending, etc.) |
| assigned_to | string | Username of the person assigned to the ticket |
| labels | array | Tags or labels applied to the ticket |
| created_date | string | When the ticket was created |
| mod_date | string | When the ticket was last modified |
| private | boolean | Whether the ticket is private (visible to project members only) |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/sourceforge/main/json-schema/sourceforge-ticket-schema.json",
"title": "SourceForge Ticket",
"description": "Schema for an issue or ticket in the SourceForge Allura tracker",
"type": "object",
"properties": {
"ticket_num": {
"type": "integer",
"description": "Sequential ticket number within the project tracker"
},
"summary": {
"type": "string",
"description": "Short title or summary of the ticket"
},
"description": {
"type": "string",
"description": "Detailed description of the issue or feature request"
},
"status": {
"type": "string",
"description": "Current status of the ticket (open, closed, pending, etc.)"
},
"assigned_to": {
"type": "string",
"description": "Username of the person assigned to the ticket"
},
"labels": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tags or labels applied to the ticket"
},
"created_date": {
"type": "string",
"format": "date-time",
"description": "When the ticket was created"
},
"mod_date": {
"type": "string",
"format": "date-time",
"description": "When the ticket was last modified"
},
"private": {
"type": "boolean",
"description": "Whether the ticket is private (visible to project members only)"
}
},
"required": ["ticket_num", "summary"]
}