Zapier · JSON Structure

Partner Api Fieldset Structure

Represents a Fieldset

Type: object Properties: 4 Required: 4
IntegrationsiPaaS

Fieldset is a JSON Structure definition published by Zapier, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type id fields title

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-structure/partner-api-fieldset-structure.json",
  "name": "Fieldset",
  "description": "Represents a Fieldset",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "readOnly": true,
      "description": "The type of this Fieldset",
      "example": "standard"
    },
    "id": {
      "type": "string",
      "description": "The unique identifier for this Fieldset",
      "example": "500123"
    },
    "fields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FieldsetFieldsField"
        }
      ],
      "description": "The fields this Fieldset consists of",
      "example": "example-value"
    },
    "title": {
      "type": "string",
      "description": "The title of this Fieldset",
      "example": "Example Name"
    }
  },
  "required": [
    "fields",
    "id",
    "title",
    "type"
  ]
}