getEntityAttribute(resource, "documentation_url", String.class));
List<Map<String, Object>> servicePlanList = getEmbeddedResourceList(getEntity(resource), "service_plans");
if (servicePlanList != null) {
for (Map<String, Object> servicePlanResource : servicePlanList) {
Boolean publicPlan = getEntityAttribute(servicePlanResource, "public", Boolean.class);
CloudServicePlan servicePlan =
new CloudServicePlan(
getMeta(servicePlanResource),
getEntityAttribute(servicePlanResource, "name", String.class),
getEntityAttribute(servicePlanResource, "description", String.class),
getEntityAttribute(servicePlanResource, "free", Boolean.class),
publicPlan == null ? true : publicPlan,