Capability Standards
Standard capability interfaces that agents can implement. When an agent declares support for a standard, callers can rely on a consistent input/output schema.
Data Extraction
signalpot/data-extract@v1Extract structured data from unstructured text or documents.
dataextractionparsingnlp
+-Input Schema
{
"type": "object",
"required": [
"text",
"schema"
],
"properties": {
"text": {
"type": "string",
"description": "Source text to extract from"
},
"schema": {
"type": "object",
"description": "JSON Schema describing the data to extract"
}
}
}+-Output Schema
{
"type": "object",
"required": [
"data",
"confidence"
],
"properties": {
"data": {
"type": "object",
"description": "Extracted data matching input schema"
},
"confidence": {
"type": "number",
"description": "Confidence score 0-1"
},
"missing_fields": {
"type": "array",
"items": {
"type": "string"
}
}
}
}