{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StackScriptRequest", "title": "StackScriptRequest", "type": "object", "required": [ "label", "images", "script" ], "properties": { "label": { "type": "string", "minLength": 3, "maxLength": 128, "description": "The label for the StackScript." }, "description": { "type": "string", "description": "A description of the StackScript." }, "images": { "type": "array", "items": { "type": "string" }, "description": "Compatible image IDs." }, "script": { "type": "string", "description": "The script content." }, "rev_note": { "type": "string", "maxLength": 512, "description": "A revision note." }, "is_public": { "type": "boolean", "description": "Whether to make the StackScript public." } } }