UpdateAcceptanceCriterionRequest

Request body for updating an acceptance criterion

AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Properties

Name Type Description
description string Updated description
given string Updated Given clause
when string Updated When clause
then string Updated Then clause
status string Updated verification status
order integer Updated display order
View JSON Schema on GitHub

JSON Schema

acceptance-criteria-management-update-acceptance-criterion-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.example.com/schemas/update-acceptance-criterion-request.json",
  "title": "UpdateAcceptanceCriterionRequest",
  "type": "object",
  "description": "Request body for updating an acceptance criterion",
  "properties": {
    "description": {
      "type": "string",
      "description": "Updated description"
    },
    "given": {
      "type": "string",
      "description": "Updated Given clause"
    },
    "when": {
      "type": "string",
      "description": "Updated When clause"
    },
    "then": {
      "type": "string",
      "description": "Updated Then clause"
    },
    "status": {
      "type": "string",
      "description": "Updated verification status",
      "enum": [
        "not-verified",
        "passing",
        "failing"
      ]
    },
    "order": {
      "type": "integer",
      "description": "Updated display order"
    }
  }
}