Expression schema from TM Forum API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf622-product-ordering-expression-schema.json", "title": "Expression", "description": "Expression schema from TM Forum API", "allOf": [ { "$ref": "#/components/schemas/Extensible" }, { "type": "object", "description": "Expression is the ontology-encoded form of the Intent", "properties": { "expressionLanguage": { "$ref": "#/components/schemas/ExpressionLanguageEnum" }, "iri": { "type": "string", "description": "Internationalized Resource Identifier of the intent Expression" }, "expressionValue": { "type": "string", "description": "expression value is the ontology-encoded form of the Intent such as RDF-XML, Turtle, Json-LD,..." } } } ], "discriminator": { "propertyName": "@type", "mapping": { "Expression": "#/components/schemas/Expression" } } }