{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RemoteData", "title": "RemoteData", "type": "object", "properties": { "path": { "type": "string", "description": "The third-party API path that is being called." }, "data": { "description": "The data returned from the third-party for this object in its original, unnormalized format." } }, "required": [ "path" ], "description": "# The RemoteData Object\n### Description\nThe `RemoteData` object is used to represent the full data pulled from the third-party API for an object.\n\n### Usage Example\nTODO" }