NucliaDB Agentic API (v1)
API reference for NucliaDB Agentic API endpoints. Requires a Knowledge Box API Key.
Response samples
- 200
- 422
{- "property1": {
- "title": "string",
- "rephrase": {
- "ask_to": "string",
- "prompt": "string",
- "model": "string",
- "history": true
}, - "smart_agent": {
- "mode": "reactive",
- "extra_prompt": "string",
- "models": {
- "context_validation": "string",
- "planner": "string",
- "executor": "string"
}, - "sources": [
- "string"
], - "history": true
}, - "summarize": {
- "user_prompt": "string",
- "system_prompt": "string",
- "conversational": false,
- "model": "string",
- "history": true
}
}, - "property2": {
- "title": "string",
- "rephrase": {
- "ask_to": "string",
- "prompt": "string",
- "model": "string",
- "history": true
}, - "smart_agent": {
- "mode": "reactive",
- "extra_prompt": "string",
- "models": {
- "context_validation": "string",
- "planner": "string",
- "executor": "string"
}, - "sources": [
- "string"
], - "history": true
}, - "summarize": {
- "user_prompt": "string",
- "system_prompt": "string",
- "conversational": false,
- "model": "string",
- "history": true
}
}
}Create agentic configuration
path Parameters
| kbid required | string (Kbid) |
| agentic_id required | string (Agentic Id) |
Request Body schema: application/jsonrequired
Title (string) or Title (null) (Title) | |
AgenticRephraseConfiguration (object) or null | |
AgenticSmartAgentConfiguration (object) or null | |
AgenticSummarizeConfiguration (object) or null |
Responses
Request samples
- Payload
{- "title": "string",
- "rephrase": {
- "ask_to": "string",
- "prompt": "string",
- "model": "string",
- "history": true
}, - "smart_agent": {
- "mode": "reactive",
- "extra_prompt": "string",
- "models": {
- "context_validation": "string",
- "planner": "string",
- "executor": "string"
}, - "sources": [
- "string"
], - "history": true
}, - "summarize": {
- "user_prompt": "string",
- "system_prompt": "string",
- "conversational": false,
- "model": "string",
- "history": true
}
}Response samples
- 201
- 422
nullGet agentic configuration
path Parameters
| kbid required | string (Kbid) |
| agentic_id required | string (Agentic Id) |
Responses
Response samples
- 200
- 422
{- "title": "string",
- "rephrase": {
- "ask_to": "string",
- "prompt": "string",
- "model": "string",
- "history": true
}, - "smart_agent": {
- "mode": "reactive",
- "extra_prompt": "string",
- "models": {
- "context_validation": "string",
- "planner": "string",
- "executor": "string"
}, - "sources": [
- "string"
], - "history": true
}, - "summarize": {
- "user_prompt": "string",
- "system_prompt": "string",
- "conversational": false,
- "model": "string",
- "history": true
}
}Update agentic configuration
path Parameters
| kbid required | string (Kbid) |
| agentic_id required | string (Agentic Id) |
Request Body schema: application/jsonrequired
Title (string) or Title (null) (Title) | |
AgenticRephraseConfiguration (object) or null | |
AgenticSmartAgentConfiguration (object) or null | |
AgenticSummarizeConfiguration (object) or null |
Responses
Request samples
- Payload
{- "title": "string",
- "rephrase": {
- "ask_to": "string",
- "prompt": "string",
- "model": "string",
- "history": true
}, - "smart_agent": {
- "mode": "reactive",
- "extra_prompt": "string",
- "models": {
- "context_validation": "string",
- "planner": "string",
- "executor": "string"
}, - "sources": [
- "string"
], - "history": true
}, - "summarize": {
- "user_prompt": "string",
- "system_prompt": "string",
- "conversational": false,
- "model": "string",
- "history": true
}
}Response samples
- 422
{- "detail": [
- {
- "loc": [
- "string"
], - "msg": "string",
- "type": "string",
- "input": null,
- "ctx": { }
}
]
}Ask Knowledge Box
Ask questions on a Knowledge Box
path Parameters
| kbid required | string (Kbid) |
header Parameters
| x-ndb-client | string (NucliaDBClientType) Default: api Enum: "api" "widget" "web" "dashboard" "desktop" "chrome_extension" |
| x-show-consumption | boolean (X-Show-Consumption) Default: false |
| x-nucliadb-user | string (X-Nucliadb-User) Default: |
| x-forwarded-for | string (X-Forwarded-For) Default: |
| x-synchronous | boolean (X-Synchronous) Default: false When set to true, outputs response as JSON in a non-streaming way. This is slower and requires waiting for entire answer to be ready. |
Request Body schema: application/jsonrequired
Audit metadata (object) or Audit metadata (null) (Audit metadata) A dictionary containing optional audit-specific metadata, such as user_id, environment, or other contextual information. This metadata can be leveraged for filtering and analyzing activity logs in future operations. Each key-value pair represents a piece of metadata relevant to the user's request. | |
| query required | string (Query) <= 20000 characters The query to get a generative answer for |
Agentic configuration ID (string) or Agentic configuration ID (null) (Agentic configuration ID) The ID of the agentic configuration to use for this request. If not provided, the default retrieval and generation parameters of the Knowledge Box will be used. If provided, the parameters in the agentic configuration will override the parameters in the request. Note that the | |
| top_k | integer (Top k) [ 1 .. 200 ] Default: 20 The top most relevant results to fetch at the retrieval step. The maximum number of results allowed is 200. |
FilterExpression (object) or Filter resource by an expression (null) (Filter resource by an expression) Returns only documents that match this filter expression.Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters This allows building complex filtering expressions and replaces the following parameters: | |
| fields | Array of strings (Fields) Default: [] The list of fields to search in. For instance: |
Array of Search Filters (strings) or Array of Search Filters (objects) (Search Filters) Default: [] The list of filters to apply. Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters | |
Array of Keyword filters (strings) or Array of Keyword filters (objects) (Keyword filters) Default: [] List of keyword filter expressions to apply to the retrieval step. The text block search will only be performed on the documents that contain the specified keywords. The filters are case-insensitive, and only alphanumeric characters and spaces are allowed. Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters | |
Vectorset (string) or Vectorset (null) (Vectorset) Vectors index to perform the search in. If not provided, NucliaDB will use the default one | |
Minimum score (number) or MinScore (object) or Minimum score (null) (Minimum score) Minimum score to filter search results. Results with a lower score will be ignored. Accepts either a float or a dictionary with the minimum scores for the bm25 and vector indexes. If a float is provided, it is interpreted as the minimum score for vector index search. | |
| features | Array of strings (Chat features) Default: ["semantic","keyword"] Items Enum: "keyword" "relations" "semantic" Features enabled for the chat endpoint. Semantic search is done if |
Resource creation range start (string) or Resource creation range start (null) (Resource creation range start) Resources created before this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource creation range end (string) or Resource creation range end (null) (Resource creation range end) Resources created after this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource modification range start (string) or Resource modification range start (null) (Resource modification range start) Resources modified before this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource modification range end (string) or Resource modification range end (null) (Resource modification range end) Resources modified after this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
| show | Array of strings (Show metadata) Default: ["basic"] Items Enum: "basic" "origin" "extra" "relations" "values" "extracted" "errors" "security" Controls which types of metadata are serialized on resources of search results |
| field_type_filter | Array of strings (Field type filter) Default: ["text","file","link","conversation","generic","key_value"] Items Enum: "text" "file" "link" "conversation" "generic" "key_value" Define which field types are serialized on resources of search results |
| extracted | Array of strings (Extracted metadata) Deprecated Default: [] Items Enum: "text" "metadata" "shortened_metadata" "large_metadata" "vectors" "link" "file" "question_answers" "relation_vectors" [Deprecated] Please use GET resource endpoint instead to get extracted metadata |
Array of Chat context (deprecated) (objects) or Chat context (deprecated) (null) (Chat context (deprecated)) Deprecated DEPRECATED! Please, use | |
Array of Chat history (objects) or Chat history (null) (Chat history) Use to rephrase the new LLM query by taking into account the chat conversation history. This will be passed to the LLM so that it is aware of the previous conversation. | |
Array of Extra query context (strings) or Extra query context (null) (Extra query context) Additional context that is added to the retrieval context sent to the LLM. It allows extending the chat feature with content that may not be in the Knowledge Box. | |
Array of Extra query context images (objects) or Extra query context images (null) (Extra query context images) Additional images added to the retrieval context sent to the LLM." It allows extending the chat feature with content that may not be in the Knowledge Box. | |
Image (object) or Query image (null) (Query image) Image that will be used together with the query text for retrieval and then sent to the LLM as part of the context. If a query image is provided, the | |
| highlight | boolean (Highlight) Default: false If set to true, the query terms will be highlighted in the results between ... tags |
| resource_filters | Array of strings (Resources filter) Default: [] List of resource ids to filter search results for. Only paragraphs from the specified resources will be returned. |
Prompts (string) or CustomPrompt (object) or Prompts (null) (Prompts) Use to customize the prompts given to the generative model. Both system and user prompts can be customized. If a string is provided, it is interpreted as the user prompt. | |
RankFusionName (string) or Rank fusion (any) (Rank fusion) Default: "rrf" Rank fusion algorithm to use to merge results from multiple retrievers (keyword, semantic) | |
RerankerName (string) or Reranker (any) (Reranker) Default: "predict" Reranker let you specify which method you want to use to rerank your results at the end of retrieval | |
Citations (boolean) or CitationsType (string) or Citations (null) (Citations) Whether to include citations in the response. If set to None or False, no citations will be computed. If set to True or 'default', citations will be computed after answer generation and send as a separate | |
Citation Threshold (number) or Citation Threshold (null) (Citation Threshold) If citations is set to True or 'default', this will be the similarity threshold. Value between 0 and 1, lower values will produce more citations. If not set, it will be set to the optimized threshold found by Nuclia. | |
RequestSecurity (object) or Security (null) (Security) Security metadata for the request. Please refer to the documentation for more details on how security works: https://docs.rag.progress.cloud/docs/management/how-to/restrict-access | |
| show_hidden | boolean (Show hidden resources) Default: false If set to false (default), excludes hidden resources from search |
Array of any (RAG context building strategies) Default: [] Options for tweaking how the context for the LLM model is crafted:
If empty, the default strategy is used, which simply adds the text of the matching paragraphs to the context. | |
Array of any (RAG image context building strategies) Default: [] Options for tweaking how the image based context for the LLM model is crafted:
| |
| debug | boolean (Debug mode) Default: false If set, the response will include some extra metadata for debugging purposes, like the list of queried nodes. |
Generative model (string) or Generative model (null) (Generative model) The generative model to use for the chat endpoint. If not provided, the model configured for the Knowledge Box is used. | |
Seed for the generative model (integer) or Seed for the generative model (null) (Seed for the generative model) The seed to use for the generative model for deterministic generation. Only supported by some models. | |
Maximum LLM tokens to use for the request (integer) or MaxTokens (object) or Maximum LLM tokens to use for the request (null) (Maximum LLM tokens to use for the request) Use to limit the amount of tokens used in the LLM context and/or for generating the answer. If not provided, the default maximum tokens of the generative model will be used. If an integer is provided, it is interpreted as the maximum tokens for the answer. | |
| rephrase | boolean (Rephrase) Default: false Rephrase the query for a more efficient retrieval. This will consume LLM tokens and make the request slower. |
Chat History Relevance Threshold (number) or Chat History Relevance Threshold (null) (Chat History Relevance Threshold) Threshold to determine if the past chat history is relevant to rephrase the user's question. 0 - Always treat previous messages as relevant (always rephrase).1 - Always treat previous messages as irrelevant (never rephrase).Values in between adjust the sensitivity. | |
| prefer_markdown | boolean (Prefer markdown) Default: false If set to true, the response will be in markdown format |
Answer JSON schema (object) or Answer JSON schema (null) (Answer JSON schema) Desired JSON schema for the LLM answer.
This schema is passed to the LLM so that it answers in a scructured format following the schema. If not provided, textual response is returned.
Note that when using this parameter, the answer in the generative response will not be returned in chunks, the whole response text will be returned instead.
Using this feature also disables the | |
| generate_answer | boolean (Generate Answer) Default: true Whether to generate an answer using the generative model. If set to false, the response will only contain the retrieval results. |
Search Configuration (string) or Search Configuration (null) (Search Configuration) Load ask parameters from this configuration. Parameters in the request override parameters from the configuration. | |
Reasoning (object) or Reasoning options (boolean) (Reasoning options) Default: false Reasoning options for the generative model. Set to True to enable default reasoning, False to disable, or provide a Reasoning object for custom options. |
Responses
Request samples
- Payload
{- "audit_metadata": {
- "environment": "test",
- "user": "my-user-123"
}, - "query": "string",
- "agentic_config_id": "string",
- "top_k": 20,
- "filter_expression": {
- "field": {
- "operands": [
- { }
]
}, - "paragraph": {
- "operands": [
- { }
]
}, - "key_value": {
- "operands": [
- { }
]
}, - "operator": "and"
}, - "fields": [ ],
- "filters": [ ],
- "keyword_filters": [
- "NLP",
- "BERT"
], - "vectorset": "string",
- "min_score": 0,
- "features": [
- "semantic",
- "keyword"
], - "range_creation_start": "2019-08-24T14:15:22Z",
- "range_creation_end": "2019-08-24T14:15:22Z",
- "range_modification_start": "2019-08-24T14:15:22Z",
- "range_modification_end": "2019-08-24T14:15:22Z",
- "show": [
- "basic"
], - "field_type_filter": [
- "text",
- "file",
- "link",
- "conversation",
- "generic",
- "key_value"
], - "extracted": [ ],
- "context": [
- {
- "author": "NUCLIA",
- "text": "string"
}
], - "chat_history": [
- {
- "author": "NUCLIA",
- "text": "string"
}
], - "extra_context": [
- "string"
], - "extra_context_images": [
- {
- "content_type": "string",
- "b64encoded": "string"
}
], - "query_image": {
- "content_type": "string",
- "b64encoded": "string"
}, - "highlight": false,
- "resource_filters": [ ],
- "prompt": "string",
- "rank_fusion": "rrf",
- "reranker": "predict",
- "citations": true,
- "citation_threshold": 1,
- "security": {
- "access_groups": [ ]
}, - "show_hidden": false,
- "rag_strategies": [
- {
- "count": 2,
- "name": "full_resource"
}
], - "rag_images_strategies": [ ],
- "debug": false,
- "generative_model": "string",
- "generative_model_seed": 0,
- "max_tokens": 0,
- "rephrase": false,
- "chat_history_relevance_threshold": 1,
- "prefer_markdown": false,
- "answer_json_schema": {
- "description": "Structured response with custom fields",
- "name": "structred_response",
- "parameters": {
- "properties": {
- "answer": {
- "description": "Text responding to the user's query with the given context.",
- "type": "string"
}, - "confidence": {
- "description": "The confidence level of the response, on a scale from 0 to 5.",
- "maximum": 5,
- "minimum": 0,
- "type": "integer"
}, - "machinery_mentioned": {
- "description": "Optional field listing any machinery mentioned in the response.",
- "items": {
- "description": "A list of machinery mentioned in the response, if any. Use machine IDs if possible.",
- "type": "string"
}, - "type": "array"
}
}, - "required": [
- "answer",
- "confidence"
], - "type": "object"
}
}, - "generate_answer": true,
- "search_configuration": "string",
- "reasoning": false
}Response samples
- 200
- 422
{- "answer": "string",
- "reasoning": "string",
- "answer_json": { },
- "status": "string",
- "retrieval_results": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}, - "retrieval_best_matches": [ ],
- "prequeries": {
- "property1": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}, - "property2": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}
}, - "learning_id": "",
- "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "citations": { },
- "citation_footnote_to_context": {
- "property1": "string",
- "property2": "string"
}, - "augmented_context": {
- "paragraphs": { },
- "fields": { }
}, - "prompt_context": [
- "string"
], - "predict_request": { },
- "metadata": {
- "tokens": {
- "input": 0,
- "output": 0,
- "input_nuclia": 0,
- "output_nuclia": 0
}, - "timings": {
- "generative_first_chunk": 0,
- "generative_total": 0
}
}, - "consumption": {
- "normalized_tokens": {
- "input": 0,
- "output": 0,
- "image": 0
}, - "customer_key_tokens": {
- "input": 0,
- "output": 0,
- "image": 0
}
}, - "error_details": "string",
- "debug": { }
}Ask a resource (by id)
Ask questions to a resource
path Parameters
| kbid required | string (Kbid) |
| rid required | string <uuid> (Rid) |
header Parameters
| x-show-consumption | boolean (X-Show-Consumption) Default: false |
| x-ndb-client | string (NucliaDBClientType) Default: api Enum: "api" "widget" "web" "dashboard" "desktop" "chrome_extension" |
| x-nucliadb-user | string (X-Nucliadb-User) Default: |
| x-forwarded-for | string (X-Forwarded-For) Default: |
| x-synchronous | boolean (X-Synchronous) Default: false When set to true, outputs response as JSON in a non-streaming way. This is slower and requires waiting for entire answer to be ready. |
Request Body schema: application/jsonrequired
Audit metadata (object) or Audit metadata (null) (Audit metadata) A dictionary containing optional audit-specific metadata, such as user_id, environment, or other contextual information. This metadata can be leveraged for filtering and analyzing activity logs in future operations. Each key-value pair represents a piece of metadata relevant to the user's request. | |
| query required | string (Query) <= 20000 characters The query to get a generative answer for |
Agentic configuration ID (string) or Agentic configuration ID (null) (Agentic configuration ID) The ID of the agentic configuration to use for this request. If not provided, the default retrieval and generation parameters of the Knowledge Box will be used. If provided, the parameters in the agentic configuration will override the parameters in the request. Note that the | |
| top_k | integer (Top k) [ 1 .. 200 ] Default: 20 The top most relevant results to fetch at the retrieval step. The maximum number of results allowed is 200. |
FilterExpression (object) or Filter resource by an expression (null) (Filter resource by an expression) Returns only documents that match this filter expression.Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters This allows building complex filtering expressions and replaces the following parameters: | |
| fields | Array of strings (Fields) Default: [] The list of fields to search in. For instance: |
Array of Search Filters (strings) or Array of Search Filters (objects) (Search Filters) Default: [] The list of filters to apply. Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters | |
Array of Keyword filters (strings) or Array of Keyword filters (objects) (Keyword filters) Default: [] List of keyword filter expressions to apply to the retrieval step. The text block search will only be performed on the documents that contain the specified keywords. The filters are case-insensitive, and only alphanumeric characters and spaces are allowed. Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters | |
Vectorset (string) or Vectorset (null) (Vectorset) Vectors index to perform the search in. If not provided, NucliaDB will use the default one | |
Minimum score (number) or MinScore (object) or Minimum score (null) (Minimum score) Minimum score to filter search results. Results with a lower score will be ignored. Accepts either a float or a dictionary with the minimum scores for the bm25 and vector indexes. If a float is provided, it is interpreted as the minimum score for vector index search. | |
| features | Array of strings (Chat features) Default: ["semantic","keyword"] Items Enum: "keyword" "relations" "semantic" Features enabled for the chat endpoint. Semantic search is done if |
Resource creation range start (string) or Resource creation range start (null) (Resource creation range start) Resources created before this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource creation range end (string) or Resource creation range end (null) (Resource creation range end) Resources created after this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource modification range start (string) or Resource modification range start (null) (Resource modification range start) Resources modified before this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource modification range end (string) or Resource modification range end (null) (Resource modification range end) Resources modified after this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
| show | Array of strings (Show metadata) Default: ["basic"] Items Enum: "basic" "origin" "extra" "relations" "values" "extracted" "errors" "security" Controls which types of metadata are serialized on resources of search results |
| field_type_filter | Array of strings (Field type filter) Default: ["text","file","link","conversation","generic","key_value"] Items Enum: "text" "file" "link" "conversation" "generic" "key_value" Define which field types are serialized on resources of search results |
| extracted | Array of strings (Extracted metadata) Deprecated Default: [] Items Enum: "text" "metadata" "shortened_metadata" "large_metadata" "vectors" "link" "file" "question_answers" "relation_vectors" [Deprecated] Please use GET resource endpoint instead to get extracted metadata |
Array of Chat context (deprecated) (objects) or Chat context (deprecated) (null) (Chat context (deprecated)) Deprecated DEPRECATED! Please, use | |
Array of Chat history (objects) or Chat history (null) (Chat history) Use to rephrase the new LLM query by taking into account the chat conversation history. This will be passed to the LLM so that it is aware of the previous conversation. | |
Array of Extra query context (strings) or Extra query context (null) (Extra query context) Additional context that is added to the retrieval context sent to the LLM. It allows extending the chat feature with content that may not be in the Knowledge Box. | |
Array of Extra query context images (objects) or Extra query context images (null) (Extra query context images) Additional images added to the retrieval context sent to the LLM." It allows extending the chat feature with content that may not be in the Knowledge Box. | |
Image (object) or Query image (null) (Query image) Image that will be used together with the query text for retrieval and then sent to the LLM as part of the context. If a query image is provided, the | |
| highlight | boolean (Highlight) Default: false If set to true, the query terms will be highlighted in the results between ... tags |
| resource_filters | Array of strings (Resources filter) Default: [] List of resource ids to filter search results for. Only paragraphs from the specified resources will be returned. |
Prompts (string) or CustomPrompt (object) or Prompts (null) (Prompts) Use to customize the prompts given to the generative model. Both system and user prompts can be customized. If a string is provided, it is interpreted as the user prompt. | |
RankFusionName (string) or Rank fusion (any) (Rank fusion) Default: "rrf" Rank fusion algorithm to use to merge results from multiple retrievers (keyword, semantic) | |
RerankerName (string) or Reranker (any) (Reranker) Default: "predict" Reranker let you specify which method you want to use to rerank your results at the end of retrieval | |
Citations (boolean) or CitationsType (string) or Citations (null) (Citations) Whether to include citations in the response. If set to None or False, no citations will be computed. If set to True or 'default', citations will be computed after answer generation and send as a separate | |
Citation Threshold (number) or Citation Threshold (null) (Citation Threshold) If citations is set to True or 'default', this will be the similarity threshold. Value between 0 and 1, lower values will produce more citations. If not set, it will be set to the optimized threshold found by Nuclia. | |
RequestSecurity (object) or Security (null) (Security) Security metadata for the request. Please refer to the documentation for more details on how security works: https://docs.rag.progress.cloud/docs/management/how-to/restrict-access | |
| show_hidden | boolean (Show hidden resources) Default: false If set to false (default), excludes hidden resources from search |
Array of any (RAG context building strategies) Default: [] Options for tweaking how the context for the LLM model is crafted:
If empty, the default strategy is used, which simply adds the text of the matching paragraphs to the context. | |
Array of any (RAG image context building strategies) Default: [] Options for tweaking how the image based context for the LLM model is crafted:
| |
| debug | boolean (Debug mode) Default: false If set, the response will include some extra metadata for debugging purposes, like the list of queried nodes. |
Generative model (string) or Generative model (null) (Generative model) The generative model to use for the chat endpoint. If not provided, the model configured for the Knowledge Box is used. | |
Seed for the generative model (integer) or Seed for the generative model (null) (Seed for the generative model) The seed to use for the generative model for deterministic generation. Only supported by some models. | |
Maximum LLM tokens to use for the request (integer) or MaxTokens (object) or Maximum LLM tokens to use for the request (null) (Maximum LLM tokens to use for the request) Use to limit the amount of tokens used in the LLM context and/or for generating the answer. If not provided, the default maximum tokens of the generative model will be used. If an integer is provided, it is interpreted as the maximum tokens for the answer. | |
| rephrase | boolean (Rephrase) Default: false Rephrase the query for a more efficient retrieval. This will consume LLM tokens and make the request slower. |
Chat History Relevance Threshold (number) or Chat History Relevance Threshold (null) (Chat History Relevance Threshold) Threshold to determine if the past chat history is relevant to rephrase the user's question. 0 - Always treat previous messages as relevant (always rephrase).1 - Always treat previous messages as irrelevant (never rephrase).Values in between adjust the sensitivity. | |
| prefer_markdown | boolean (Prefer markdown) Default: false If set to true, the response will be in markdown format |
Answer JSON schema (object) or Answer JSON schema (null) (Answer JSON schema) Desired JSON schema for the LLM answer.
This schema is passed to the LLM so that it answers in a scructured format following the schema. If not provided, textual response is returned.
Note that when using this parameter, the answer in the generative response will not be returned in chunks, the whole response text will be returned instead.
Using this feature also disables the | |
| generate_answer | boolean (Generate Answer) Default: true Whether to generate an answer using the generative model. If set to false, the response will only contain the retrieval results. |
Search Configuration (string) or Search Configuration (null) (Search Configuration) Load ask parameters from this configuration. Parameters in the request override parameters from the configuration. | |
Reasoning (object) or Reasoning options (boolean) (Reasoning options) Default: false Reasoning options for the generative model. Set to True to enable default reasoning, False to disable, or provide a Reasoning object for custom options. |
Responses
Request samples
- Payload
{- "audit_metadata": {
- "environment": "test",
- "user": "my-user-123"
}, - "query": "string",
- "agentic_config_id": "string",
- "top_k": 20,
- "filter_expression": {
- "field": {
- "operands": [
- { }
]
}, - "paragraph": {
- "operands": [
- { }
]
}, - "key_value": {
- "operands": [
- { }
]
}, - "operator": "and"
}, - "fields": [ ],
- "filters": [ ],
- "keyword_filters": [
- "NLP",
- "BERT"
], - "vectorset": "string",
- "min_score": 0,
- "features": [
- "semantic",
- "keyword"
], - "range_creation_start": "2019-08-24T14:15:22Z",
- "range_creation_end": "2019-08-24T14:15:22Z",
- "range_modification_start": "2019-08-24T14:15:22Z",
- "range_modification_end": "2019-08-24T14:15:22Z",
- "show": [
- "basic"
], - "field_type_filter": [
- "text",
- "file",
- "link",
- "conversation",
- "generic",
- "key_value"
], - "extracted": [ ],
- "context": [
- {
- "author": "NUCLIA",
- "text": "string"
}
], - "chat_history": [
- {
- "author": "NUCLIA",
- "text": "string"
}
], - "extra_context": [
- "string"
], - "extra_context_images": [
- {
- "content_type": "string",
- "b64encoded": "string"
}
], - "query_image": {
- "content_type": "string",
- "b64encoded": "string"
}, - "highlight": false,
- "resource_filters": [ ],
- "prompt": "string",
- "rank_fusion": "rrf",
- "reranker": "predict",
- "citations": true,
- "citation_threshold": 1,
- "security": {
- "access_groups": [ ]
}, - "show_hidden": false,
- "rag_strategies": [
- {
- "count": 2,
- "name": "full_resource"
}
], - "rag_images_strategies": [ ],
- "debug": false,
- "generative_model": "string",
- "generative_model_seed": 0,
- "max_tokens": 0,
- "rephrase": false,
- "chat_history_relevance_threshold": 1,
- "prefer_markdown": false,
- "answer_json_schema": {
- "description": "Structured response with custom fields",
- "name": "structred_response",
- "parameters": {
- "properties": {
- "answer": {
- "description": "Text responding to the user's query with the given context.",
- "type": "string"
}, - "confidence": {
- "description": "The confidence level of the response, on a scale from 0 to 5.",
- "maximum": 5,
- "minimum": 0,
- "type": "integer"
}, - "machinery_mentioned": {
- "description": "Optional field listing any machinery mentioned in the response.",
- "items": {
- "description": "A list of machinery mentioned in the response, if any. Use machine IDs if possible.",
- "type": "string"
}, - "type": "array"
}
}, - "required": [
- "answer",
- "confidence"
], - "type": "object"
}
}, - "generate_answer": true,
- "search_configuration": "string",
- "reasoning": false
}Response samples
- 200
- 422
{- "answer": "string",
- "reasoning": "string",
- "answer_json": { },
- "status": "string",
- "retrieval_results": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}, - "retrieval_best_matches": [ ],
- "prequeries": {
- "property1": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}, - "property2": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}
}, - "learning_id": "",
- "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "citations": { },
- "citation_footnote_to_context": {
- "property1": "string",
- "property2": "string"
}, - "augmented_context": {
- "paragraphs": { },
- "fields": { }
}, - "prompt_context": [
- "string"
], - "predict_request": { },
- "metadata": {
- "tokens": {
- "input": 0,
- "output": 0,
- "input_nuclia": 0,
- "output_nuclia": 0
}, - "timings": {
- "generative_first_chunk": 0,
- "generative_total": 0
}
}, - "consumption": {
- "normalized_tokens": {
- "input": 0,
- "output": 0,
- "image": 0
}, - "customer_key_tokens": {
- "input": 0,
- "output": 0,
- "image": 0
}
}, - "error_details": "string",
- "debug": { }
}Ask a resource (by slug)
Ask questions to a resource
path Parameters
| kbid required | string (Kbid) |
| slug required | string (Slug) |
header Parameters
| x-show-consumption | boolean (X-Show-Consumption) Default: false |
| x-ndb-client | string (NucliaDBClientType) Default: api Enum: "api" "widget" "web" "dashboard" "desktop" "chrome_extension" |
| x-nucliadb-user | string (X-Nucliadb-User) Default: |
| x-forwarded-for | string (X-Forwarded-For) Default: |
| x-synchronous | boolean (X-Synchronous) Default: false When set to true, outputs response as JSON in a non-streaming way. This is slower and requires waiting for entire answer to be ready. |
Request Body schema: application/jsonrequired
Audit metadata (object) or Audit metadata (null) (Audit metadata) A dictionary containing optional audit-specific metadata, such as user_id, environment, or other contextual information. This metadata can be leveraged for filtering and analyzing activity logs in future operations. Each key-value pair represents a piece of metadata relevant to the user's request. | |
| query required | string (Query) <= 20000 characters The query to get a generative answer for |
Agentic configuration ID (string) or Agentic configuration ID (null) (Agentic configuration ID) The ID of the agentic configuration to use for this request. If not provided, the default retrieval and generation parameters of the Knowledge Box will be used. If provided, the parameters in the agentic configuration will override the parameters in the request. Note that the | |
| top_k | integer (Top k) [ 1 .. 200 ] Default: 20 The top most relevant results to fetch at the retrieval step. The maximum number of results allowed is 200. |
FilterExpression (object) or Filter resource by an expression (null) (Filter resource by an expression) Returns only documents that match this filter expression.Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters This allows building complex filtering expressions and replaces the following parameters: | |
| fields | Array of strings (Fields) Default: [] The list of fields to search in. For instance: |
Array of Search Filters (strings) or Array of Search Filters (objects) (Search Filters) Default: [] The list of filters to apply. Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters | |
Array of Keyword filters (strings) or Array of Keyword filters (objects) (Keyword filters) Default: [] List of keyword filter expressions to apply to the retrieval step. The text block search will only be performed on the documents that contain the specified keywords. The filters are case-insensitive, and only alphanumeric characters and spaces are allowed. Filtering examples can be found here: https://docs.nuclia.dev/docs/rag/advanced/search-filters | |
Vectorset (string) or Vectorset (null) (Vectorset) Vectors index to perform the search in. If not provided, NucliaDB will use the default one | |
Minimum score (number) or MinScore (object) or Minimum score (null) (Minimum score) Minimum score to filter search results. Results with a lower score will be ignored. Accepts either a float or a dictionary with the minimum scores for the bm25 and vector indexes. If a float is provided, it is interpreted as the minimum score for vector index search. | |
| features | Array of strings (Chat features) Default: ["semantic","keyword"] Items Enum: "keyword" "relations" "semantic" Features enabled for the chat endpoint. Semantic search is done if |
Resource creation range start (string) or Resource creation range start (null) (Resource creation range start) Resources created before this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource creation range end (string) or Resource creation range end (null) (Resource creation range end) Resources created after this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource modification range start (string) or Resource modification range start (null) (Resource modification range start) Resources modified before this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
Resource modification range end (string) or Resource modification range end (null) (Resource modification range end) Resources modified after this date will be filtered out of search results. Datetime are represented as a str in ISO 8601 format, like: 2008-09-15T15:53:00+05:00. | |
| show | Array of strings (Show metadata) Default: ["basic"] Items Enum: "basic" "origin" "extra" "relations" "values" "extracted" "errors" "security" Controls which types of metadata are serialized on resources of search results |
| field_type_filter | Array of strings (Field type filter) Default: ["text","file","link","conversation","generic","key_value"] Items Enum: "text" "file" "link" "conversation" "generic" "key_value" Define which field types are serialized on resources of search results |
| extracted | Array of strings (Extracted metadata) Deprecated Default: [] Items Enum: "text" "metadata" "shortened_metadata" "large_metadata" "vectors" "link" "file" "question_answers" "relation_vectors" [Deprecated] Please use GET resource endpoint instead to get extracted metadata |
Array of Chat context (deprecated) (objects) or Chat context (deprecated) (null) (Chat context (deprecated)) Deprecated DEPRECATED! Please, use | |
Array of Chat history (objects) or Chat history (null) (Chat history) Use to rephrase the new LLM query by taking into account the chat conversation history. This will be passed to the LLM so that it is aware of the previous conversation. | |
Array of Extra query context (strings) or Extra query context (null) (Extra query context) Additional context that is added to the retrieval context sent to the LLM. It allows extending the chat feature with content that may not be in the Knowledge Box. | |
Array of Extra query context images (objects) or Extra query context images (null) (Extra query context images) Additional images added to the retrieval context sent to the LLM." It allows extending the chat feature with content that may not be in the Knowledge Box. | |
Image (object) or Query image (null) (Query image) Image that will be used together with the query text for retrieval and then sent to the LLM as part of the context. If a query image is provided, the | |
| highlight | boolean (Highlight) Default: false If set to true, the query terms will be highlighted in the results between ... tags |
| resource_filters | Array of strings (Resources filter) Default: [] List of resource ids to filter search results for. Only paragraphs from the specified resources will be returned. |
Prompts (string) or CustomPrompt (object) or Prompts (null) (Prompts) Use to customize the prompts given to the generative model. Both system and user prompts can be customized. If a string is provided, it is interpreted as the user prompt. | |
RankFusionName (string) or Rank fusion (any) (Rank fusion) Default: "rrf" Rank fusion algorithm to use to merge results from multiple retrievers (keyword, semantic) | |
RerankerName (string) or Reranker (any) (Reranker) Default: "predict" Reranker let you specify which method you want to use to rerank your results at the end of retrieval | |
Citations (boolean) or CitationsType (string) or Citations (null) (Citations) Whether to include citations in the response. If set to None or False, no citations will be computed. If set to True or 'default', citations will be computed after answer generation and send as a separate | |
Citation Threshold (number) or Citation Threshold (null) (Citation Threshold) If citations is set to True or 'default', this will be the similarity threshold. Value between 0 and 1, lower values will produce more citations. If not set, it will be set to the optimized threshold found by Nuclia. | |
RequestSecurity (object) or Security (null) (Security) Security metadata for the request. Please refer to the documentation for more details on how security works: https://docs.rag.progress.cloud/docs/management/how-to/restrict-access | |
| show_hidden | boolean (Show hidden resources) Default: false If set to false (default), excludes hidden resources from search |
Array of any (RAG context building strategies) Default: [] Options for tweaking how the context for the LLM model is crafted:
If empty, the default strategy is used, which simply adds the text of the matching paragraphs to the context. | |
Array of any (RAG image context building strategies) Default: [] Options for tweaking how the image based context for the LLM model is crafted:
| |
| debug | boolean (Debug mode) Default: false If set, the response will include some extra metadata for debugging purposes, like the list of queried nodes. |
Generative model (string) or Generative model (null) (Generative model) The generative model to use for the chat endpoint. If not provided, the model configured for the Knowledge Box is used. | |
Seed for the generative model (integer) or Seed for the generative model (null) (Seed for the generative model) The seed to use for the generative model for deterministic generation. Only supported by some models. | |
Maximum LLM tokens to use for the request (integer) or MaxTokens (object) or Maximum LLM tokens to use for the request (null) (Maximum LLM tokens to use for the request) Use to limit the amount of tokens used in the LLM context and/or for generating the answer. If not provided, the default maximum tokens of the generative model will be used. If an integer is provided, it is interpreted as the maximum tokens for the answer. | |
| rephrase | boolean (Rephrase) Default: false Rephrase the query for a more efficient retrieval. This will consume LLM tokens and make the request slower. |
Chat History Relevance Threshold (number) or Chat History Relevance Threshold (null) (Chat History Relevance Threshold) Threshold to determine if the past chat history is relevant to rephrase the user's question. 0 - Always treat previous messages as relevant (always rephrase).1 - Always treat previous messages as irrelevant (never rephrase).Values in between adjust the sensitivity. | |
| prefer_markdown | boolean (Prefer markdown) Default: false If set to true, the response will be in markdown format |
Answer JSON schema (object) or Answer JSON schema (null) (Answer JSON schema) Desired JSON schema for the LLM answer.
This schema is passed to the LLM so that it answers in a scructured format following the schema. If not provided, textual response is returned.
Note that when using this parameter, the answer in the generative response will not be returned in chunks, the whole response text will be returned instead.
Using this feature also disables the | |
| generate_answer | boolean (Generate Answer) Default: true Whether to generate an answer using the generative model. If set to false, the response will only contain the retrieval results. |
Search Configuration (string) or Search Configuration (null) (Search Configuration) Load ask parameters from this configuration. Parameters in the request override parameters from the configuration. | |
Reasoning (object) or Reasoning options (boolean) (Reasoning options) Default: false Reasoning options for the generative model. Set to True to enable default reasoning, False to disable, or provide a Reasoning object for custom options. |
Responses
Request samples
- Payload
{- "audit_metadata": {
- "environment": "test",
- "user": "my-user-123"
}, - "query": "string",
- "agentic_config_id": "string",
- "top_k": 20,
- "filter_expression": {
- "field": {
- "operands": [
- { }
]
}, - "paragraph": {
- "operands": [
- { }
]
}, - "key_value": {
- "operands": [
- { }
]
}, - "operator": "and"
}, - "fields": [ ],
- "filters": [ ],
- "keyword_filters": [
- "NLP",
- "BERT"
], - "vectorset": "string",
- "min_score": 0,
- "features": [
- "semantic",
- "keyword"
], - "range_creation_start": "2019-08-24T14:15:22Z",
- "range_creation_end": "2019-08-24T14:15:22Z",
- "range_modification_start": "2019-08-24T14:15:22Z",
- "range_modification_end": "2019-08-24T14:15:22Z",
- "show": [
- "basic"
], - "field_type_filter": [
- "text",
- "file",
- "link",
- "conversation",
- "generic",
- "key_value"
], - "extracted": [ ],
- "context": [
- {
- "author": "NUCLIA",
- "text": "string"
}
], - "chat_history": [
- {
- "author": "NUCLIA",
- "text": "string"
}
], - "extra_context": [
- "string"
], - "extra_context_images": [
- {
- "content_type": "string",
- "b64encoded": "string"
}
], - "query_image": {
- "content_type": "string",
- "b64encoded": "string"
}, - "highlight": false,
- "resource_filters": [ ],
- "prompt": "string",
- "rank_fusion": "rrf",
- "reranker": "predict",
- "citations": true,
- "citation_threshold": 1,
- "security": {
- "access_groups": [ ]
}, - "show_hidden": false,
- "rag_strategies": [
- {
- "count": 2,
- "name": "full_resource"
}
], - "rag_images_strategies": [ ],
- "debug": false,
- "generative_model": "string",
- "generative_model_seed": 0,
- "max_tokens": 0,
- "rephrase": false,
- "chat_history_relevance_threshold": 1,
- "prefer_markdown": false,
- "answer_json_schema": {
- "description": "Structured response with custom fields",
- "name": "structred_response",
- "parameters": {
- "properties": {
- "answer": {
- "description": "Text responding to the user's query with the given context.",
- "type": "string"
}, - "confidence": {
- "description": "The confidence level of the response, on a scale from 0 to 5.",
- "maximum": 5,
- "minimum": 0,
- "type": "integer"
}, - "machinery_mentioned": {
- "description": "Optional field listing any machinery mentioned in the response.",
- "items": {
- "description": "A list of machinery mentioned in the response, if any. Use machine IDs if possible.",
- "type": "string"
}, - "type": "array"
}
}, - "required": [
- "answer",
- "confidence"
], - "type": "object"
}
}, - "generate_answer": true,
- "search_configuration": "string",
- "reasoning": false
}Response samples
- 200
- 422
{- "answer": "string",
- "reasoning": "string",
- "answer_json": { },
- "status": "string",
- "retrieval_results": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": "string",
- "size": 0,
- "content_type": "string",
- "filename": "string",
- "md5": "string"
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "file": {
- "language": "string",
- "md5": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "nested": {
- "property1": null,
- "property2": null
}, - "file_generated": {
- "property1": null,
- "property2": null
}, - "file_rows_previews": {
- "property1": null,
- "property2": null
}, - "file_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "file_pages_previews": {
- "pages": null,
- "positions": null,
- "structures": null
}, - "file_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "icon": "string",
- "nested_position": {
- "property1": null,
- "property2": null
}, - "nested_list_position": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": "string",
- "property2": "string"
}, - "cookies": {
- "property1": "string",
- "property2": "string"
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": "string",
- "property2": "string"
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "link": {
- "date": "2019-08-24T14:15:22Z",
- "language": "string",
- "title": "string",
- "metadata": {
- "property1": null,
- "property2": null
}, - "link_thumbnail": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "link_preview": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "field": "string",
- "link_image": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "description": "string",
- "type": "string",
- "embed": "string",
- "file_generated": {
- "property1": null,
- "property2": null
}
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": "string",
- "split_text": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "metadata": {
- "metadata": {
- "links": [ ],
- "paragraphs": [ ],
- "ner": { },
- "entities": { },
- "classifications": [ ],
- "last_index": null,
- "last_understanding": null,
- "last_extract": null,
- "last_summary": null,
- "last_processing_start": null,
- "thumbnail": null,
- "language": null,
- "summary": null,
- "positions": { },
- "relations": null,
- "mime_type": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "large_metadata": {
- "metadata": {
- "entities": null,
- "tokens": null
}, - "split_metadata": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "vectors": {
- "vectors": {
- "vectors": null
}, - "split_vectors": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "question_answers": {
- "question_answers": {
- "question_answer": [ ]
}, - "split_question_answers": {
- "property1": null,
- "property2": null
}, - "deleted_splits": [
- null
]
}, - "relation_node_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}, - "relation_edge_vectors": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": "string",
- "property2": "string"
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": 0,
- "index": 0,
- "start": 0,
- "end": 0,
- "start_seconds": [
- null
], - "end_seconds": [
- null
]
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": {
- "property1": null,
- "property2": null
}
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}, - "retrieval_best_matches": [ ],
- "prequeries": {
- "property1": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}, - "property2": {
- "resources": {
- "property1": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}, - "property2": {
- "id": "string",
- "slug": "string",
- "title": "string",
- "summary": "string",
- "icon": "string",
- "thumbnail": "string",
- "metadata": {
- "metadata": { },
- "language": "string",
- "languages": [
- "string"
], - "status": "PENDING"
}, - "usermetadata": {
- "classifications": [ ],
- "relations": [ ]
}, - "fieldmetadata": [
- {
- "paragraphs": [ ],
- "question_answers": [ ],
- "field": {
- "field_type": "file",
- "field": "string"
}
}
], - "computedmetadata": {
- "field_classifications": [ ]
}, - "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "last_seqid": 0,
- "last_account_seq": 0,
- "queue": "private",
- "hidden": true,
- "origin": {
- "source_id": "string",
- "url": "string",
- "created": "2019-08-24T14:15:22Z",
- "modified": "2019-08-24T14:15:22Z",
- "metadata": { },
- "tags": [ ],
- "collaborators": [ ],
- "filename": "string",
- "related": [ ],
- "path": "string",
- "sync_metadata": {
- "file_id": "string",
- "auth_provider": "string",
- "content_hash": "string"
}, - "source": "API"
}, - "extra": {
- "metadata": { }
}, - "relations": [
- {
- "relation": "ABOUT",
- "label": "string",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "from": {
- "value": "string",
- "type": "entity",
- "group": "string"
}, - "to": {
- "value": "string",
- "type": "entity",
- "group": "string"
}
}
], - "data": {
- "texts": {
- "property1": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "body": "string",
- "format": "PLAIN",
- "md5": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "files": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "file": {
- "uri": null,
- "size": null,
- "content_type": null,
- "filename": null,
- "md5": null
}, - "language": "string",
- "password": "string",
- "external": false,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "file": {
- "language": null,
- "md5": null,
- "metadata": null,
- "nested": null,
- "file_generated": null,
- "file_rows_previews": null,
- "file_preview": null,
- "file_pages_previews": null,
- "file_thumbnail": null,
- "field": null,
- "icon": null,
- "nested_position": null,
- "nested_list_position": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "links": {
- "property1": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "added": "2019-08-24T14:15:22Z",
- "headers": {
- "property1": null,
- "property2": null
}, - "cookies": {
- "property1": null,
- "property2": null
}, - "uri": "string",
- "language": "string",
- "localstorage": {
- "property1": null,
- "property2": null
}, - "css_selector": "string",
- "xpath": "string",
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "link": {
- "date": null,
- "language": null,
- "title": null,
- "metadata": null,
- "link_thumbnail": null,
- "link_preview": null,
- "field": null,
- "link_image": null,
- "description": null,
- "type": null,
- "embed": null,
- "file_generated": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "conversations": {
- "property1": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "pages": 0,
- "size": 0,
- "total": 0,
- "extract_strategy": "string",
- "split_strategy": "string"
}, - "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "generics": {
- "property1": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": "string",
- "extracted": {
- "text": {
- "text": null,
- "split_text": null,
- "deleted_splits": null
}, - "metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "large_metadata": {
- "metadata": null,
- "split_metadata": null,
- "deleted_splits": null
}, - "vectors": {
- "vectors": null,
- "split_vectors": null,
- "deleted_splits": null
}, - "question_answers": {
- "question_answers": null,
- "split_question_answers": null,
- "deleted_splits": null
}, - "relation_node_vectors": {
- "property1": [ ],
- "property2": [ ]
}, - "relation_edge_vectors": {
- "property1": [ ],
- "property2": [ ]
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}, - "key_values": {
- "property1": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}, - "property2": {
- "value": {
- "data": {
- "property1": null,
- "property2": null
}
}, - "error": {
- "body": "string",
- "code": 0,
- "code_str": "string",
- "created": "2019-08-24T14:15:22Z",
- "severity": "string"
}, - "status": "string",
- "errors": [
- {
- "body": null,
- "code": null,
- "code_str": null,
- "created": null,
- "severity": null
}
]
}
}
}, - "security": {
- "access_groups": [ ]
}, - "fields": {
- "property1": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}, - "property2": {
- "paragraphs": {
- "property1": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}, - "property2": {
- "score": 0,
- "score_type": "VECTOR",
- "order": 0,
- "text": "string",
- "id": "string",
- "labels": [ ],
- "position": {
- "page_number": null,
- "index": null,
- "start": null,
- "end": null,
- "start_seconds": null,
- "end_seconds": null
}, - "fuzzy_result": false,
- "page_with_visual": false,
- "reference": "string",
- "is_a_table": false,
- "relevant_relations": {
- "entities": { }
}
}
}
}
}
}
}, - "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "query": "string",
- "rephrased_query": "string",
- "total": 0,
- "page_number": 0,
- "page_size": 20,
- "next_page": false,
- "nodes": [
- {
- "property1": "string",
- "property2": "string"
}
], - "shards": [
- "string"
], - "autofilters": [ ],
- "min_score": {
- "bm25": 0
}, - "best_matches": [ ],
- "metrics": { },
- "search_after": "string"
}
}, - "learning_id": "",
- "relations": {
- "entities": {
- "property1": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}, - "property2": {
- "related_to": [
- {
- "entity": "string",
- "entity_type": "entity",
- "entity_subtype": "string",
- "relation": "ABOUT",
- "relation_label": "string",
- "direction": "in",
- "metadata": {
- "paragraph_id": "string",
- "source_start": 0,
- "source_end": 0,
- "to_start": 0,
- "to_end": 0,
- "data_augmentation_task_id": "string"
}, - "resource_id": "string"
}
]
}
}
}, - "citations": { },
- "citation_footnote_to_context": {
- "property1": "string",
- "property2": "string"
}, - "augmented_context": {
- "paragraphs": { },
- "fields": { }
}, - "prompt_context": [
- "string"
], - "predict_request": { },
- "metadata": {
- "tokens": {
- "input": 0,
- "output": 0,
- "input_nuclia": 0,
- "output_nuclia": 0
}, - "timings": {
- "generative_first_chunk": 0,
- "generative_total": 0
}
}, - "consumption": {
- "normalized_tokens": {
- "input": 0,
- "output": 0,
- "image": 0
}, - "customer_key_tokens": {
- "input": 0,
- "output": 0,
- "image": 0
}
}, - "error_details": "string",
- "debug": { }
}Mcp Handler
path Parameters
| kbid required | string (Kbid) |
header Parameters
| x-ndb-client | string (NucliaDBClientType) Default: api Enum: "api" "widget" "web" "dashboard" "desktop" "chrome_extension" |
| x-nucliadb-user | string (X-Nucliadb-User) Default: |
| x-forwarded-for | string (X-Forwarded-For) Default: |
Responses
Response samples
- 200
- 422
nullMcp Handler
path Parameters
| kbid required | string (Kbid) |
header Parameters
| x-ndb-client | string (NucliaDBClientType) Default: api Enum: "api" "widget" "web" "dashboard" "desktop" "chrome_extension" |
| x-nucliadb-user | string (X-Nucliadb-User) Default: |
| x-forwarded-for | string (X-Forwarded-For) Default: |
Responses
Response samples
- 200
- 422
nullResponse samples
- 200
- 422
{- "property1": {
- "type": "nucliadb",
- "description": "string",
- "filter_expression": {
- "field": { },
- "paragraph": { },
- "key_value": { },
- "operator": "and"
}, - "labels": [
- "string"
], - "resource_filters": [
- "string"
]
}, - "property2": {
- "type": "nucliadb",
- "description": "string",
- "filter_expression": {
- "field": { },
- "paragraph": { },
- "key_value": { },
- "operator": "and"
}, - "labels": [
- "string"
], - "resource_filters": [
- "string"
]
}
}Create a source
path Parameters
| kbid required | string (Kbid) |
| source_id required | string (Source Id) |
Request Body schema: application/jsonrequired
| type | string (Type) Default: "nucliadb" Value: "nucliadb" |
Description (string) or Description (null) (Description) | |
FilterExpression (object) or Filter expression (null) (Filter expression) Filter expression to narrow NucliaDB search results | |
Array of Labels (strings) or Labels (null) (Labels) Label filters to restrict which resources are searched | |
Array of Resource filters (strings) or Resource filters (null) (Resource filters) Additional resource-level filters passed to the NucliaDB search API |
Responses
Request samples
- Payload
{- "type": "nucliadb",
- "description": "string",
- "filter_expression": {
- "field": {
- "operands": [
- { }
]
}, - "paragraph": {
- "operands": [
- { }
]
}, - "key_value": {
- "operands": [
- { }
]
}, - "operator": "and"
}, - "labels": [
- "string"
], - "resource_filters": [
- "string"
]
}Response samples
- 201
- 422
nullResponse samples
- 200
- 422
{- "type": "nucliadb",
- "description": "string",
- "filter_expression": {
- "field": { },
- "paragraph": { },
- "key_value": { },
- "operator": "and"
}, - "labels": [
- "string"
], - "resource_filters": [
- "string"
]
}Update a source
path Parameters
| kbid required | string (Kbid) |
| source_id required | string (Source Id) |
Request Body schema: application/jsonrequired
| type | string (Type) Default: "nucliadb" Value: "nucliadb" |
Description (string) or Description (null) (Description) | |
FilterExpression (object) or Filter expression (null) (Filter expression) Filter expression to narrow NucliaDB search results | |
Array of Labels (strings) or Labels (null) (Labels) Label filters to restrict which resources are searched | |
Array of Resource filters (strings) or Resource filters (null) (Resource filters) Additional resource-level filters passed to the NucliaDB search API |
Responses
Request samples
- Payload
{- "type": "nucliadb",
- "description": "string",
- "filter_expression": {
- "field": {
- "operands": [
- { }
]
}, - "paragraph": {
- "operands": [
- { }
]
}, - "key_value": {
- "operands": [
- { }
]
}, - "operator": "and"
}, - "labels": [
- "string"
], - "resource_filters": [
- "string"
]
}Response samples
- 422
{- "detail": [
- {
- "loc": [
- "string"
], - "msg": "string",
- "type": "string",
- "input": null,
- "ctx": { }
}
]
}