WebMetaTag

Defines a webpage's metadata.

APIs.ioEngineeringPlatform

Properties

Name Type Description
content string The name of the metadata.
name string The metadata.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webmetatag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebMetaTag",
  "title": "WebMetaTag",
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "description": "The name of the metadata.",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The metadata.",
      "readOnly": true
    }
  },
  "description": "Defines a webpage's metadata.",
  "x-ms-discriminator-value": "Web/MetaTag"
}