Schema.org · JSON Structure

Schema Org Search Action

The act of searching for an object.

Type: object Properties: 9
Schema.orgStructured DataLinked DataJSON-LDVocabularySEOWeb StandardsRDFOntology

SearchAction is a JSON Structure definition published by Schema.org, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type context target query_input query actionStatus result name description

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

schema-org-search-action.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "type": "object",
  "name": "SearchAction",
  "description": "The act of searching for an object.",
  "properties": {
    "type": { "type": "string" },
    "context": { "type": "string" },
    "target": { "type": { "$ref": "#/definitions/EntryPoint" } },
    "query_input": { "type": "string" },
    "query": { "type": "string" },
    "actionStatus": { "type": "string" },
    "result": { "type": { "$ref": "#/definitions/ActionResult" } },
    "name": { "type": "string" },
    "description": { "type": "string" }
  },
  "definitions": {
    "EntryPoint": {
      "type": "object",
      "name": "EntryPoint",
      "properties": {
        "type": { "type": "string" },
        "urlTemplate": { "type": "string" },
        "actionPlatform": { "type": "array", "items": { "type": "string" } }
      }
    },
    "ActionResult": {
      "type": "object",
      "name": "ActionResult",
      "properties": {
        "type": { "type": "string" },
        "name": { "type": "string" }
      }
    }
  }
}