SAS Institute · Schema

SAS Viya Report

A SAS Visual Analytics report resource exposed via the Reports REST API.

AnalyticsData ManagementArtificial IntelligenceMachine LearningSoftware

Properties

Name Type Description
id string Unique identifier of the report.
name string Display name of the report.
description string
createdBy string
modifiedBy string
creationTimeStamp string
modifiedTimeStamp string
version integer
View JSON Schema on GitHub

JSON Schema

sas-viya-rest-api-report-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sas/main/json-schema/sas-viya-rest-api-report-schema.json",
  "title": "SAS Viya Report",
  "description": "A SAS Visual Analytics report resource exposed via the Reports REST API.",
  "type": "object",
  "required": ["id", "name"],
  "properties": {
    "id": { "type": "string", "description": "Unique identifier of the report." },
    "name": { "type": "string", "description": "Display name of the report." },
    "description": { "type": "string" },
    "createdBy": { "type": "string" },
    "modifiedBy": { "type": "string" },
    "creationTimeStamp": { "type": "string", "format": "date-time" },
    "modifiedTimeStamp": { "type": "string", "format": "date-time" },
    "version": { "type": "integer" }
  }
}