Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.
View complete output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"minProperties": 5,
"maxProperties": 5,
"required": [
"entityCount",
"typeIndex",
"entities",
"relationships",
"warnings"
],
"properties": {
"entityCount": {
"type": "integer",
"minimum": 0,
"maximum": 2000
},
"typeIndex": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"type",
"ids"
],
"properties": {
"type": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"ids": {
"type": "array",
"minItems": 1,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
}
}
}
},
"entities": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"id",
"types",
"valueJson"
],
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"types": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
},
"valueJson": {
"type": "string",
"minLength": 2,
"maxLength": 65536
}
}
}
},
"relationships": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"from",
"to",
"kind"
],
"properties": {
"from": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"to": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"kind": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}