音楽家・タレント

Type: https://schema.org/PerformingGroup

{ 
  "@context": "http://schema.org",
  "@type": "PerformingGroup",
  "identifier": {
    "@type": "PropertyValue",
    "propertyID": "{id_type}",
    "value":  "{id}"
  },
  "name": "{artist_name}",
  "alternateName": [
    {
      "@type": "PropertyValue",
      "propertyID": "{language_type}",
      "value":  "{name_in_language}"
    },
  ],
  "image": [
    {
      "@type": "ImageObject",
      "contentUrl": "{artist_image_url}",
      "encodingFormat": "{image_mime_type}",
      "genre": "{genre_name}",
      "contentSizeType": "{content_size_type}",
      "width": {
        "@type": "PropertyValue",
        "propertyID": "{unit}",
        "value": "{width}"
      },
      "height": {
        "@type": "PropertyValue",
        "propertyID": "{unit}",
        "value": "{height}"
      }
    },
    {
      "@type": "DataDownload",
      "contentUrl": "{artist_image_archive_url}",
      "encodingFormat": "{mime_type}",
      "genre": "{genre_name}"
    },
  ],
  "description":"{artist_profile}"
}

チケット

Type: http://schema.org/Event

{
  "@context": "http://schema.org",
  "@type": "Event",
  "identifier": {
    "@type": "PropertyValue",
    "propertyID": "{id_type}",
    "value":  "{id}"
  },
  "name": "{event_name}",
  "startDate": "{event_start_date}",
  "endDate": "{event_end_date}",
  "url": [
    "{event_url}"
  ],
  "image": [
    {
      "@type": "ImageObject",
      "contentUrl": "{event_image_url}"
    }
  ],
  "description": [
    "{event_description}"
  ],
  "subEvents": [
    {
      "@type": "Event",
      "identifier": {
        "@type": "PropertyValue",
        "propertyID": "{id_type}",
        "value":  "{id}"
      },
      "name": "{event_name}",
      "startDate": "{event_start_datetime}",
      "endDate": "{event_end_datetime}",
      "url": [
        "{event_url}"
      ],
      "image": [
        {
          "@type": "ImageObject",
          "contentUrl": "{event_image_url}"
        }
      ],
      "description": [
        "{event_description}"
      ],
      "location": {
        "@type": "Place",
        "name": "{event_location_name}",
        "address": "{event_location_address}"
      },
      "performer": [
        {
          "@type": "Organization",
          "identifier": {
            "@type": "PropertyValue",
            "propertyID": "{id_type}",
            "value":  "{id}"
          },
          "name": "{performer_name}"
        }
      ]
    }
  ]
}