Here are the Hyperfiles schemas, appropriately formatted, to evaluate entities and actions for generalized evaluation on Near Social:

Entity Evaluation Schema (Hyperfiles)

{
  "$schema": "<https://hyperfiles.near/schema/meta-schema>",
  "title": "Entity Evaluation",
  "type": "object",
  "properties": {
    "trustLevel": {
      "type": "string",
      "tags": ["trust", "reputation", "level", "discrete"]
    },
    "accuracyLevel": {
      "type": "string",
      "tags": ["accuracy", "reputation", "level", "discrete"]
    },
    "isVerified": {
      "type": "boolean",
      "tags": ["verification", "boolean"]
    },
    "isTrusted": {
      "type": "boolean",
      "tags": ["trust", "boolean"]
    }
  },
  "required": ["trustLevel", "isVerified"],
  "tags": ["entity", "evaluation", "near social"]
}

Action Impact Schema (Hyperfiles)

{
  "$schema": "<https://hyperfiles.near/schema/meta-schema>",
  "title": "Action Impact",
  "type": "object",
  "properties": {
    "like": {
      "type": "boolean",
      "tags": ["opinion", "boolean"]
    },
    "star": {
      "type": "boolean",
      "tags": ["opinion", "boolean"]
    },
    "gm": {
      "type": "boolean",
      "tags": ["opinion", "boolean"]
    },
    "correctnessScore": {
      "type": "number",
      "tags": ["trust", "reputation", "metric", "score", "continuous"]
    }
  },
  "required": ["like", "star"],
  "tags": ["action", "impact", "near social"]
}

These schemas are formatted according to the Hyperfiles meta-schema standard, incorporating tags that classify and describe their use in evaluating Near Social activities. The schemas define relationships and constraints expected in the evaluations, making them integral for processing and analyzing user interactions on the platform.