List standards adopted by a child
/children/{childID}/standardsReturns the community standards a child has adopted. Adopting a standard applies its bundled rules to the child.
BearerPath parameters
childIDResponse
idUnique identifier for this resource.
slugURL-safe stable identifier.
nameHuman-readable display name.
organizationName of the organization that publishes this standard.
descriptionHuman-readable description.
long_descriptionExtended multi-paragraph description shown on the standard detail page.
icon_urlURL of the platform or resource icon.
versionMonotonically increasing version, bumped on every change.
publishedWhether this standard is published and adoptable by families.
min_ageMinimum age (in years) this tier is appropriate for.
max_ageUpper age bound (in years) this standard is intended for; null if open-ended.
adoption_countNumber of families that have adopted this standard.
rulesList of rules.
created_atRFC 3339 timestamp of when the resource was created.
updated_atRFC 3339 timestamp of the resource's most recent update.
curl -sS "https://phosra-api-sandbox-production.up.railway.app/api/v1/children/a11ce0fa-0000-4000-8000-0000000000a1/standards" \
-H "Authorization: Bearer $PHOSRA_API_KEY"[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"slug": "string",
"name": "string",
"organization": "string",
"description": "string",
"long_description": "string",
"icon_url": "string",
"version": "string",
"published": true,
"min_age": null,
"max_age": null,
"adoption_count": 0,
"rules": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"standard_id": "550e8400-e29b-41d4-a716-446655440000",
"category": "rating_age_gate",
"label": "string",
"enabled": true,
"config": {},
"sort_order": 0
}
],
"created_at": "2025-01-15T09:30:00Z",
"updated_at": "2025-01-15T09:30:00Z"
}
]