OSIsoft PI System · Schema
OSIsoft PI Timed Value
Schema for a PI System time-series data point containing a timestamp, value, and quality information.
Properties
| Name | Type | Description |
|---|---|---|
| Timestamp | string | UTC timestamp of the value |
| Value | object | The data value; numeric for analog points, string or object for digital/string points |
| Good | boolean | True if the value quality is Good (not a system digital state) |
| Questionable | boolean | True if the value is flagged as questionable by the data source |
| Substituted | boolean | True if the value has been manually substituted |
| Annotated | boolean | True if the value has an annotation |
| UnitsAbbreviation | string | Unit of measure abbreviation |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/osisoft-pi/json-schema/osisoft-pi-timed-value-schema.json",
"title": "OSIsoft PI Timed Value",
"description": "Schema for a PI System time-series data point containing a timestamp, value, and quality information.",
"type": "object",
"properties": {
"Timestamp": {
"type": "string",
"format": "date-time",
"description": "UTC timestamp of the value"
},
"Value": {
"description": "The data value; numeric for analog points, string or object for digital/string points",
"oneOf": [
{
"type": "number",
"description": "Numeric value for Float or Int point types"
},
{
"type": "string",
"description": "String value for String point types"
},
{
"type": "object",
"description": "Digital state object for Digital point types",
"properties": {
"Name": {
"type": "string",
"description": "Digital state name (e.g. Shutdown, Running, Fault)"
},
"Value": {
"type": "integer",
"description": "Digital state numeric code"
}
},
"required": ["Name", "Value"]
}
]
},
"Good": {
"type": "boolean",
"description": "True if the value quality is Good (not a system digital state)"
},
"Questionable": {
"type": "boolean",
"description": "True if the value is flagged as questionable by the data source"
},
"Substituted": {
"type": "boolean",
"description": "True if the value has been manually substituted"
},
"Annotated": {
"type": "boolean",
"description": "True if the value has an annotation"
},
"UnitsAbbreviation": {
"type": "string",
"description": "Unit of measure abbreviation"
}
},
"required": ["Timestamp"],
"examples": [
{
"Timestamp": "2026-03-18T14:30:00Z",
"Value": 87.3,
"Good": true,
"Questionable": false,
"Substituted": false,
"Annotated": false,
"UnitsAbbreviation": "°C"
},
{
"Timestamp": "2026-03-18T14:25:00Z",
"Value": {
"Name": "Running",
"Value": 2
},
"Good": true,
"Questionable": false,
"Substituted": false,
"Annotated": false,
"UnitsAbbreviation": ""
}
]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/osisoft-pi-timed-value"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.