Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ValidationFieldPath

Type: object

A path to a field, including any parent fields.
elements

Type: array

elements contains each element of the path, starting from the root and recursing downward.
Array item

Schema: ValidationFieldPathElement

All schema constraints and annotations
{
  "description": "`elements` contains each element of the path, starting from the root and recursing downward.",
  "items": {
    "$ref": "#/components/schemas/ValidationFieldPathElement"
  },
  "type": "array"
}
All schema constraints and annotations
{
  "description": "A path to a field, including any parent fields.",
  "properties": {
    "elements": {
      "description": "`elements` contains each element of the path, starting from the root and recursing downward.",
      "items": {
        "$ref": "#/components/schemas/ValidationFieldPathElement"
      },
      "type": "array"
    }
  },
  "title": "FieldPath",
  "type": "object"
}