{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-describe-script-input-schema.json",
"title": "DescribeScriptInput",
"description": "DescribeScriptInput schema from Amazon GameLift API",
"type": "object",
"properties": {
"ScriptId": {
"allOf": [
{
"$ref": "#/components/schemas/ScriptIdOrArn"
},
{
"description": "A unique identifier for the Realtime script to retrieve properties for. You can use either the script ID or ARN value."
}
]
}
},
"required": [
"ScriptId"
]
}