UpdateUserStoryRequest

Request body for updating an existing user story

AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Properties

Name Type Description
title string Updated title
description string Updated description
status string Updated status
priority string Updated priority
storyPoints integer Updated story point estimate
View JSON Schema on GitHub

JSON Schema

acceptance-criteria-management-update-user-story-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.example.com/schemas/update-user-story-request.json",
  "title": "UpdateUserStoryRequest",
  "type": "object",
  "description": "Request body for updating an existing user story",
  "properties": {
    "title": {
      "type": "string",
      "description": "Updated title"
    },
    "description": {
      "type": "string",
      "description": "Updated description"
    },
    "status": {
      "type": "string",
      "description": "Updated status",
      "enum": [
        "backlog",
        "in-progress",
        "ready-for-review",
        "done"
      ]
    },
    "priority": {
      "type": "string",
      "description": "Updated priority",
      "enum": [
        "low",
        "medium",
        "high",
        "critical"
      ]
    },
    "storyPoints": {
      "type": "integer",
      "description": "Updated story point estimate"
    }
  }
}