Zapier · Schema

Fieldset

Represents a Fieldset

IntegrationsiPaaS

Properties

Name Type Description
type string The type of this Fieldset
id string The unique identifier for this Fieldset
fields object The fields this Fieldset consists of
title string The title of this Fieldset
View JSON Schema on GitHub

JSON Schema

zapier-fieldset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Fieldset",
  "title": "Fieldset",
  "type": "object",
  "description": "Represents a Fieldset",
  "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"
  ]
}