Acceptance Criteria · JSON Structure

Acceptance Criteria Management Update Acceptance Criterion Request Structure

Request body for updating an acceptance criterion

Type: object Properties: 6
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

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

Properties

description given when then status order

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

JSON Structure

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