Schema.org · JSON Structure

Schema Org Organization

An organization such as a school, NGO, corporation, club, etc.

Type: object Properties: 33 Required: 1
Schema.orgStructured DataLinked DataJSON-LDVocabularySEOWeb StandardsRDFOntology

Organization is a JSON Structure definition published by Schema.org, describing 33 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type context name legalName description url logo image email telephone faxNumber address contactPoint founder foundingDate foundingLocation dissolutionDate numberOfEmployees member parentOrganization subOrganization department areaServed brand taxID vatID duns naics isicV4 sameAs identifier award knowsAbout

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

JSON Structure

schema-org-organization.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "type": "object",
  "name": "Organization",
  "description": "An organization such as a school, NGO, corporation, club, etc.",
  "properties": {
    "type": { "type": "string" },
    "context": { "type": "string" },
    "name": { "type": "string" },
    "legalName": { "type": "string" },
    "description": { "type": "string" },
    "url": { "type": "string" },
    "logo": { "type": "string" },
    "image": { "type": "string" },
    "email": { "type": "string" },
    "telephone": { "type": "string" },
    "faxNumber": { "type": "string" },
    "address": { "type": { "$ref": "schema-org-postal-address.json" } },
    "contactPoint": { "type": "array", "items": { "type": { "$ref": "schema-org-contact-point.json" } } },
    "founder": { "type": "array", "items": { "type": { "$ref": "schema-org-person.json" } } },
    "foundingDate": { "type": "date" },
    "foundingLocation": { "type": { "$ref": "schema-org-place.json" } },
    "dissolutionDate": { "type": "date" },
    "numberOfEmployees": { "type": { "$ref": "#/definitions/QuantitativeValue" } },
    "member": { "type": "array", "items": { "type": { "$ref": "schema-org-person.json" } } },
    "parentOrganization": { "type": { "$ref": "#" } },
    "subOrganization": { "type": "array", "items": { "type": { "$ref": "#" } } },
    "department": { "type": "array", "items": { "type": { "$ref": "#" } } },
    "areaServed": { "type": "string" },
    "brand": { "type": { "$ref": "#/definitions/Brand" } },
    "taxID": { "type": "string" },
    "vatID": { "type": "string" },
    "duns": { "type": "string" },
    "naics": { "type": "string" },
    "isicV4": { "type": "string" },
    "sameAs": { "type": "array", "items": { "type": "string" } },
    "identifier": { "type": "string" },
    "award": { "type": "array", "items": { "type": "string" } },
    "knowsAbout": { "type": "array", "items": { "type": "string" } }
  },
  "required": ["name"],
  "definitions": {
    "Brand": {
      "type": "object",
      "name": "Brand",
      "properties": {
        "type": { "type": "string" },
        "name": { "type": "string" },
        "logo": { "type": "string" }
      }
    },
    "QuantitativeValue": {
      "type": "object",
      "name": "QuantitativeValue",
      "properties": {
        "type": { "type": "string" },
        "value": { "type": "int32" },
        "minValue": { "type": "int32" },
        "maxValue": { "type": "int32" }
      }
    }
  }
}