Skip to content

Instantly share code, notes, and snippets.

@ismarsantos
Last active February 17, 2025 21:20
Show Gist options
  • Save ismarsantos/723111017140b2fe5203a36456079e25 to your computer and use it in GitHub Desktop.
Save ismarsantos/723111017140b2fe5203a36456079e25 to your computer and use it in GitHub Desktop.
UE Action JSON Format
openapi: 3.0.0
info:
title: Unreal Engine API
version: 1.0.0
paths:
/command:
post:
summary: Envia comando para UE
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Command'
responses:
'200':
description: Comando aceito
components:
schemas:
Command:
type: object
properties:
action:
type: string
enum: [respawn, time, season]
params:
type: array
required: [action]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment