Acceptance Criteria · JSON Structure

Acceptance Criteria Management Update User Story Request Structure

Request body for updating an existing user story

Type: object Properties: 5
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Acceptance Criteria Management Update User Story Request Structure is a JSON Structure definition published by Acceptance Criteria, describing 5 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

title description status priority storyPoints

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

acceptance-criteria-management-update-user-story-request-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api.example.com/structures/acceptance-criteria-management-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"
    }
  }
}