{
  "service": "tave",
  "displayName": "Táve",
  "categories": [
    "Productivity",
    "Communication"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Key",
      "placeholder": "TAVE_API_KEY",
      "description": "VSCO Workspace API key used with the X-API-KEY header. Create or view it in Workspace API settings.",
      "extraFields": []
    }
  ],
  "homepageUrl": "https://www.vsco.co/workspace",
  "actions": [
    {
      "id": "tave.get_contact",
      "service": "tave",
      "name": "get_contact",
      "description": "Fetch one Táve contact by its official ULID identifier.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "description": "The VSCO Workspace contact ULID returned by list_contacts or another upstream workflow."
          }
        },
        "additionalProperties": false,
        "required": [
          "id"
        ],
        "description": "The input payload for fetching one Táve contact."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contact": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The contact ULID returned by Táve."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "kind": {
                "anyOf": [
                  {
                    "type": "string",
                    "enum": [
                      "company",
                      "employee",
                      "location",
                      "person"
                    ],
                    "description": "The Táve contact kind returned by the API."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The contact display name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "firstName": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The first name for person-like contacts."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastName": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The last name for person-like contacts."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "companyName": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The company name associated with the contact."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "displayAs": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The employee display alias when present."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "email": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The primary email address."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "secondaryEmail": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The secondary email address."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "phone": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The main phone value used by company or location contacts."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "cellPhone": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The mobile phone number."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "homePhone": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The home phone number."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "workPhone": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The work phone number."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The UTC created timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "modified": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The UTC modified timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "hidden": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the contact is hidden."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "pinned": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the contact is pinned or favorited."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "url": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The website URL associated with the contact."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "address": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "streetAddress": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The street address line."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "village": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The village or district name."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "city": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The city value."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "state": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The state, province, or region value."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "postalCode": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The postal or ZIP code."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "country": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ISO alpha-2 country code when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "latitude": {
                        "anyOf": [
                          {
                            "type": "number",
                            "description": "The geocoded latitude value when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "longitude": {
                        "anyOf": [
                          {
                            "type": "number",
                            "description": "The geocoded longitude value when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "timezone": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The timezone name attached to the address when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      }
                    },
                    "additionalProperties": false,
                    "description": "A normalized Táve address object."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "mailingAddress": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "streetAddress": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The street address line."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "village": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The village or district name."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "city": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The city value."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "state": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The state, province, or region value."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "postalCode": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The postal or ZIP code."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "country": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ISO alpha-2 country code when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "latitude": {
                        "anyOf": [
                          {
                            "type": "number",
                            "description": "The geocoded latitude value when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "longitude": {
                        "anyOf": [
                          {
                            "type": "number",
                            "description": "The geocoded longitude value when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "timezone": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The timezone name attached to the address when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      }
                    },
                    "additionalProperties": false,
                    "description": "A normalized Táve address object."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "links": {
                "type": "object",
                "properties": {
                  "selfHref": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The API URL for this resource."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "managerHref": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The manager UI URL for this resource when returned."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "clientHref": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The client-facing URL for this resource when returned."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                },
                "additionalProperties": false,
                "description": "Normalized links associated with one Táve resource."
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw upstream contact object returned by Táve."
              }
            },
            "additionalProperties": false,
            "description": "A normalized Táve contact summary or detail record."
          }
        },
        "additionalProperties": false,
        "required": [
          "contact"
        ],
        "description": "The response returned when fetching one Táve contact."
      }
    },
    {
      "id": "tave.get_my_studio",
      "service": "tave",
      "name": "get_my_studio",
      "description": "Fetch the current Táve studio profile for the connected API key.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "The input payload for fetching the current Táve studio."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "studio": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The studio ULID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The studio name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "email": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The contact email configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "currencyCode": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The three-letter currency code configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "dateFormat": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The date format configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "decimalSeparator": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The decimal separator configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "defaultBrandId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The default brand ULID when configured."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "temperature": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The temperature unit configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "thousandsSeparator": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The thousands separator configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "timeFormat": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The time format configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "timezoneId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The timezone ULID configured on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "weekStartsOn": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The day of week that starts the studio calendar."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "readonlyEnabled": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether readonly mode is enabled on the studio."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "readonlyEnabledAt": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The UTC timestamp when readonly mode was enabled, when present."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The UTC created timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "modified": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The UTC modified timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "hidden": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the studio resource is marked hidden."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "links": {
                "type": "object",
                "properties": {
                  "selfHref": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The API URL for this resource."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "managerHref": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The manager UI URL for this resource when returned."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "clientHref": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The client-facing URL for this resource when returned."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                },
                "additionalProperties": false,
                "description": "Normalized links associated with one Táve resource."
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw upstream studio object returned by Táve."
              }
            },
            "additionalProperties": false,
            "description": "The current Táve studio profile returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "studio"
        ],
        "description": "The response returned when fetching the current Táve studio."
      }
    },
    {
      "id": "tave.list_contacts",
      "service": "tave",
      "name": "list_contacts",
      "description": "List contacts in the current Táve studio with official pagination, hidden, email, and sort filters.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "page": {
            "type": "integer",
            "minimum": 1,
            "description": "The page number of contact results to return."
          },
          "pageSize": {
            "type": "integer",
            "minimum": 10,
            "maximum": 100,
            "description": "The number of contacts to return per page. VSCO Workspace accepts 10 through 100."
          },
          "includeHidden": {
            "type": "boolean",
            "description": "Whether hidden contacts should be included in the returned list."
          },
          "email": {
            "type": "string",
            "description": "Only return contacts matching this email address.",
            "format": "email"
          },
          "sortBy": {
            "type": "string",
            "minLength": 1,
            "description": "The official VSCO Workspace sort expression, such as id, modified desc, or name asc."
          }
        },
        "additionalProperties": false,
        "description": "The input payload for listing Táve contacts."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "pagination": {
            "type": "object",
            "properties": {
              "currentPage": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The current page number returned by Táve."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "totalPages": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The total number of pages available for this query."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "totalItems": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The total number of contacts matching this query."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "rows": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The number of contacts returned in the current page payload."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": false,
            "description": "Pagination metadata returned by Táve contact listings."
          },
          "contacts": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The contact ULID returned by Táve."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "kind": {
                  "anyOf": [
                    {
                      "type": "string",
                      "enum": [
                        "company",
                        "employee",
                        "location",
                        "person"
                      ],
                      "description": "The Táve contact kind returned by the API."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "name": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The contact display name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "firstName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The first name for person-like contacts."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "lastName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The last name for person-like contacts."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "companyName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The company name associated with the contact."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "displayAs": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The employee display alias when present."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "email": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The primary email address."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "secondaryEmail": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The secondary email address."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "phone": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The main phone value used by company or location contacts."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "cellPhone": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The mobile phone number."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "homePhone": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The home phone number."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "workPhone": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The work phone number."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "created": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The UTC created timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "modified": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The UTC modified timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "hidden": {
                  "anyOf": [
                    {
                      "type": "boolean",
                      "description": "Whether the contact is hidden."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "pinned": {
                  "anyOf": [
                    {
                      "type": "boolean",
                      "description": "Whether the contact is pinned or favorited."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "url": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The website URL associated with the contact."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "address": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {
                        "streetAddress": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The street address line."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "village": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The village or district name."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "city": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The city value."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "state": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The state, province, or region value."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "postalCode": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The postal or ZIP code."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "country": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ISO alpha-2 country code when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "latitude": {
                          "anyOf": [
                            {
                              "type": "number",
                              "description": "The geocoded latitude value when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "longitude": {
                          "anyOf": [
                            {
                              "type": "number",
                              "description": "The geocoded longitude value when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "timezone": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The timezone name attached to the address when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        }
                      },
                      "additionalProperties": false,
                      "description": "A normalized Táve address object."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "mailingAddress": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {
                        "streetAddress": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The street address line."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "village": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The village or district name."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "city": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The city value."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "state": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The state, province, or region value."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "postalCode": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The postal or ZIP code."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "country": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ISO alpha-2 country code when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "latitude": {
                          "anyOf": [
                            {
                              "type": "number",
                              "description": "The geocoded latitude value when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "longitude": {
                          "anyOf": [
                            {
                              "type": "number",
                              "description": "The geocoded longitude value when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "timezone": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The timezone name attached to the address when available."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        }
                      },
                      "additionalProperties": false,
                      "description": "A normalized Táve address object."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "links": {
                  "type": "object",
                  "properties": {
                    "selfHref": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The API URL for this resource."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "managerHref": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The manager UI URL for this resource when returned."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "clientHref": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The client-facing URL for this resource when returned."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    }
                  },
                  "additionalProperties": false,
                  "description": "Normalized links associated with one Táve resource."
                },
                "raw": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The raw upstream contact object returned by Táve."
                }
              },
              "additionalProperties": false,
              "description": "A normalized Táve contact summary or detail record."
            },
            "description": "The normalized Táve contacts returned for this page."
          }
        },
        "additionalProperties": false,
        "required": [
          "pagination",
          "contacts"
        ],
        "description": "The response returned when listing Táve contacts."
      }
    }
  ]
}
