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/TransformationPage",
"type": "object",
"additionalProperties": false,
"required": [
"transformations"
],
"properties": {
"transformations": {
"type": "array",
"maxItems": 100,
"items": {
"$ref": "#/components/schemas/TransformationListItem",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"submission_id",
"object_reference",
"model_slug",
"name",
"slug",
"address",
"status",
"attempt_count",
"created_at"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"submission_id": {
"type": "string",
"format": "uuid"
},
"object_reference": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[A-Za-z0-9][A-Za-z0-9._:@+-]{0,127}$"
},
"model_slug": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 160
},
"slug": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
},
"address": {
"type": "string",
"minLength": 3,
"maxLength": 1024,
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*(?::[a-z0-9]+(?:-[a-z0-9]+)*){1,15}$"
},
"status": {
"$ref": "#/components/schemas/ProcessingNodeStatus",
"type": "string",
"enum": [
"pending",
"queued",
"processing",
"awaiting_compose",
"completed",
"failed",
"blocked"
]
},
"attempt_count": {
"type": "integer",
"minimum": 0,
"maximum": 5
},
"duration_ms": {
"type": "integer",
"minimum": 0
},
"created_at": {
"$ref": "#/components/schemas/CanonicalTimestamp",
"type": "string",
"format": "date-time",
"description": "UTC timestamp serialized with RFC3339Nano precision."
},
"updated_at": {
"$ref": "#/components/schemas/CanonicalTimestamp",
"type": "string",
"format": "date-time",
"description": "UTC timestamp serialized with RFC3339Nano precision."
}
},
"allOf": [
{
"if": {
"properties": {
"status": {
"enum": [
"completed",
"failed"
]
}
},
"required": [
"status"
]
},
"then": {
"required": [
"duration_ms"
]
}
},
{
"if": {
"properties": {
"status": {
"enum": [
"pending",
"queued",
"processing",
"awaiting_compose",
"blocked"
]
}
},
"required": [
"status"
]
},
"then": {
"not": {
"required": [
"duration_ms"
]
}
}
}
]
}
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}{
"transformations": [
{
"id": "11111111-1111-4111-8111-000000000001",
"submission_id": "11111111-1111-4111-8111-000000000001",
"object_reference": "DOCS-EXAMPLE-0001",
"model_slug": "synthetic-example",
"name": "synthetic-example",
"slug": "synthetic-example",
"address": "document:render",
"status": "pending",
"attempt_count": 0,
"created_at": "2026-08-01T10:00:00Z"
}
]
}