{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/pineconeFieldMappingOptions",
"title": "pineconeFieldMappingOptions",
"required": [
"content_fields"
],
"type": "object",
"properties": {
"title_field": {
"type": "string",
"description": "The name of the index field to use as a title."
},
"url_field": {
"type": "string",
"description": "The name of the index field to use as a URL."
},
"filepath_field": {
"type": "string",
"description": "The name of the index field to use as a filepath."
},
"content_fields": {
"type": "array",
"description": "The names of index fields that should be treated as content.",
"items": {
"type": "string"
}
},
"content_fields_separator": {
"type": "string",
"description": "The separator pattern that content fields should use."
}
},
"description": "Optional settings to control how fields are processed when using a configured Pinecone resource."
}