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

The {{ object.name }} object

Type: {{ object.pretty_object_type }}

{% if object.description %} {{ object.description|safe }} {% endif %} {% if child_relationships %}

Keys:

{% for rel in child_relationships %} {% endfor %}
Name Type Required? Description
"{{ rel.child_key }}" {% if rel.child.is_array %} An array of {% for childrel in rel.child.get_child_relationships %} {{ childrel.child.name }} objects{% if not forloop.last %}, {% endif %} {% endfor %} {% elif rel.child.is_literal_string %} The string "{{ rel.child.description }}" {% else %} {{ rel.child.name }} object {% endif %} {{ rel.is_required|yesno|title }} {{ rel.description|safe|linebreaksbr }}
{% endif %} {% if enum_values %}

Allowed values:

{% for enum_value in enum_values %} {% endfor %}
Value Description
"{{ enum_value.name }}" {{ enum_value.description|safe|linebreaksbr }}
{% endif %} {% if examples %}

Examples

This object is used in the following examples:

{% for example in examples %}{{ example.example.name }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} {% endblock %}