-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99540f3
commit 0d47b9a
Showing
5 changed files
with
415 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
components: | ||
schemas: | ||
runId: | ||
type: string | ||
pointId: | ||
type: string | ||
format: uuid | ||
pointName: | ||
type: string | ||
default: Outdoor Air Temperature Sensor | ||
pointType: | ||
type: string | ||
enum: | ||
- "input" | ||
- "output" | ||
- "bidirectional" | ||
runMetadata: | ||
type: object | ||
properties: | ||
id: | ||
$ref: "#/components/schemas/runId" | ||
pointMetadata: | ||
type: object | ||
properties: | ||
id: | ||
$ref: "#/components/schemas/pointId" | ||
name: | ||
$ref: "#/components/schemas/pointName" | ||
description: | ||
type: string | ||
default: An outdoor air temperature sensor for an air handling unit | ||
readOnly: true | ||
unit: | ||
type: string | ||
default: °F | ||
readOnly: true | ||
min: | ||
type: number | ||
readOnly: true | ||
max: | ||
type: number | ||
type: | ||
$ref: "#/components/schemas/pointType" | ||
required: | ||
- id | ||
- type | ||
pointValue: | ||
type: object | ||
properties: | ||
id: | ||
$ref: "#/components/schemas/pointId" | ||
value: | ||
type: number | ||
default: 24.3 | ||
pointData: | ||
allOf: | ||
- $ref: "#/components/schemas/pointMetadata" | ||
- $ref: "#/components/schemas/pointValue" | ||
parameters: | ||
runId: | ||
in: path | ||
name: runId | ||
schema: | ||
$ref: "#/components/schemas/runId" | ||
required: true | ||
description: UUID of run | ||
pointId: | ||
in: path | ||
name: pointId | ||
schema: | ||
$ref: "#/components/schemas/pointId" | ||
required: true | ||
description: UUID of point |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.