Runtime.ObjectPreview
Object containing abbreviated remote object value.
{
"id": "ObjectPreview",
"type": "object",
"experimental": true,
"description": "Object containing abbreviated remote object value.",
"properties": [
{
"name": "type",
"type": "string",
"enum": [
"object",
"function",
"undefined",
"string",
"number",
"boolean",
"symbol"
],
"description": "Object type."
},
{
"name": "subtype",
"type": "string",
"optional": true,
"enum": [
"array",
"null",
"node",
"regexp",
"date",
"map",
"set",
"weakmap",
"weakset",
"iterator",
"generator",
"error"
],
"description": "Object subtype hint. Specified for object
type values only."
},
{
"name": "description",
"type": "string",
"optional": true,
"description": "String representation of the object."
},
{
"name": "overflow",
"type": "boolean",
"description": "True iff some of the properties or entries of the original object did not fit."
},
{
"name": "properties",
"type": "array",
"items": {
"$ref": "PropertyPreview"
},
"description": "List of the properties."
},
{
"name": "entries",
"type": "array",
"items": {
"$ref": "EntryPreview"
},
"optional": true,
"description": "List of the entries. Specified for map
and set
subtype values only."
}
]
}