> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Attention List Field Configurations: Inputs, Cost & CLI

> List Field Configurations. Attention Attention List Field Configurations docs include request fields, response shape, pricing notes, and Deepline CLI examples.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=attention_list_field_configurations:{}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name           | Type      | Required | Default | Description                             |
| -------------- | --------- | -------- | ------- | --------------------------------------- |
| `payload.page` | `integer` | No       |         | 1-indexed page number. Defaults to 1.   |
| `payload.size` | `integer` | No       |         | Page size. Defaults to 50; maximum 200. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns a paginated list of field configurations owned by the authenticated organization.",
    "properties": {
      "page": {
        "type": "integer",
        "description": "1-indexed page number. Defaults to 1."
      },
      "size": {
        "type": "integer",
        "description": "Page size. Defaults to 50; maximum 200."
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                                                                               |
| ------------- | -------- | -------- | ------- | --------------------------------------------------------------------------------------------------------- |
| `result.data` | `object` | Yes      |         | Paginated envelope containing a list of field configurations belonging to the authenticated organization. |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging).                                                            |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Paginated envelope containing a list of field configurations belonging to the authenticated organization.",
        "properties": {
          "data": {
            "type": "array",
            "description": "Field configurations for the current page.",
            "items": {
              "type": "object",
              "description": "A Field Configuration (internally `IntelligenceItemCollection`) groups a set of intelligence items that are surfaced together for the teams it is assigned to. Field Configurations are scoped to a single organization.",
              "properties": {
                "uuid": {
                  "type": "string",
                  "description": "Unique identifier of the field configuration."
                },
                "name": {
                  "type": "string",
                  "description": "Human-readable name of the field configuration."
                },
                "organizationUUID": {
                  "type": "string",
                  "description": "UUID of the organization the field configuration belongs to."
                },
                "teamsUUID": {
                  "type": "array",
                  "description": "UUIDs of the teams this field configuration is assigned to. Ignored when `allTeams` is true.",
                  "items": {
                    "type": "string"
                  }
                },
                "allTeams": {
                  "type": "boolean",
                  "description": "When true, this configuration applies to every team in the organization and `teamsUUID` is ignored."
                },
                "isDefaultTemplate": {
                  "type": "boolean",
                  "description": "Whether this configuration is the organization's default template."
                },
                "criteria": {
                  "type": "object",
                  "description": "Criteria expression that controls when this field configuration applies. Conditions are combined using the specified boolean operator.",
                  "properties": {
                    "conditions": {
                      "type": "array",
                      "description": "Ordered list of conditions to evaluate.",
                      "items": {
                        "type": "object",
                        "description": "A single condition within a field-configuration criteria expression. Conditions reference a field name and the value it must match for an intelligence item to apply.",
                        "properties": {
                          "field": {
                            "type": "string",
                            "description": "Name of the field the condition applies to."
                          },
                          "value": {
                            "type": "string",
                            "description": "Value the field must match for this condition."
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "operator": {
                      "type": "string",
                      "description": "Boolean operator used to combine the conditions.",
                      "enum": [
                        "AND",
                        "OR"
                      ]
                    }
                  },
                  "additionalProperties": false
                },
                "createdAt": {
                  "type": "string",
                  "description": "Timestamp when the configuration was created.",
                  "format": "date-time"
                }
              },
              "required": [
                "allTeams",
                "createdAt",
                "isDefaultTemplate",
                "name",
                "organizationUUID",
                "teamsUUID",
                "uuid"
              ],
              "additionalProperties": false
            }
          },
          "meta": {
            "type": "object",
            "properties": {
              "pageCount": {
                "type": "integer"
              },
              "totalRecords": {
                "type": "integer"
              },
              "pageNumber": {
                "type": "integer"
              },
              "pageSize": {
                "type": "integer"
              }
            },
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute attention_list_field_configurations --payload '{}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
