Skip to content

FactoryListItem response model

All models · Download OpenAPI

Nullable fields represent unknown values; they do not imply zero cost or a completed action.

Field Type Required Details
id string No uuid
directoryId string or null No
nameEn string No
nameZh string or null No
city string or null No
region string or null No
website string or null No
processes string[] No
specialty string or null No
capabilities string or null No
moqText string or null No
leadTimeText string or null No
minQuantityByProcess object No
englishCapability string No yes, some, no or unknown
startupFriendly string No yes, no or unknown
exportedToUs string No yes, no or unknown
answeredUs boolean No The factory has answered Maglev directly
lastAnsweredAt string or null No
confidence string No verified, reported or unverified
certifications string[] No
entityType string No
dataIssues string[] No
profileStatus string No
Full JSON schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "uuid"
},
"directoryId": {
"anyOf": [
{
"type": "string",
"description": "Stable directory id such as mfg-sz-robotics-001"
},
{
"type": "null"
}
]
},
"nameEn": {
"type": "string"
},
"nameZh": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"city": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"region": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"website": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"processes": {
"type": "array",
"items": {
"type": "string"
}
},
"specialty": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"capabilities": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"moqText": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"leadTimeText": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"minQuantityByProcess": {
"type": "object",
"properties": {}
},
"englishCapability": {
"type": "string",
"description": "yes, some, no or unknown"
},
"startupFriendly": {
"type": "string",
"description": "yes, no or unknown"
},
"exportedToUs": {
"type": "string",
"description": "yes, no or unknown"
},
"answeredUs": {
"type": "boolean",
"description": "The factory has answered Maglev directly"
},
"lastAnsweredAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"confidence": {
"type": "string",
"description": "verified, reported or unverified"
},
"certifications": {
"type": "array",
"items": {
"type": "string"
}
},
"entityType": {
"type": "string"
},
"dataIssues": {
"type": "array",
"items": {
"type": "string"
}
},
"profileStatus": {
"type": "string"
}
}
}