Skip to content

ValueWithMeta

ValueWithMeta pydantic-model

Python value wrapper with metadata for Sequrity Control's policy enforcement system.

Show JSON schema:
{
  "$defs": {
    "MetaData": {
      "additionalProperties": false,
      "description": "Metadata associated with a value for Sequrity Control's policy enforcement system.\n\nEvery value flowing through the dual-LLM interpreter carries metadata that\nrecords *who* produced it, *who* may consume it, and arbitrary *tags* for\npolicy matching.",
      "properties": {
        "producers": {
          "items": {
            "type": "string"
          },
          "title": "Producers",
          "type": "array",
          "uniqueItems": true
        },
        "consumers": {
          "items": {
            "type": "string"
          },
          "title": "Consumers",
          "type": "array",
          "uniqueItems": true
        },
        "tags": {
          "items": {
            "type": "string"
          },
          "title": "Tags",
          "type": "array",
          "uniqueItems": true
        }
      },
      "title": "MetaData",
      "type": "object"
    }
  },
  "description": "Python value wrapper with metadata for Sequrity Control's policy enforcement system.",
  "properties": {
    "value": {
      "title": "Value"
    },
    "meta": {
      "$ref": "#/$defs/MetaData"
    }
  },
  "required": [
    "value"
  ],
  "title": "ValueWithMeta",
  "type": "object"
}

Config:

  • extra: ignore

Fields:

MetaData pydantic-model

Metadata associated with a value for Sequrity Control's policy enforcement system.

Every value flowing through the dual-LLM interpreter carries metadata that records who produced it, who may consume it, and arbitrary tags for policy matching.

Show JSON schema:
{
  "additionalProperties": false,
  "description": "Metadata associated with a value for Sequrity Control's policy enforcement system.\n\nEvery value flowing through the dual-LLM interpreter carries metadata that\nrecords *who* produced it, *who* may consume it, and arbitrary *tags* for\npolicy matching.",
  "properties": {
    "producers": {
      "items": {
        "type": "string"
      },
      "title": "Producers",
      "type": "array",
      "uniqueItems": true
    },
    "consumers": {
      "items": {
        "type": "string"
      },
      "title": "Consumers",
      "type": "array",
      "uniqueItems": true
    },
    "tags": {
      "items": {
        "type": "string"
      },
      "title": "Tags",
      "type": "array",
      "uniqueItems": true
    }
  },
  "title": "MetaData",
  "type": "object"
}

Config:

  • extra: forbid

Fields: