{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FeatureExtractionRequest", "title": "FeatureExtractionRequest", "type": "object", "required": [ "inputs" ], "properties": { "inputs": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "The text input(s) for embedding extraction", "example": "example_value" } } }