{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/azureCosmosDBFieldMappingOptions", "title": "azureCosmosDBFieldMappingOptions", "required": [ "content_fields", "vector_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." }, "vector_fields": { "type": "array", "description": "The names of fields that represent vector data.", "items": { "type": "string" } } }, "description": "Optional settings to control how fields are processed when using a configured Azure Cosmos DB resource." }