metadata

User-defined metadata to store domain-specific information limited to 8 keys with scalar values.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-metadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/metadata",
  "title": "metadata",
  "description": "User-defined metadata to store domain-specific information limited to 8 keys with scalar values.",
  "type": "object",
  "maxProperties": 8,
  "additionalProperties": {
    "nullable": true,
    "anyOf": [
      {
        "type": "string"
      },
      {
        "type": "number"
      },
      {
        "type": "boolean"
      }
    ]
  }
}