{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/script_Post", "title": "script_Post", "allOf": [ { "type": "object", "properties": { "name": { "type": "string", "description": "The user-friendly name.", "minLength": 1, "maxLength": 255 } }, "required": [ "name" ] }, { "$ref": "#/components/schemas/script_Base" } ], "x-internal": false }