{% extends "base.html" %} {% block title %}{{ entry.name }}{% endblock %} {% block content %}

{{ entry.name }}

Published by {{ entry.did }}

{% if entry.description %}

{{ entry.description }}

{% endif %} {% if entry.tags %}
{% for tag in entry.tags %} {{ tag }} {% endfor %}
{% endif %}

Details

{% if entry.license %} {% endif %} {% if schema_info %} {% if schema_info.arrayFormat is defined %} {% endif %} {% if schema_info.dtype is defined %} {% endif %} {% if schema_info.shape is defined and schema_info.shape is iterable and schema_info.shape is not string %} {% endif %} {% if schema_info.dimensionNames is defined and schema_info.dimensionNames is iterable and schema_info.dimensionNames is not string %} {% endif %} {% endif %} {% if entry.size %} {% endif %}
AT-URI{{ entry.uri }}
License{{ entry.license }}
Schema{{ entry.schemaRef }}
Array Format{{ schema_info.get("arrayFormatLabel", schema_info.arrayFormat) }}
Data Type{{ schema_info.dtype }}
Shape{{ schema_info.shape | join(" × ") }}
Dimensions{{ schema_info.dimensionNames | join(", ") }}
Size {% if entry.size.samples is defined %}{{ entry.size.samples }} samples{% endif %} {% if entry.size.bytes is defined %}{% if entry.size.samples is defined %}, {% endif %}{{ entry.size.bytes }} bytes{% endif %} {% if entry.size.shards is defined %}{% if entry.size.samples is defined or entry.size.bytes is defined %}, {% endif %}{{ entry.size.shards }} shards{% endif %}
Created{{ entry.createdAt }}
{% if entry.storage %}

Storage

{% if entry.storage.url is defined %} {% if entry.storage.url.startswith("https://") or entry.storage.url.startswith("http://") %} {% else %} {% endif %} {% endif %}
Type{{ entry.storage.get("$type", "unknown") }}
URL{{ entry.storage.url }}
URL{{ entry.storage.url }}
{% endif %} {% if labels %}

Labels

{% for label in labels %} {% endfor %}
NameVersionDescription
{{ label.name }} {{ label.get("version", "") }} {{ label.get("description", "") }}
{% endif %} {% endblock %}