Properties
| Name | Type | Description |
|---|---|---|
| brandColor | string | The brand color of the api. |
| category | object | The tier. |
| description | string | The description of the api. |
| displayName | string | The display name of the api. |
| iconUri | string | The icon uri of the api. |
| integrationServiceEnvironment | object | The integration service environment reference. |
| swagger | object | The swagger of the api. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-logic-apps/refs/heads/main/json-schema/azure-logic-apps-api-reference-schema.json",
"title": "ApiReference",
"description": "The Api reference.",
"type": "object",
"properties": {
"brandColor": {
"description": "The brand color of the api.",
"type": "string"
},
"category": {
"$ref": "#/definitions/ApiTier",
"description": "The tier."
},
"description": {
"description": "The description of the api.",
"type": "string"
},
"displayName": {
"description": "The display name of the api.",
"type": "string"
},
"iconUri": {
"description": "The icon uri of the api.",
"type": "string"
},
"integrationServiceEnvironment": {
"$ref": "#/definitions/ResourceReference",
"description": "The integration service environment reference."
},
"swagger": {
"$ref": "#/definitions/Object",
"description": "The swagger of the api."
}
}
}