Affirm · Schema

EvidenceItem

A single piece of evidence associated with a dispute.

FintechBNPLLendingPaymentsConsumer

Properties

Name Type Description
id string Unique identifier for this evidence item.
type string Type of evidence (file, text, tracking).
content string For text evidence, the content of the explanation. For file evidence, the file identifier.
submitted_at string Timestamp when this evidence was submitted, in RFC 3339 format.
View JSON Schema on GitHub

JSON Schema

disputes-evidence-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/affirm/refs/heads/main/json-schema/disputes-evidence-item-schema.json",
  "title": "EvidenceItem",
  "description": "A single piece of evidence associated with a dispute.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for this evidence item.",
      "example": "500123"
    },
    "type": {
      "type": "string",
      "description": "Type of evidence (file, text, tracking).",
      "enum": [
        "file",
        "text",
        "tracking"
      ],
      "example": "file"
    },
    "content": {
      "type": "string",
      "description": "For text evidence, the content of the explanation. For file evidence, the file identifier.",
      "example": "example_value"
    },
    "submitted_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when this evidence was submitted, in RFC 3339 format.",
      "example": "2025-03-15T14:30:00Z"
    }
  }
}