A single item as returned by the Honua Portal facade (/sharing/rest/search and /sharing/rest/content/items/{id}). Mirrors the ArcGIS Portal item shape so a repointed app reads the same fields.

interface PortalItem {
    access: string;
    created: number;
    culture: null | string;
    description: null | string;
    extent: null | number[][];
    id: string;
    modified: number;
    numComments: number;
    numViews: number;
    owner: string;
    snippet: null | string;
    spatialReference: null | string;
    tags: string[];
    title: string;
    type: string;
    typeKeywords: string[];
    url: null | string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

access: string
created: number
culture: null | string
description: null | string
extent: null | number[][]
id: string
modified: number
numComments: number
numViews: number
owner: string
snippet: null | string
spatialReference: null | string
tags: string[]
title: string
type: string
typeKeywords: string[]
url: null | string

Absolute service URL, e.g. .../rest/services/{name}/FeatureServer.