Payload schema
keystring
The entry's identity.
codestring
TypeScript statements to inject.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"key": {
"type": "string",
"minLength": 1,
"description": "The entry's identity."
},
"code": {
"type": "string",
"description": "TypeScript statements to inject."
}
},
"required": [
"key",
"code"
],
"additionalProperties": false
}