get_type_details
Retrieve detailed information about object types in Anytype spaces, including structure, relations, views, and configuration options to understand type organization and properties.
Instructions
Retrieves detailed information about a specific object type in an Anytype space. This tool provides comprehensive details about the type's structure, including its relations, views, and configuration options. Use this tool when you need to understand the structure of a particular object type or to examine its available relations and properties.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | Space ID containing the type | |
| type_id | Yes | Type ID to retrieve details for |
Input Schema (JSON Schema)
{
"properties": {
"space_id": {
"description": "Space ID containing the type",
"type": "string"
},
"type_id": {
"description": "Type ID to retrieve details for",
"type": "string"
}
},
"required": [
"space_id",
"type_id"
],
"type": "object"
}