{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "DataItem", "type": "object", "properties": { "id": { "type": "integer", "description": "Unique identifier for the data item" }, "name": { "type": "string", "description": "Name of the data item" }, "description": { "type": "string", "description": "Description of the data item" }, "entitled": { "type": "boolean", "description": "Flag indicating if the user is entitled to access the data in their subscriptions" }, "dataFeed": { "type": "boolean", "description": "Flag indicating if this item is available in a data feed" }, "api": { "type": "boolean", "description": "Flag indicating if this item is available in an api" }, "referenceDataFeed": { "type": "boolean", "description": "Flag indicating if this product is maintained by RDF/UCF" } } }