mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-08 20:37:48 +00:00
16 lines
264 B
YAML
16 lines
264 B
YAML
description: SourceCode
|
|
type: object
|
|
required:
|
|
- version
|
|
- script
|
|
properties:
|
|
version:
|
|
type: string
|
|
description: the version of the code
|
|
example: '1.0'
|
|
script:
|
|
type: string
|
|
description: The code
|
|
example: return "Mr. " + firstName;
|
|
|