Acceptance Criteria · JSON Structure

Acceptance Criteria Management Create User Story Request Structure

Request body for creating a new user story

Type: object Properties: 6 Required: 1
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

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

Properties

title description priority storyPoints tags assignee

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

JSON Structure

acceptance-criteria-management-create-user-story-request-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api.example.com/structures/acceptance-criteria-management-create-user-story-request.json",
  "title": "CreateUserStoryRequest",
  "type": "object",
  "description": "Request body for creating a new user story",
  "properties": {
    "title": {
      "type": "string",
      "description": "Short title for the user story"
    },
    "description": {
      "type": "string",
      "description": "Full user story narrative"
    },
    "priority": {
      "type": "string",
      "description": "Priority level",
      "enum": [
        "low",
        "medium",
        "high",
        "critical"
      ]
    },
    "storyPoints": {
      "type": "integer",
      "description": "Effort estimate in story points"
    },
    "tags": {
      "type": "array",
      "description": "Labels or tags",
      "items": {
        "type": "string"
      }
    },
    "assignee": {
      "type": "string",
      "description": "Assignee username or ID"
    }
  },
  "required": [
    "title"
  ]
}