NOTICE: All information contained herein is, and remains
the property of TechnoCore Automate.
Provides an extended class of ObjData.ObjData for managing database interactions and data structure creation,
with additional functionalities for name cleaning, dictionary handling, table base generation,
and complete dataset construction through table expansion and data operations.
This class is designed for transforming input data into structured datasets,
creating remote tables for data storage, and managing table correlations with GUIDs.
It includes methods for processing variable replacements, filtering strings,
handling nested dictionaries, and managing table naming conventions.
openapi: 3.0.3
info:
title: Planets and Webhooks Demo API
version: 0.0.1
description: Simple flask-backed API showing some example API endpoints and with webhook debugging features.
contact:
name: Lorna Mitchell
url: https://github.com/lornajane/flask-planets-and-webhooks
email: github@lornajane.net
servers:
- url: http://localhost:5000
description: Sample project running locally
externalDocs:
description: GitHub project for the code and information about this API
url: https://github.com/lornajane/flask-planets-and-webhooks
The following are the possible data types supported in OpenAPI, along with their descriptions:
| Type | Description |
|---|---|
string |
Represents textual data (e.g., plain text, date-time, password, etc.). |
number |
Represents numeric values (e.g., float, double). |
integer |
Represents whole numbers (e.g., int32, int64). |
boolean |
Represents true/false values. |
array |
Represents an array of items, with the type of elements defined in items. |
object |
Represents key-value pairs where keys are strings and values can be any type or schema. |
null |
Represents the absence of a value (introduced in OpenAPI 3.1.0). |
date, date-time, password, byte, and binary.float and double.int32 and int64.paths:
/planets/{planetId}:
get:
operationId: onePlanet
summary: Fetch one planet by position
description: Get the data relating to one planet
parameters:
- name: planetId
in: path
required: true
schema:
type: number
example: 4
responses:
'200':
description: Planets in a list
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: Name of planet
example: "Saturn"
position:
type: number
description: Order in place from the sun
example: 6
moons:
type: number
description: Number of moons, according to NASA
example: 62