UNPKG

@unito/integration-api

Version:

The Unito Integration API

39 lines (38 loc) 874 B
{ "$id": "https://unito.io/integration_api/relationSummary.schema.json", "title": "RelationSummary", "type": "object", "additionalProperties": false, "required": ["name", "schema", "label"], "properties": { "name": { "type": "string", "pattern": "^[a-zA-Z0-9_-]*$", "minLength": 1, "maxLength": 100 }, "label": { "type": "string", "minLength": 1, "maxLength": 100 }, "aggregatePath": { "type": "string", "format": "uri-reference", "pattern": "^\/.*$" }, "semantic": { "$ref": "https://unito.io/integration_api/definitions.schema.json#/$defs/relationSemantic" }, "schema": { "oneOf": [ { "$ref": "https://unito.io/integration_api/relationSchema.schema.json" }, { "const": "__self" } ] } } }