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/StoragePage",
"type": "object",
"additionalProperties": false,
"required": [
"storage"
],
"properties": {
"storage": {
"type": "array",
"maxItems": 100,
"items": {
"$ref": "#/components/schemas/StorageListItem",
"type": "object",
"additionalProperties": false,
"required": [
"artifact_id",
"submission_id",
"object_reference",
"model_slug",
"producing_node_label",
"producing_node_address",
"format",
"media_type",
"byte_size",
"content_hash",
"created_at",
"download_path"
],
"properties": {
"artifact_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]+)*$"
},
"producing_node_label": {
"type": "string",
"minLength": 1,
"maxLength": 160
},
"producing_node_address": {
"type": "string",
"minLength": 3,
"maxLength": 1024,
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*(?::[a-z0-9]+(?:-[a-z0-9]+)*){1,15}$"
},
"format": {
"type": "string",
"enum": [
"docx",
"pdf"
]
},
"media_type": {
"type": "string",
"enum": [
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"application/pdf"
]
},
"byte_size": {
"type": "integer",
"minimum": 1,
"maximum": 26214400
},
"content_hash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$"
},
"created_at": {
"$ref": "#/components/schemas/CanonicalTimestamp",
"type": "string",
"format": "date-time",
"description": "UTC timestamp serialized with RFC3339Nano precision."
},
"download_path": {
"type": "string",
"pattern": "^/api/v1/executions/[0-9a-f-]{36}/artifacts/[0-9a-f-]{36}/download$"
}
}
}
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}{
"storage": [
{
"artifact_id": "11111111-1111-4111-8111-000000000001",
"submission_id": "11111111-1111-4111-8111-000000000001",
"object_reference": "DOCS-EXAMPLE-0001",
"model_slug": "synthetic-example",
"producing_node_label": "synthetic-example",
"producing_node_address": "document:render",
"format": "docx",
"media_type": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"byte_size": 1,
"content_hash": "0000000000000000000000000000000000000000000000000000000000000000",
"created_at": "2026-08-01T10:00:00Z",
"download_path": "/api/v1/executions/11111111-1111-4111-8111-111111111111/artifacts/22222222-2222-4222-8222-222222222222/download"
}
]
}