The Input Schema and Output Schema sections of the Integration tab provide information on the input and output data for your document’s API. This includes the data types and descriptions of each field.
You can use this information to understand how to structure your requests and responses when calling your document’s API.Input and output schemas will be a JSON object. The exact structure depends on your document, but an example can be found below:
{ "redactedText": { "type": "string", "description": "The text with all detected PII replaced by appropriate placeholders (e.g., {{ name }}, {{ email }})." }, "redactedEntities": { "type": "array", "description": "A list of entities that were redacted from the original content.", "items": { "type": "string", "description": "A single entity that was redacted from the content." } }}
The input and output schemas will differ depending on your document.