{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-structure/tmf621-trouble-ticket-note-structure.json", "name": "Note", "description": "Note schema from TM Forum API", "allOf": [ { "$ref": "#/components/schemas/Extensible" }, { "type": "object", "description": "Extra information about a given entity", "properties": { "id": { "type": "string", "description": "Identifier of the note within its containing entity", "example": "afa9-3d90aaa8da0f" }, "author": { "type": "string", "description": "Author of the note", "example": "Mr. N. Bene" }, "date": { "type": "datetime", "description": "Date of the note", "example": "2020-11-20T08:00:00Z" }, "text": { "type": "string", "description": "Text of the note", "example": "This is important" } } } ], "discriminator": { "propertyName": "@type", "mapping": { "Note": "#/components/schemas/Note" } } }