Structured response bodyBody structurat al răspunsului
application/json
Structured response bodyBody structurat al răspunsului
Complete response schemaSchema completă a răspunsului
{
"$ref": "#/components/schemas/SubmissionList",
"type": "object",
"additionalProperties": false,
"required": [
"submissions"
],
"properties": {
"submissions": {
"type": "array",
"maxItems": 100,
"items": {
"$ref": "#/components/schemas/SubmissionListItem",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"model_slug",
"object_reference",
"object_effective_at",
"received_at",
"ingestion_outcome",
"processing_triggered",
"processing_outcome",
"storage_object_count",
"storage_bytes"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"model_slug": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"object_reference": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"object_effective_at": {
"type": "string",
"format": "date-time"
},
"received_at": {
"type": "string",
"format": "date-time"
},
"ingestion_outcome": {
"type": "string",
"enum": [
"received",
"accepted",
"rejected"
]
},
"processing_triggered": {
"type": "boolean"
},
"processing_outcome": {
"$ref": "#/components/schemas/SubmissionListProcessingOutcome",
"type": "string",
"enum": [
"not_triggered",
"pending",
"queued",
"processing",
"completed",
"failed",
"partial_failure"
]
},
"reason_code": {
"type": "string",
"maxLength": 128
},
"storage_object_count": {
"type": "integer",
"minimum": 0
},
"storage_bytes": {
"type": "integer",
"minimum": 0
}
}
}
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}{
"submissions": [
{
"id": "11111111-1111-4111-8111-000000000001",
"model_slug": "synthetic-example",
"object_reference": "DOCS-EXAMPLE-0001",
"object_effective_at": "2026-08-01T10:00:00Z",
"received_at": "2026-08-01T10:00:00Z",
"ingestion_outcome": "received",
"processing_triggered": false,
"processing_outcome": "not_triggered",
"storage_object_count": 0,
"storage_bytes": 0
}
]
}