Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of this Info Field |
| id | string | The identifier of this Info Field |
| description | string | The description for this Info Field |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "InfoField",
"description": "Represents an Info-type Fieldset",
"$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-info-field-schema.json",
"type": "object",
"properties": {
"type": {
"type": "string",
"readOnly": true,
"description": "The type of this Info Field",
"example": "standard"
},
"id": {
"type": "string",
"description": "The identifier of this Info Field",
"example": "500123"
},
"description": {
"type": "string",
"description": "The description for this Info Field",
"example": "Example description for this resource."
}
},
"required": [
"description",
"id",
"type"
]
}